/* CSS Variables from Global Theme */
:root {
    --color-valentine-50: #fff1f2;
    --color-valentine-100: #ffe4e6;
    --color-valentine-200: #fecdd3;
    --color-valentine-300: #fda4af;
    --color-valentine-400: #fb7185;
    --color-valentine-500: #f43f5e;
    --color-valentine-600: #e11d48;
    --color-valentine-700: #be123c;
    --color-valentine-800: #9f1239;
    --color-valentine-900: #881337;
    --color-valentine-950: #4c0519;

    --background: #2a0a12;
    --foreground: #fff1f2;
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(20, 5, 10, 0.6);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.36);

    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
}

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

body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: var(--font-main);
    min-height: 100vh;
    /* Premium Dark Gradient Background */
    background-image:
        radial-gradient(circle at 15% 50%, rgba(225, 29, 72, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(190, 18, 60, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, #2a0a12 0%, #0f0305 100%);
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* Background Animations */
.background-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.floating-heart {
    position: absolute;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

.heart-1 {
    top: 10%;
    left: 10%;
    width: 120px;
    color: var(--color-valentine-600);
    transform: rotate(-12deg);
    filter: blur(4px);
}

.heart-2 {
    bottom: 15%;
    right: 10%;
    width: 180px;
    color: var(--color-valentine-800);
    transform: rotate(12deg);
    animation-delay: 2s;
    filter: blur(4px);
}

.heart-3 {
    top: 60%;
    left: 50%;
    width: 60px;
    color: var(--color-valentine-500);
    animation-delay: 4s;
    opacity: 0.1;
    filter: blur(8px);
}

/* Glass Panel */
.glass-panel {
    position: relative;
    z-index: 10;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 1.5rem;
    padding: 3rem 4rem;
    text-align: center;
    max-width: 500px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

/* Logo and Pulse */
.logo-container {
    position: relative;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-glow {
    position: absolute;
    inset: 0;
    background: var(--color-valentine-500);
    filter: blur(24px);
    opacity: 0.2;
    border-radius: 50%;
    animation: pulse-slow 4s ease-in-out infinite;
}

.logo {
    width: 64px;
    height: 64px;
    color: var(--color-valentine-500);
    filter: drop-shadow(0 0 15px rgba(244, 63, 94, 0.5));
}

/* Typography */
.title {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff, var(--color-valentine-200), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.subtitle {
    color: var(--color-valentine-200);
    font-weight: 300;
    letter-spacing: 0.05em;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-valentine-600), transparent);
    margin-bottom: 2rem;
}

.announcement {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.coming-soon-label {
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-valentine-400);
}

.date {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 20px rgba(225, 29, 72, 0.4);
}

/* Footer */
footer {
    position: absolute;
    bottom: 1.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.2);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(var(--rotation, 0deg));
    }

    50% {
        transform: translateY(-20px) rotate(var(--rotation, 0deg));
    }

    100% {
        transform: translateY(0px) rotate(var(--rotation, 0deg));
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes pulse-slow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.4;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Entrance Animation */
.slide-in {
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .title {
        font-size: 2rem;
    }

    .date {
        font-size: 1.75rem;
    }

    .glass-panel {
        padding: 2.5rem 2rem;
        width: 85%;
    }
}