body {
    margin: 0;
    font-family: 'Vazirmatn', sans-serif;
    background: #0e1126;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 2rem;
}
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.logo-img {
    width: 100%;
    max-width: 380px;
    height: auto;
    display: block;
    margin: 0 auto;
}


h1 {
    font-size: 2rem;
    margin-top: 2rem;
    text-align: center;
}
h2 {
    font-weight: 400;
    color: #54c5d0;
    text-align: center;
    margin-bottom: 2rem;
}
h3 {
    font-weight: 400;
    color: #efefef;
    text-align: center;
    margin-bottom: 2rem;
}
.progress-container {
    width: 80%;
    max-width: 400px;
    height: 10px;
    background: #1e213a;
    border-radius: 5px;
    overflow: hidden;
    margin: 1rem 0;
}
.progress-bar {
    width: 70%;
    height: 100%;
    background: #54c5d0;
    animation: progress 2s ease-out;
}
@keyframes progress {
    from { width: 0; }
    to { width: 70%; }
}
.countdown {
    font-size: 2rem;
    letter-spacing: 2px;
    margin: 1.5rem 0;
}
.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}
.cta-buttons a {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-primary {
    background: #54c5d0;
    color: white;
}
.btn-primary:hover {
    background: #54c5d0;
}
.btn-outline {
    border: 2px solid white;
    color: white;
}
.btn-outline:hover {
    background: white;
    color: #0e1126;
}
.main-img {
    width: 100%;
    max-width: 240px;
}
.main-text {
    text-align: justify;
    margin: 0 auto 5%;
    max-width: 760px;
    padding: 0 1.5rem;
    line-height: 2.2;
}

footer {
    font-size: 1.2rem;
    text-align: center;
    color: #aaa;
    margin-bottom: 1.5rem;
}



.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease-out forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease-out forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.pulse-once {
    animation: pulseAnim 1s ease-out 1;
}


@keyframes pulseAnim {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
