:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --text-color: #ecf0f1;
    --background-color: #1a252f;
}

body {
    font-family: 'Vazirmatn', sans-serif;
    background: var(--background-color);
    color: var(--text-color);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    overflow: hidden;
    background-image: radial-gradient(circle at top left, rgba(52, 152, 219, 0.1), transparent 40%),
                      radial-gradient(circle at bottom right, rgba(44, 62, 80, 0.3), transparent 50%);
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
}

.content {
    margin: auto;
}

.logo {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(52, 152, 219, 0.5);
    animation: fadeInDown 1.5s ease-out;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 30px;
    animation: fadeInUp 1.5s ease-out;
}

.separator {
    width: 80px;
    border: 1px solid var(--secondary-color);
    margin: 0 auto 30px;
    opacity: 0.7;
}

.message {
    font-size: 1.1rem;
    line-height: 2;
    max-width: 600px;
    margin: 0 auto 40px;
    animation: fadeIn 2.5s ease-in-out;
}

.timer {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.8;
}

.footer {
    padding-top: 20px;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}