@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Raleway:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ruby-red: #e0115f;
    --deep-ruby: #9b111e;
    --rose-gold: #b76e79;
    --cream: #fff8dc;
    --charcoal: #36454f;
    --silver: #c0c0c0;
    --pearl: #faf0e6;
}

body {
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(to bottom right, #1a1a1d, #2d1b2e);
    color: var(--cream);
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(224, 17, 95, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(155, 17, 30, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Elegant Header */
.elegant-header {
    background: linear-gradient(135deg, var(--deep-ruby), var(--charcoal));
    padding: 2.5rem;
    text-align: center;
    border-bottom: 3px solid var(--ruby-red);
    box-shadow: 0 5px 30px rgba(224, 17, 95, 0.4);
    position: relative;
    z-index: 1;
}

.gem-logo {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 5px 15px rgba(224, 17, 95, 0.6));
}

.site-name {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--ruby-red), var(--rose-gold), var(--silver));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--rose-gold);
    font-style: italic;
}

/* Navigation Strip */
.nav-strip {
    background: rgba(54, 69, 79, 0.9);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid var(--ruby-red);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-container a {
    font-family: 'Raleway', sans-serif;
    color: var(--cream);
    text-decoration: none;
    padding: 1.2rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.nav-container a:hover,
.nav-container a.active {
    background: rgba(224, 17, 95, 0.2);
    border-bottom-color: var(--ruby-red);
    color: var(--ruby-red);
}

/* Mobile Menu */
.mobile-nav-toggle {
    display: none;
    background: var(--ruby-red);
    border: none;
    padding: 1rem;
    cursor: pointer;
    margin: 1rem auto;
}

.mobile-nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: white;
    margin: 5px 0;
}

/* Two Column Layout */
.main-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.primary-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.secondary-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Page Hero */
.hero-banner {
    background: linear-gradient(135deg, rgba(224, 17, 95, 0.3), rgba(155, 17, 30, 0.3));
    border: 2px solid var(--ruby-red);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(224, 17, 95, 0.3);
}

.hero-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--ruby-red);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-banner p {
    font-size: 1.4rem;
    color: var(--pearl);
}

/* Jewel Box Content */
.jewel-box {
    background: linear-gradient(135deg, rgba(54, 69, 79, 0.6), rgba(45, 27, 46, 0.6));
    border: 2px solid var(--rose-gold);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.jewel-box h2 {
    font-family: 'Playfair Display', serif;
    color: var(--ruby-red);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.jewel-box h3 {
    font-family: 'Playfair Display', serif;
    color: var(--rose-gold);
    margin: 1.5rem 0 1rem;
    font-size: 1.5rem;
}

.jewel-box p {
    line-height: 1.9;
    margin-bottom: 1rem;
    color: var(--pearl);
}

/* Highlight Box */
.ruby-highlight {
    background: linear-gradient(135deg, rgba(224, 17, 95, 0.15), rgba(155, 17, 30, 0.15));
    border: 2px solid var(--ruby-red);
    border-radius: 12px;
    padding: 2rem;
    margin: 1.5rem 0;
}

.ruby-highlight h3 {
    color: var(--ruby-red);
    margin-top: 0;
    font-family: 'Playfair Display', serif;
}

.ruby-highlight ul {
    list-style-position: inside;
    margin-top: 1rem;
}

.ruby-highlight li {
    margin: 0.7rem 0;
}

/* Game Showcase */
.game-showcase {
    background: rgba(26, 26, 29, 0.9);
    border: 3px solid var(--ruby-red);
    border-radius: 25px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 0 50px rgba(224, 17, 95, 0.4);
}

.game-showcase h2 {
    font-family: 'Playfair Display', serif;
    color: var(--ruby-red);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.game-window {
    width: 100%;
    height: 600px;
    border: 2px solid var(--rose-gold);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

/* Sidebar Info Cards */
.info-card {
    background: linear-gradient(135deg, var(--charcoal), var(--deep-ruby));
    border: 2px solid var(--silver);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--ruby-red);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--pearl);
    line-height: 1.7;
}

/* Footer */
.luxury-footer {
    background: linear-gradient(135deg, var(--deep-ruby), var(--charcoal));
    border-top: 3px solid var(--ruby-red);
    padding: 3rem 2rem;
    margin-top: 4rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.luxury-footer h3 {
    font-family: 'Playfair Display', serif;
    color: var(--ruby-red);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.help-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.help-links a {
    color: var(--cream);
    text-decoration: none;
    padding: 1rem 2rem;
    background: rgba(54, 69, 79, 0.7);
    border: 2px solid var(--rose-gold);
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.help-links a:hover {
    background: var(--ruby-red);
    border-color: var(--ruby-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(224, 17, 95, 0.5);
}

/* Age Verification */
.age-verify {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 29, 0.98);
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

.age-verify.show {
    display: flex;
}

.verify-card {
    background: linear-gradient(135deg, var(--charcoal), var(--deep-ruby));
    border: 4px solid var(--ruby-red);
    border-radius: 25px;
    padding: 3rem;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 0 80px rgba(224, 17, 95, 0.7);
}

.verify-card h2 {
    font-family: 'Playfair Display', serif;
    color: var(--ruby-red);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.verify-card p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--pearl);
}

.verify-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.verify-btn {
    font-family: 'Raleway', sans-serif;
    padding: 1.2rem 3.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.verify-btn.accept {
    background: linear-gradient(135deg, var(--ruby-red), var(--deep-ruby));
    color: white;
    border: 2px solid var(--rose-gold);
}

.verify-btn.accept:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(224, 17, 95, 0.6);
}

.verify-btn.decline {
    background: var(--charcoal);
    color: var(--cream);
    border: 2px solid var(--silver);
}

.verify-btn.decline:hover {
    background: #1a1a1d;
}

/* Responsive */
@media (max-width: 968px) {
    .main-wrapper {
        grid-template-columns: 1fr;
    }
    
    .site-name {
        font-size: 2.5rem;
    }
    
    .hero-banner h1 {
        font-size: 2.5rem;
    }
    
    .nav-container {
        display: none;
        flex-direction: column;
    }
    
    .nav-container.open {
        display: flex;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .game-window {
        height: 400px;
    }
    
    .help-links {
        flex-direction: column;
    }
    
    .verify-card {
        margin: 1rem;
        padding: 2rem;
    }
    
    .verify-actions {
        flex-direction: column;
    }
}
