* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Philosopher', sans-serif;
    background: linear-gradient(135deg, #1a0033 0%, #2d1b4e 50%, #1a0033 100%);
    color: #e8d5ff;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Age Gate */
.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 0, 20, 0.98);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-gate.active {
    display: flex;
}

.age-gate-content {
    background: linear-gradient(135deg, #2d1b4e, #1a0033);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 2px solid #9d7bc7;
    box-shadow: 0 0 30px rgba(157, 123, 199, 0.3);
}

.age-gate-content h2 {
    font-family: 'Cinzel', serif;
    color: #d4a5ff;
    margin-bottom: 20px;
    font-size: 2em;
}

.age-gate-content p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.age-gate-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.age-gate-buttons button {
    padding: 15px 30px;
    font-size: 1.1em;
    font-family: 'Philosopher', sans-serif;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    transition: all 0.3s;
}

.age-gate-buttons button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(168, 85, 247, 0.4);
}

.age-gate-buttons button.deny {
    background: linear-gradient(135deg, #991b1b, #dc2626);
}

/* Header */
header {
    background: rgba(45, 27, 78, 0.9);
    border-bottom: 2px solid #9d7bc7;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'Cinzel', serif;
    color: #d4a5ff;
    font-size: 2em;
    font-weight: 700;
    letter-spacing: 3px;
    margin: 0;
}

.logo .tagline {
    font-size: 0.9em;
    color: #b794d7;
    margin: 0;
    font-style: italic;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #d4a5ff;
    font-size: 2em;
    cursor: pointer;
    padding: 5px 10px;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #e8d5ff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 8px 16px;
    border-radius: 5px;
}

nav a:hover {
    color: #d4a5ff;
    background: rgba(157, 123, 199, 0.2);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(45, 27, 78, 0.5), transparent);
}

.hero h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5em;
    color: #d4a5ff;
    margin-bottom: 20px;
}

.hero .lead {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    color: #c9b3e0;
}

/* Notices Section */
.notices {
    padding: 60px 0;
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.notice-card {
    background: rgba(45, 27, 78, 0.6);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #9d7bc7;
    text-align: center;
    transition: all 0.3s;
}

.notice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(157, 123, 199, 0.3);
}

.notice-card .icon {
    font-size: 3em;
    display: block;
    margin-bottom: 15px;
}

.notice-card h3 {
    font-family: 'Cinzel', serif;
    color: #d4a5ff;
    margin-bottom: 15px;
}

/* Game Section */
.game-section {
    padding: 60px 0;
    background: rgba(20, 10, 35, 0.4);
}

.game-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.2em;
    color: #d4a5ff;
    text-align: center;
    margin-bottom: 20px;
}

.game-section > .container > p {
    text-align: center;
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 40px;
}

.game-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.game-container iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.game-info {
    text-align: center;
    margin-top: 30px;
}

.game-info p {
    font-size: 1.1em;
    margin: 10px 0;
}

/* Features Section */
.features {
    padding: 60px 0;
}

.features h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.2em;
    color: #d4a5ff;
    text-align: center;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    background: rgba(45, 27, 78, 0.4);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #9d7bc7;
}

.feature h3 {
    font-family: 'Cinzel', serif;
    color: #d4a5ff;
    margin-bottom: 15px;
}

/* Community Section */
.community {
    padding: 60px 0;
    text-align: center;
    background: rgba(20, 10, 35, 0.4);
}

.community h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.2em;
    color: #d4a5ff;
    margin-bottom: 30px;
}

.community p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 1.1em;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 3em;
    color: #d4a5ff;
}

.stat span {
    display: block;
    font-size: 1.1em;
    color: #b794d7;
}

/* Play Page Styles */
.play-hero {
    padding: 60px 0;
    text-align: center;
}

.play-hero h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5em;
    color: #d4a5ff;
    margin-bottom: 20px;
}

.game-play {
    padding: 40px 0 60px;
}

.game-instructions {
    max-width: 800px;
    margin: 40px auto 0;
    background: rgba(45, 27, 78, 0.6);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #9d7bc7;
}

.game-instructions h3 {
    font-family: 'Cinzel', serif;
    color: #d4a5ff;
    margin-bottom: 20px;
}

.game-instructions p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.play-notice {
    margin-top: 25px;
    padding: 20px;
    background: rgba(157, 123, 199, 0.2);
    border-radius: 10px;
    border-left: 4px solid #d4a5ff;
}

/* Legal Content */
.legal-content {
    padding: 60px 0;
}

.legal-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5em;
    color: #d4a5ff;
    margin-bottom: 10px;
}

.updated {
    color: #b794d7;
    font-style: italic;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
    background: rgba(45, 27, 78, 0.4);
    padding: 30px;
    border-radius: 15px;
}

.legal-section h3 {
    font-family: 'Cinzel', serif;
    color: #d4a5ff;
    margin-bottom: 15px;
}

.legal-section p,
.legal-section ul {
    margin-bottom: 15px;
}

.legal-section ul {
    padding-left: 30px;
}

.legal-section li {
    margin-bottom: 10px;
}

.disclaimer-highlight {
    border: 2px solid #d4a5ff;
    background: rgba(212, 165, 255, 0.1);
}

/* Footer */
footer {
    background: rgba(20, 10, 35, 0.9);
    border-top: 2px solid #9d7bc7;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: 'Cinzel', serif;
    color: #d4a5ff;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #c9b3e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #d4a5ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #9d7bc7;
    color: #b794d7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(45, 27, 78, 0.98);
        flex-direction: column;
        padding: 20px;
        border-bottom: 2px solid #9d7bc7;
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 15px;
        text-align: center;
        border-bottom: 1px solid rgba(157, 123, 199, 0.3);
    }

    .logo h1 {
        font-size: 1.5em;
    }

    .hero h2 {
        font-size: 1.8em;
    }

    .hero .lead {
        font-size: 1em;
    }

    .game-container iframe {
        height: 400px;
    }

    .stats {
        gap: 30px;
    }

    .stat strong {
        font-size: 2.5em;
    }

    .notice-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .age-gate-content {
        padding: 30px 20px;
        margin: 20px;
    }

    .age-gate-buttons {
        flex-direction: column;
    }
}
