/* CSS Reset & Variable Definitions */
:root {
    --color-bg-dark: #0D0604;
    --color-primary: #D4AF37; /* Warm Gold */
    --color-primary-light: #F6E6C2;
    --color-accent: #E28743; /* Warm Amber */
    --color-text-main: #FFFFFF;
    --color-text-muted: rgba(255, 255, 255, 0.75);
    --color-glass-bg: rgba(20, 10, 7, 0.55);
    --color-glass-border: rgba(212, 175, 55, 0.25);
    --font-heading: 'Outfit', sans-serif;
    --font-arabic: 'Amiri', serif;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body, html {
    width: 100%;
    height: 100%;
    font-family: var(--font-heading);
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    overflow-x: hidden;
}

/* Background Container & Color Overlay */
.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    animation: slowZoom 25s infinite alternate ease-in-out;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

/* Full Page Color Overlay */
.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 50% 40%, 
        rgba(35, 15, 9, 0.65) 0%, 
        rgba(15, 6, 4, 0.88) 60%, 
        rgba(8, 3, 2, 0.96) 100%
    );
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Floating Particles Container */
.bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.6) 0%, rgba(212, 175, 55, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) scale(0.5);
        opacity: 0;
    }
    20% {
        opacity: 0.7;
    }
    80% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-10vh) scale(1.2);
        opacity: 0;
    }
}

/* Main Layout Wrapper */
.main-wrapper {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.5rem;
}

/* Glassmorphism Content Card */
.content-card {
    width: 100%;
    max-width: 680px;
    background: var(--color-glass-bg);
    border: 1px solid var(--color-glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 40px rgba(212, 175, 55, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeInCard 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* Logo Badge */
.logo-wrapper {
    margin-bottom: 2rem;
}

.logo-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 2.25rem;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 20px;
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.35),
        0 0 20px rgba(212, 175, 55, 0.25);
    border: 2px solid var(--color-primary-light);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.logo-badge:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 18px 40px rgba(0, 0, 0, 0.45),
        0 0 30px rgba(212, 175, 55, 0.4);
}

.brand-logo {
    max-width: 220px;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Text Group */
.badge-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-primary);
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.headline {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.6rem;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--color-primary-light) 50%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.dots {
    animation: blinkDots 1.5s infinite;
}

@keyframes blinkDots {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.subheadline-ar {
    font-family: var(--font-arabic);
    font-size: 1.45rem;
    color: var(--color-primary-light);
    margin-bottom: 0.4rem;
    direction: rtl;
    line-height: 1.6;
}

.subheadline {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--color-text-muted);
    max-width: 480px;
    margin: 0 auto 2.2rem;
    line-height: 1.6;
}

/* Countdown Container */
.countdown-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    width: 100%;
}

.timer-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1rem 0.8rem;
    min-width: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.timer-box:hover {
    transform: translateY(-2px);
    border-color: rgba(212, 175, 55, 0.4);
}

.timer-value {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    color: var(--color-primary-light);
    font-variant-numeric: tabular-nums;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.timer-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.55);
}

.timer-divider {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.7;
    margin-top: -1.2rem;
}



/* Footer Section */
.footer {
    width: 100%;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--color-primary);
    color: #100604;
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.copyright {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
}

/* Responsive Media Queries */
@media (max-width: 600px) {
    .content-card {
        padding: 2rem 1.25rem;
    }

    .brand-logo {
        max-width: 170px;
    }

    .logo-badge {
        padding: 0.9rem 1.5rem;
    }

    .countdown-container {
        gap: 0.35rem;
    }

    .timer-box {
        min-width: 62px;
        padding: 0.75rem 0.5rem;
    }

    .timer-divider {
        font-size: 1.3rem;
    }


}
