@font-face {
    font-family: "IranSans";
    src: url("fonts/IRANSans.woff2") format("woff2");
}

body {
    margin: 0;
    font-family: "IranSans", sans-serif;
    background: linear-gradient(120deg, #0f0f0f, #1c1c1c);
    color: #e5e5e5;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    text-align: center;
    max-width: 480px;
    padding: 40px;
}

.logo {
    width: 140px;
    margin-bottom: 20px;
    border-radius: 25%;

}

h1 {
    font-size: 2.1rem;
    margin-bottom: 10px;
    color: #f69743; /* سبز فیروزه‌ای */
}

.desc {
    font-size: 1rem;
    color: #b5b5b5;
    margin-bottom: 35px;
}

/* Progress Countdown */
.progress-box {
    margin-bottom: 30px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #2b2b2b;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #f6ab69, #f47400);
    transition: width 1s ease;
}

.progress-text {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #f69743;
}

.contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.95rem;
    color: #ccc;
}

footer {
    text-align: center;
    padding: 14px;
    font-size: 0.85rem;
    color: #888;
}

footer a {
    color: #3ddc97;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Contact Buttons */
.contact-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.95rem;
    text-decoration: none;
    color: #e5e5e5;
    border: 1px solid #2b2b2b;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

/* WhatsApp */
.contact-btn.whatsapp {
    color: #3ddc97;
    border-color: rgba(61, 220, 151, 0.4);
}

.contact-btn.whatsapp:hover {
    background: rgba(61, 220, 151, 0.12);
    box-shadow: 0 0 12px rgba(61, 220, 151, 0.5);
}

/* Email */
.contact-btn.email {
    color: #8fd3ff;
    border-color: rgba(143, 211, 255, 0.4);
}

.contact-btn.email:hover {
    background: rgba(143, 211, 255, 0.12);
    box-shadow: 0 0 12px rgba(143, 211, 255, 0.5);
}

/* Icons */
.contact-btn .icon {
    font-size: 1.1rem;
    font-weight: bold;
}

.contact-btn .icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    display: inline-block;
}

.contact-btn i {
    font-size: 1.1rem;
    line-height: 1;
}

/* رنگ اختصاصی واتساپ */
.contact-btn.whatsapp i {
    color: #25D366;
}

/* رنگ ایمیل */
.contact-btn.email i {
    color: #8fd3ff;
}
