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

html {
    overflow-x: hidden;
    overflow-y: auto;
}

:root {
    --deep-blue: #0A1F44;
    --royal-blue: #1E3A8A;
    --sky-blue: #3B82F6;
    --light-blue: #60A5FA;
    --ice-blue: #DBEAFE;
    --accent-gold: #D4AF37;
    --gold-light: #F4D03F;
    --gold-dark: #B8941F;
    --cream: #FFF8E7;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--royal-blue) 50%, #1a3a6b 100%);
    min-height: 100vh;
    overflow: hidden;
    max-width: 100vw;
    position: relative;
}

/* Animated gradient overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(244, 208, 63, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* Starfield effect */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 80%, white, transparent),
        radial-gradient(1px 1px at 15% 95%, white, transparent);
    background-size: 200% 200%;
    background-position: 0% 0%;
    animation: stars 60s linear infinite;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

@keyframes stars {
    from { background-position: 0% 0%; }
    to { background-position: 100% 100%; }
}

/* Animated background elements */
.bg-decoration {
    position: fixed;
    opacity: 0.08;
    pointer-events: none;
}

.bg-circle-1 {
    width: 600px;
    height: 600px;
    border: 3px solid var(--accent-gold);
    border-radius: 50%;
    top: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite, glow 4s ease-in-out infinite;
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.3);
}

.bg-circle-2 {
    width: 400px;
    height: 400px;
    border: 3px solid var(--sky-blue);
    border-radius: 50%;
    bottom: -100px;
    left: -50px;
    animation: float 25s ease-in-out infinite reverse, glow 5s ease-in-out infinite;
    box-shadow: 0 0 60px rgba(59, 130, 246, 0.3);
}

.bg-line {
    width: 2px;
    height: 100vh;
    background: linear-gradient(to bottom, transparent, var(--accent-gold), transparent);
    position: fixed;
    opacity: 0.15;
    filter: blur(1px);
}

.bg-line-1 { left: 20%; animation: slideDown 15s linear infinite, shimmerLine 3s ease-in-out infinite; }
.bg-line-2 { left: 50%; animation: slideDown 20s linear infinite, shimmerLine 4s ease-in-out infinite; }
.bg-line-3 { left: 80%; animation: slideDown 18s linear infinite, shimmerLine 3.5s ease-in-out infinite; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -20px) rotate(120deg); }
    66% { transform: translate(-15px, 15px) rotate(240deg); }
}

@keyframes slideDown {
    0% { transform: translateY(-100vh); }
    100% { transform: translateY(100vh); }
}

@keyframes glow {
    0%, 100% { opacity: 0.08; }
    50% { opacity: 0.15; }
}

@keyframes shimmerLine {
    0%, 100% { opacity: 0.15; }
    50% { opacity: 0.3; }
}

/* Main container */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
    max-width: 100vw;
}

.container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    animation: pulseGlow 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

/* Logo/Brand */
.brand {
    text-align: center;
    margin-bottom: 0.8rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    position: relative;
}

.logo-image {
    width: 220px;
    height: auto;
    margin: 0 auto 0.8rem;
    display: block;
    filter: drop-shadow(0 8px 30px rgba(212, 175, 55, 0.5));
    animation: fadeInUp 1s ease-out 0.5s forwards, logoFloat 6s ease-in-out infinite;
    opacity: 0;
    object-fit: contain;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.brand::before,
.brand::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid var(--accent-gold);
    opacity: 0.3;
    animation: rotateReverse 30s linear infinite;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.brand::before {
    top: -15px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    border-radius: 10px;
}

.brand::after {
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    animation-direction: reverse;
    border-radius: 10px;
}

@keyframes rotateReverse {
    from {
        transform: translateX(-50%) rotate(45deg);
    }
    to {
        transform: translateX(-50%) rotate(405deg);
    }
}

.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 600;
    background: linear-gradient(135deg, var(--accent-gold), var(--gold-light), var(--accent-gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.18em;
    margin-bottom: 0.3rem;
    line-height: 1;
    animation: shimmerText 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

@keyframes shimmerText {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

.brand-subtitle {
    font-size: clamp(0.65rem, 1.1vw, 0.8rem);
    font-weight: 400;
    color: var(--light-blue);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.6);
}

.divider {
    width: 150px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
    margin: 0.6rem auto;
    opacity: 0;
    animation: expandWidth 1s ease-out 0.8s forwards;
    position: relative;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    animation: dotPulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

.divider::before {
    left: -10px;
}

.divider::after {
    right: -10px;
    animation-delay: 1s;
}

/* Coming Soon Text */
.coming-soon {
    text-align: center;
    margin-bottom: 1.2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

.coming-soon h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 400;
    background: linear-gradient(135deg, var(--gold-light), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    font-style: italic;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.coming-soon h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--sky-blue), var(--accent-gold), var(--sky-blue));
    animation: underlineExpand 2s ease-out 1.5s forwards;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.coming-soon p {
    font-size: clamp(0.75rem, 1.3vw, 0.9rem);
    color: var(--ice-blue);
    line-height: 1.6;
    max-width: 500px;
    font-weight: 300;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Countdown Timer */
.countdown {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-bottom: 1.2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.3s forwards;
    position: relative;
}

.countdown::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
    opacity: 0.6;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.countdown-item {
    text-align: center;
    position: relative;
    padding: 1.2rem 1.8rem;
    background: rgba(30, 58, 138, 0.4);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    min-width: 100px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 20px rgba(212, 175, 55, 0.2);
    overflow: hidden;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(212, 175, 55, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: shimmerSweep 3s ease-in-out infinite;
}

@keyframes shimmerSweep {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.countdown-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: var(--accent-gold);
    background: rgba(30, 58, 138, 0.6);
}

.countdown-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--sky-blue), var(--accent-gold), var(--sky-blue));
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.countdown-item:hover::after {
    transform: scaleX(1);
}

.countdown-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light), var(--accent-gold), var(--gold-light));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    position: relative;
    animation: shimmerText 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.5));
}

