:root {
    --gold-primary: #d4af37;
    --gold-light: #f3e5ab;
    --gold-dark: #aa771c;
    --black-base: #050505;
    --black-light: #151515;
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
}

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

body {
    background-color: var(--black-base);
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

/* Marble & Noise Texture Overlay */
.marble-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    background: 
        radial-gradient(circle at 15% 50%, rgba(212, 175, 55, 0.05), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(212, 175, 55, 0.03), transparent 25%);
    /* A basic CSS trick for marble/texture */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    mix-blend-mode: overlay;
}

/* SEO Content block styling */
.seo-content {
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.4);
    text-align: justify;
    padding: 0 1rem;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(145deg, rgba(20,20,20,0.95) 0%, rgba(5,5,5,0.98) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8), inset 0 0 0 1px rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    z-index: 1;
}

header {
    margin-bottom: 2rem;
}

.logo-container {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.logo {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    animation: float 4s ease-in-out infinite;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--gold-dark), var(--gold-light), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.action-section {
    margin: 2.5rem 0;
}

.gold-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    opacity: 0.3;
    margin: 1.5rem 0;
}

.status-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #4CAF50;
    border-radius: 50%;
    box-shadow: 0 0 10px #4CAF50;
    animation: pulse 2s infinite;
}

.vip-button {
    position: relative;
    background: linear-gradient(45deg, var(--gold-dark), var(--gold-primary));
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    width: 100%;
    max-width: 400px;
    outline: none;
}

.btn-text {
    position: relative;
    z-index: 2;
    color: var(--black-base);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(255,255,255,0.3);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    z-index: 1;
    transition: left 0.5s ease;
}

.vip-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.vip-button:hover .btn-glow {
    left: 100%;
}

.vip-button:active {
    transform: translateY(1px);
}

footer {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.disclaimer {
    margin-top: 0.5rem;
    opacity: 0.5;
    font-size: 0.7rem;
}

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

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .container {
        padding: 1.5rem;
        margin: 1rem;
        border-radius: 12px;
    }
    
    .main-title {
        font-size: 2.2rem;
    }
    
    .vip-button {
        padding: 1rem 1.5rem;
    }
    
    .btn-text {
        font-size: 1rem;
    }
}
