@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

:root {
    --primary-gold: #D4AF37;
    --gold-bright: #FFD700;
    --dark-bg: #0A0A0A;
    --card-bg: rgba(20, 20, 20, 0.7);
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;
    --accent-glow: rgba(212, 175, 55, 0.3);
    --urgent-red: #FF4D4D;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-main);
    overflow: hidden; /* Prevent scrolling and zooming */
    position: fixed;
    width: 100%;
    height: 100%;
}

.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('assets/bg.png');
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
    animation: zoomBackground 20s infinite alternate;
}

@keyframes zoomBackground {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.main-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100dvh; /* Dynamic viewport height for mobile browsers */
    width: 100%;
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: clamp(1.5rem, 5vw, 3.5rem);
    max-width: 500px;
    width: 95%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.8s ease-out, float 6s ease-in-out infinite;
    position: relative;
}

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

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

.header-accent {
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

h1 {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1;
    background: linear-gradient(to right, #fff, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

p.description {
    color: var(--text-muted);
    font-size: clamp(0.95rem, 3vw, 1.1rem);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 4vw, 2.5rem);
    margin-bottom: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-weight: 700;
    color: var(--primary-gold);
}

.stat-value:first-child:contains("LIMITED") {
    color: var(--urgent-red);
    animation: pulseText 2s infinite;
}

@keyframes pulseText {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.cta-button {
    background: linear-gradient(45deg, var(--primary-gold), var(--gold-bright));
    color: black;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px var(--accent-glow);
    cursor: pointer;
    border: none;
    width: 100%;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(30deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -60%; }
    20% { left: 120%; }
    100% { left: 120%; }
}

footer {
    position: absolute;
    bottom: 2rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    opacity: 0.6;
    letter-spacing: 1px;
}

