:root {
    --primary-color: #2D5A4C;
    --secondary-color: #4A7C6B;
    --text-color: #FFFFFF;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'IRANSans', 'Vazirmatn', system-ui, -apple-system, sans-serif;
}

body {
    direction: rtl;
    text-align: right;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.logo-container {
    text-align: center;
    width: 100%;
    max-width: 300px;
}

.logo {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    object-fit: contain;
}

.subtitle {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.features {
    width: 100%;
    max-width: 500px;
    text-align: center;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-slide {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.5s ease forwards;
}

.feature-title {
    color: var(--white);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 1px;
    text-transform: none;
    position: relative;
    display: inline-block;
    font-style: italic;
}

.feature-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--white);
    opacity: 0.7;
}

.feature-description {
    color: var(--white);
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.8;
    line-height: 1.6;
    min-height: 1.6em;
    font-family: 'Courier New', Courier, monospace;
    border-right: 2px solid var(--white);
    white-space: nowrap;
    overflow: hidden;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--white) }
}

.download-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    opacity: 0.8;
}

.coming-soon {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--white);
    color: var(--primary-color);
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.store-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    opacity: 1;
}

.store-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-icon svg {
    width: 100%;
    height: 100%;
    color: var(--white);
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-text small {
    font-size: 0.7rem;
    opacity: 0.8;
}

.store-text span {
    font-size: 0.9rem;
    font-weight: 500;
}

.countdown-timer {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0.8;
    margin-top: 2rem;
    font-family: 'Courier New', Courier, monospace;
    animation: fadeIn 0.5s ease forwards;
    text-align: center;
}

.countdown-timer span {
    font-weight: 500;
    color: var(--white);
    opacity: 1;
    padding: 0 2px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .main-container {
        padding: 1rem;
        gap: 2rem;
    }

    .logo-container {
        max-width: 200px;
    }

    .subtitle {
        font-size: 1rem;
    }

    .feature-title {
        font-size: 1.2rem;
    }

    .feature-description {
        font-size: 0.9rem;
    }

    .store-button {
        padding: 0.6rem 1rem;
    }

    .store-icon {
        width: 20px;
        height: 20px;
    }

    .store-text span {
        font-size: 0.8rem;
    }
}

/* Remove old icon styles */
.play-triangle,
.apple-icon {
    display: none;
} 