/* Onyxora - Black/Gold Elegant Theme */

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

:root {
    --gold: #D4AF37;
    --light-gold: #F0E68C;
    --dark-gold: #B8941F;
    --black: #0A0A0A;
    --near-black: #1A1A1A;
    --charcoal: #2A2A2A;
    --silver: #C0C0C0;
    --white: #F5F5F5;
    --muted: #8A8A8A;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(180deg, var(--black) 0%, var(--near-black) 100%);
    color: var(--white);
    line-height: 1.6;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-container.legal-container {
    max-width: 900px;
}

/* Navbar */
.navbar {
    background: var(--near-black);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid var(--gold);
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
}

.emblem {
    font-size: 2rem;
    color: var(--gold);
    transform: rotate(45deg);
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 4px;
    color: var(--gold);
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger-menu span {
    width: 28px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--near-black) 0%, var(--charcoal) 50%, var(--near-black) 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    border-bottom: 2px solid var(--gold);
}

.hero-section::before {
    content: '◆';
    position: absolute;
    font-size: 20rem;
    color: rgba(212, 175, 55, 0.05);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    font-family: sans-serif;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--silver);
}

.hero-cta {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
}

.hero-cta:hover {
    background: transparent;
    color: var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Primary Content */
.primary-content {
    padding: 4rem 0;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--gold);
}

/* Introduction Section */
.introduction-section {
    background: var(--near-black);
    padding: 3rem;
    border-radius: 0;
    margin-bottom: 3rem;
    border: 1px solid var(--gold);
    border-left: 5px solid var(--gold);
}

.introduction-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.introduction-section p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Notice Cards */
.notice-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.notice-card {
    background: var(--near-black);
    padding: 2.5rem;
    text-align: center;
    border: 2px solid;
    transition: all 0.3s ease;
}

.card-gold { border-color: var(--gold); }
.card-silver { border-color: var(--silver); }
.card-onyx { border-color: var(--charcoal); }

.notice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.card-symbol {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.notice-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

/* Game Presentation */
.game-presentation {
    background: var(--near-black);
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid var(--gold);
}

.game-presentation h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--gold);
}

.game-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--muted);
}

.game-display {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background: #000;
    overflow: hidden;
    border: 3px solid var(--gold);
}

.game-window {
    width: 100%;
    height: 600px;
    border: none;
}

.game-disclaimer {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--gold);
}

/* Excellence Section */
.excellence-section {
    margin-bottom: 3rem;
}

.excellence-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--gold);
}

.excellence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.excellence-item {
    background: var(--near-black);
    padding: 2rem;
    border-left: 3px solid var(--gold);
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.excellence-item:hover {
    transform: translateX(10px);
    box-shadow: -5px 5px 20px rgba(212, 175, 55, 0.2);
}

.excellence-marker {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    flex-shrink: 0;
}

.excellence-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

/* Philosophy Section */
.philosophy-section {
    background: var(--charcoal);
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid var(--gold);
}

.philosophy-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.philosophy-section p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--near-black) 0%, var(--charcoal) 100%);
    border: 2px solid var(--gold);
}

.final-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--silver);
}

.cta-button {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: transparent;
    color: var(--gold);
}

/* Play Page */
.play-page {
    min-height: calc(100vh - 300px);
}

.play-guide {
    background: var(--near-black);
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--gold);
}

.play-guide h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.guide-box {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.guide-symbol {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.guide-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.play-notice {
    background: var(--charcoal);
    padding: 2rem;
    border: 2px solid var(--gold);
    text-align: center;
    margin-top: 2rem;
}

.play-notice h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

/* Legal Page */
.legal-page .legal-date {
    text-align: center;
    color: var(--muted);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-block {
    background: var(--near-black);
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--gold);
}

.legal-block h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.legal-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    color: var(--silver);
}

.legal-block ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-block li {
    margin: 0.8rem 0;
}

.legal-block a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.legal-block a:hover {
    border-bottom-color: var(--gold);
}

.highlight-legal {
    border: 3px solid var(--gold);
    background: var(--charcoal);
}

.disclaimer-summary {
    list-style: none;
    padding-left: 0;
}

.disclaimer-summary li {
    padding: 1rem;
    margin: 1rem 0;
    background: rgba(212, 175, 55, 0.1);
    border-left: 5px solid var(--gold);
}

/* Age Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-modal.hidden {
    display: none;
}

.age-panel {
    background: var(--near-black);
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    border: 3px solid var(--gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
    position: relative;
    z-index: 10000;
    pointer-events: auto;
}

.age-emblem {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1rem;
    transform: rotate(45deg);
}

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

.age-panel p {
    margin-bottom: 1rem;
}

.age-footnote {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--muted);
}

.age-controls {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.btn-accept,
.btn-decline {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: 2px solid;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1px;
}

.btn-accept {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.btn-accept:hover {
    background: transparent;
    color: var(--gold);
}

.btn-decline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-decline:hover {
    background: var(--white);
    color: var(--black);
}

/* Footer */
.primary-footer {
    background: var(--near-black);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
    border-top: 2px solid var(--gold);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin: 0.8rem 0;
}

.footer-column a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--gold);
}

.footer-signature {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gold);
    color: var(--muted);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background: var(--near-black);
        flex-direction: column;
        padding: 2rem;
        transition: right 0.3s ease;
        border-left: 2px solid var(--gold);
        box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    }

    .nav-menu.active {
        right: 0;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .game-window {
        height: 400px;
    }

    .notice-cards,
    .excellence-grid,
    .guide-grid {
        grid-template-columns: 1fr;
    }

    .age-panel {
        margin: 1rem;
        padding: 2rem;
    }

    .age-controls {
        flex-direction: column;
    }
}