.countdown-label {
    font-size: 0.7rem;
    color: var(--light-blue);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-top: 0.5rem;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(59, 130, 246, 0.5);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 0rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.6s forwards;
    position: relative;
}

.social-links::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
    opacity: 0.6;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.social-link {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-blue);
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(30, 58, 138, 0.4);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(212, 175, 55, 0.2);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-gold), var(--gold-light));
    border-radius: 50%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.social-link:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.social-link:hover {
    border-color: var(--gold-light);
    color: var(--deep-blue);
    transform: translateY(-5px) rotate(360deg) scale(1.05);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(212, 175, 55, 0.6);
}

.social-link svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandWidth {
    from {
        opacity: 0;
        width: 0;
    }
    to {
        opacity: 1;
        width: 150px;
    }
}

@keyframes dotPulse {
    0%, 100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 0.5;
        transform: translateY(-50%) scale(1.8);
    }
}

@keyframes underlineExpand {
    from {
        width: 0;
    }
    to {
        width: 90%;
    }
}

@keyframes floatOrnament {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .brand {
        margin-bottom: 0.6rem;
    }

    .logo-image {
        width: 180px;
    }

    .coming-soon {
        margin-bottom: 1rem;
    }

    .countdown {
        gap: 0.6rem;
        flex-wrap: wrap;
        margin-bottom: 1rem;
    }

    .countdown-item {
        padding: 0.8rem 1rem;
        min-width: 70px;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-label {
        font-size: 0.65rem;
    }

    .ornament,
    .light-ray {
        display: none;
    }

    .social-links {
        gap: 1rem;
    }

    .social-link {
        width: 48px;
        height: 48px;
    }
}

@media (max-height: 700px) {
    .logo-image {
        width: 160px;
        margin-bottom: 0.5rem;
    }

    .brand {
        margin-bottom: 0.5rem;
    }

    .divider {
        margin: 0.5rem auto;
    }

    .coming-soon {
        margin-bottom: 0.8rem;
    }

    .countdown {
        margin-bottom: 0.8rem;
        gap: 0.8rem;
    }

    .countdown-item {
        padding: 0.8rem 1.2rem;
    }
}

/* Decorative elements */
.corner-accent {
    position: fixed;
    width: 120px;
    height: 120px;
    opacity: 0.15;
}

.corner-accent-tl {
    top: 0;
    left: 0;
    border-top: 3px solid var(--accent-gold);
    border-left: 3px solid var(--accent-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    animation: glowPulse 4s ease-in-out infinite;
}

.corner-accent-br {
    bottom: 0;
    right: 0;
    border-bottom: 3px solid var(--accent-gold);
    border-right: 3px solid var(--accent-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    animation: glowPulse 4s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.15; }
    50% { opacity: 0.3; }
}

/* Floating ornaments */
.ornament {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0.4;
    pointer-events: none;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.3); }
}

.ornament-1 {
    top: 15%;
    left: 10%;
    animation: floatOrnament 8s ease-in-out infinite, twinkle 2s ease-in-out infinite;
}

.ornament-2 {
    top: 25%;
    right: 15%;
    animation: floatOrnament 10s ease-in-out infinite, twinkle 2.5s ease-in-out infinite;
    animation-delay: 1s;
}

.ornament-3 {
    bottom: 20%;
    left: 15%;
    animation: floatOrnament 12s ease-in-out infinite, twinkle 3s ease-in-out infinite;
    animation-delay: 2s;
}

.ornament-4 {
    bottom: 30%;
    right: 10%;
    animation: floatOrnament 9s ease-in-out infinite, twinkle 2.2s ease-in-out infinite;
    animation-delay: 1.5s;
}

.ornament-diamond {
    width: 14px;
    height: 14px;
    background: transparent;
    border: 2px solid var(--accent-gold);
    transform: rotate(45deg);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

.ornament-5 {
    top: 40%;
    left: 5%;
    animation: floatOrnament 11s ease-in-out infinite reverse, twinkle 2.8s ease-in-out infinite;
}

.ornament-6 {
    top: 60%;
    right: 8%;
    animation: floatOrnament 13s ease-in-out infinite reverse, twinkle 3.2s ease-in-out infinite;
    animation-delay: 0.5s;
}

/* Light rays effect */
.light-ray {
    position: fixed;
    top: -50%;
    left: 50%;
    width: 3px;
    height: 200%;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.15), transparent);
    transform-origin: top center;
    opacity: 0;
    animation: rayRotate 25s linear infinite;
    filter: blur(2px);
}

.light-ray-1 {
    animation-delay: 0s;
}

.light-ray-2 {
    animation-delay: 8s;
    background: linear-gradient(to bottom, transparent, rgba(59, 130, 246, 0.15), transparent);
}

.light-ray-3 {
    animation-delay: 16s;
}

@keyframes rayRotate {
    0% {
        transform: rotate(0deg);
        opacity: 0;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: rotate(180deg);
        opacity: 0;
    }
}
