@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Source+Sans+Pro:wght@300;400;600&display=swap');

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

:root {
    --rich-black: #0a0a0f;
    --deep-maroon: #2d0a0a;
    --royal-gold: #d4af37;
    --bright-gold: #ffd700;
    --cream-gold: #f5e6b8;
    --white: #ffffff;
    --silver: #c0c0c0;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background: var(--rich-black);
    color: var(--white);
    min-height: 100vh;
    line-height: 1.7;
    font-size: 17px;
}

/* Header */
.luxury-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.98), rgba(10, 10, 15, 0.9));
    border-bottom: 1px solid var(--royal-gold);
}

.header-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.luxury-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--royal-gold);
    text-decoration: none;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--royal-gold);
    margin: 6px 0;
    transition: 0.3s;
}

.luxury-nav {
    display: flex;
    list-style: none;
    gap: 45px;
}

.luxury-nav a {
    color: var(--silver);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.luxury-nav a:hover {
    color: var(--royal-gold);
}

/* Showcase */
.showcase {
    min-height: 100vh;
    padding: 120px 30px 80px;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(45, 10, 10, 0.5) 0%, transparent 50%),
        var(--rich-black);
    display: flex;
    align-items: center;
}

.showcase-inner {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.showcase h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--royal-gold);
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.showcase p {
    font-size: 1.2rem;
    color: var(--silver);
    max-width: 700px;
    margin: 0 auto 40px;
}

.spin-cta {
    display: inline-block;
    padding: 18px 55px;
    background: linear-gradient(135deg, var(--royal-gold), var(--bright-gold));
    color: var(--rich-black);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.3s;
    border: none;
}

.spin-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

/* Notice Section */
.notice-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 60px auto 0;
}

.notice-elegant {
    background: rgba(45, 10, 10, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 30px;
    text-align: center;
}

.notice-elegant .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.notice-elegant h3 {
    font-family: 'Playfair Display', serif;
    color: var(--royal-gold);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.notice-elegant p {
    color: var(--silver);
    font-size: 0.9rem;
    margin: 0;
}

/* Game Salon */
.game-salon {
    padding: 80px 30px;
    background: linear-gradient(180deg, var(--deep-maroon), var(--rich-black));
}

.salon-header {
    text-align: center;
    margin-bottom: 50px;
}

.salon-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--royal-gold);
    margin-bottom: 15px;
}

.salon-header p {
    color: var(--silver);
    max-width: 600px;
    margin: 0 auto;
}

.game-stage {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(10, 10, 15, 0.8);
    border: 2px solid var(--royal-gold);
    padding: 15px;
}

.game-stage iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

/* Perks */
.perks-section {
    padding: 80px 30px;
    background: var(--rich-black);
}

.perks-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.perk-card {
    background: linear-gradient(145deg, rgba(45, 10, 10, 0.4), rgba(10, 10, 15, 0.6));
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 40px 30px;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}

.perk-card:hover {
    border-color: var(--royal-gold);
    transform: translateY(-5px);
}

.perk-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.perk-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--royal-gold);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.perk-card p {
    color: var(--silver);
    font-size: 0.95rem;
}

/* Footer */
.luxury-footer {
    background: rgba(10, 10, 15, 0.98);
    padding: 55px 30px;
    border-top: 1px solid var(--royal-gold);
}

.footer-center {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.footer-emblem {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--royal-gold);
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.support-area {
    margin-bottom: 30px;
}

.support-area h4 {
    color: var(--silver);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.support-area a {
    color: var(--royal-gold);
    text-decoration: none;
    margin: 0 20px;
    font-size: 0.95rem;
}

.support-area a:hover {
    text-decoration: underline;
}

.legal-links {
    margin-bottom: 25px;
}

.legal-links a {
    color: var(--silver);
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
}

.legal-links a:hover {
    color: var(--royal-gold);
}

.copyright-text {
    color: var(--silver);
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Age Modal */
.age-curtain {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 15, 0.98);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.age-curtain.lifted {
    display: none;
}

.age-panel {
    background: linear-gradient(145deg, var(--deep-maroon), var(--rich-black));
    border: 2px solid var(--royal-gold);
    padding: 55px 50px;
    max-width: 500px;
    text-align: center;
}

.age-panel h2 {
    font-family: 'Playfair Display', serif;
    color: var(--royal-gold);
    font-size: 2rem;
    margin-bottom: 20px;
}

.age-panel p {
    color: var(--silver);
    margin-bottom: 25px;
}

.age-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.age-actions button {
    padding: 15px 40px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.enter-btn {
    background: linear-gradient(135deg, var(--royal-gold), var(--bright-gold));
    color: var(--rich-black);
}

.leave-btn {
    background: transparent;
    border: 1px solid var(--silver) !important;
    color: var(--silver);
}

.age-actions button:hover {
    transform: scale(1.05);
}

/* Page Styles */
.page-banner {
    padding: 140px 30px 55px;
    background: var(--deep-maroon);
    text-align: center;
}

.page-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--royal-gold);
}

.page-article {
    max-width: 850px;
    margin: 0 auto;
    padding: 55px 30px 85px;
}

.page-article h2 {
    font-family: 'Playfair Display', serif;
    color: var(--royal-gold);
    margin: 40px 0 15px;
    font-size: 1.5rem;
}

.page-article p {
    color: var(--silver);
    margin-bottom: 15px;
}

.page-article ul {
    color: var(--silver);
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-article li {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 900px) {
    .notice-row, .perks-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .luxury-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        flex-direction: column;
        padding: 25px;
        gap: 18px;
        display: none;
        border-bottom: 1px solid var(--royal-gold);
    }
    
    .luxury-nav.revealed {
        display: flex;
    }
    
    .showcase h1 {
        font-size: 2.6rem;
    }
    
    .game-stage iframe {
        height: 420px;
    }
    
    .age-actions {
        flex-direction: column;
    }
}
