* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #0d3b2e 0%, #1a5c47 100%);
    color: #e8f4ea;
    line-height: 1.8;
}

/* Primary Navigation */
.primary-nav {
    background: linear-gradient(90deg, #0a2a1f 0%, #0d3b2e 50%, #0a2a1f 100%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 3px solid #d4af37;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-name {
    font-size: 1.9rem;
    font-weight: 800;
    color: #d4af37;
    text-decoration: none;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.menu-item {
    color: #e8f4ea;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 22px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.menu-item:hover {
    color: #d4af37;
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

.menu-item.active {
    color: #d4af37;
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.15);
}

.nav-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.nav-burger span {
    width: 30px;
    height: 3px;
    background: #d4af37;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Content Container */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #d4af37 0%, #b8942d 50%, #9c7a23 100%);
    padding: 120px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 20%, rgba(13, 59, 46, 0.4) 80%);
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 6rem;
    font-weight: 800;
    color: white;
    margin-bottom: 25px;
    letter-spacing: 12px;
    text-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.7rem;
    color: white;
    margin-bottom: 45px;
    letter-spacing: 2px;
    font-style: italic;
}

.hero-link {
    display: inline-block;
    background: white;
    color: #0d3b2e;
    padding: 18px 55px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Intro Section */
.intro-section {
    padding: 80px 40px;
}

.intro-box {
    background: linear-gradient(135deg, #1a5c47 0%, #0d3b2e 100%);
    padding: 55px;
    border-radius: 20px;
    text-align: center;
    border: 3px solid #d4af37;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.intro-box h2 {
    font-size: 2.8rem;
    color: #d4af37;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.intro-box p {
    font-size: 1.15rem;
    line-height: 2;
}

/* Section Heading */
.section-heading {
    font-size: 3rem;
    color: #d4af37;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 4px;
    font-weight: 800;
}

/* Features Section */
.features-section {
    padding: 80px 40px;
    background: rgba(0, 0, 0, 0.2);
}

.features-collection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-item {
    background: linear-gradient(135deg, #1a5c47 0%, #0d3b2e 100%);
    padding: 45px;
    border-radius: 18px;
    text-align: center;
    border: 3px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.feature-symbol {
    font-size: 4.5rem;
    margin-bottom: 25px;
}

.feature-item h3 {
    font-size: 1.8rem;
    color: #d4af37;
    margin-bottom: 18px;
    letter-spacing: 2px;
}

.feature-item p {
    font-size: 1.05rem;
    line-height: 1.9;
}

/* Notices Section */
.notices-section {
    padding: 70px 40px;
}

.notices-panel {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(156, 122, 35, 0.1));
    border: 3px solid #d4af37;
    border-radius: 22px;
    padding: 50px;
}

.notices-panel h3 {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 3px;
}

.notices-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.notice-entry {
    background: rgba(13, 59, 46, 0.7);
    padding: 28px;
    border-radius: 15px;
    border-left: 6px solid #d4af37;
}

.notice-entry strong {
    display: block;
    font-size: 1.4rem;
    color: #d4af37;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.notice-entry p {
    font-size: 1.08rem;
    line-height: 1.9;
}

/* Showcase Section */
.showcase-section {
    padding: 80px 40px;
    background: rgba(0, 0, 0, 0.2);
}

.showcase-description {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 45px;
    font-style: italic;
}

.showcase-display {
    max-width: 1050px;
    margin: 0 auto;
    background: #0a2a1f;
    border-radius: 25px;
    overflow: hidden;
    border: 4px solid #d4af37;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.showcase-frame {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

.showcase-action {
    text-align: center;
    margin-top: 45px;
}

.action-link {
    display: inline-block;
    background: linear-gradient(90deg, #d4af37 0%, #b8942d 100%);
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.action-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

/* Philosophy Section */
.philosophy-section {
    padding: 80px 40px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.philosophy-card {
    background: linear-gradient(135deg, #1a5c47 0%, #0d3b2e 100%);
    padding: 40px;
    border-radius: 18px;
    border: 3px solid rgba(212, 175, 55, 0.3);
}

.philosophy-card h3 {
    font-size: 1.9rem;
    color: #d4af37;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.philosophy-card p {
    font-size: 1.08rem;
    line-height: 2;
}

/* About Section */
.about-section {
    padding: 80px 40px;
    background: rgba(0, 0, 0, 0.2);
}

.about-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 45px;
}

.about-panel {
    background: linear-gradient(135deg, #1a5c47 0%, #0d3b2e 100%);
    padding: 45px;
    border-radius: 18px;
    border: 3px solid #d4af37;
}

.about-panel h3 {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 22px;
    letter-spacing: 2px;
}

.about-panel p {
    font-size: 1.08rem;
    line-height: 2;
}

/* Site Footer */
.site-footer {
    background: #0a2a1f;
    padding: 70px 40px 35px;
    margin-top: 80px;
    border-top: 4px solid #d4af37;
}

.footer-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 45px;
    margin-bottom: 45px;
}

.footer-column h4 {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 22px;
    letter-spacing: 2px;
}

.footer-column p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 22px;
}

.age-marker {
    display: inline-block;
    background: #d4af37;
    color: #0a2a1f;
    padding: 14px 35px;
    border-radius: 35px;
    font-weight: 800;
    font-size: 1.6rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #e8f4ea;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.05rem;
}

.footer-links a:hover {
    color: #d4af37;
}

.footer-credit {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    font-size: 1rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #d4af37 0%, #b8942d 100%);
    padding: 90px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 4.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: 6px;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.3rem;
    color: white;
    max-width: 850px;
    margin: 0 auto;
    font-style: italic;
}

.effective-date {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 15px;
}

/* Guidelines Section */
.guidelines-section {
    padding: 60px 40px;
}

.guidelines-box {
    background: linear-gradient(135deg, #1a5c47 0%, #0d3b2e 100%);
    border: 3px solid #d4af37;
    border-radius: 22px;
    padding: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.guidelines-box h3 {
    font-size: 2.3rem;
    color: #d4af37;
    margin-bottom: 35px;
    text-align: center;
    letter-spacing: 3px;
}

.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
}

.guideline {
    background: rgba(212, 175, 55, 0.1);
    padding: 22px;
    border-radius: 12px;
    border-left: 5px solid #d4af37;
}

.guideline strong {
    display: block;
    color: #d4af37;
    margin-bottom: 10px;
    font-size: 1.15rem;
}

/* Gaming Section */
.gaming-section {
    padding: 60px 40px;
    background: rgba(0, 0, 0, 0.2);
}

.gaming-display {
    background: #0a2a1f;
    border-radius: 25px;
    overflow: hidden;
    border: 4px solid #d4af37;
    box-shadow: 0 25px 70px rgba(212, 175, 55, 0.4);
}

.gaming-frame {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
}

/* Specifications Section */
.specifications-section {
    padding: 80px 40px;
}

.specifications-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.specification {
    background: linear-gradient(135deg, #1a5c47 0%, #0d3b2e 100%);
    padding: 40px;
    border-radius: 18px;
    border: 3px solid rgba(212, 175, 55, 0.3);
}

.specification h3 {
    font-size: 1.7rem;
    color: #d4af37;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.specification p {
    font-size: 1.08rem;
    line-height: 1.9;
}

/* Document Section */
.document-section {
    padding: 80px 40px;
}

.legal-document {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-document h2 {
    font-size: 2.2rem;
    color: #d4af37;
    margin-top: 45px;
    margin-bottom: 22px;
    letter-spacing: 2px;
}

.legal-document p {
    margin-bottom: 22px;
    font-size: 1.08rem;
    line-height: 2;
}

.legal-document ul {
    margin: 22px 0;
    padding-left: 35px;
}

.legal-document li {
    margin-bottom: 16px;
    line-height: 1.9;
}

.terms-summary,
.privacy-summary,
.disclaimer-summary {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(156, 122, 35, 0.1));
    border: 3px solid #d4af37;
    border-radius: 20px;
    padding: 40px;
    margin-top: 55px;
}

.terms-summary h3,
.privacy-summary h3,
.disclaimer-summary h3 {
    color: #d4af37;
    margin-bottom: 22px;
    font-size: 2rem;
    letter-spacing: 2px;
}

.disclaimer-summary ul {
    list-style: none;
    padding-left: 0;
}

.disclaimer-summary li {
    background: rgba(13, 59, 46, 0.7);
    padding: 20px;
    margin-bottom: 14px;
    border-radius: 12px;
    border-left: 6px solid #d4af37;
}

.disclaimer-summary li strong {
    color: #d4af37;
}

/* Age Dialog */
.age-dialog {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-dialog.active {
    display: flex;
}

.dialog-panel {
    background: linear-gradient(135deg, #1a5c47 0%, #0d3b2e 100%);
    padding: 65px;
    border-radius: 28px;
    text-align: center;
    max-width: 580px;
    border: 5px solid #d4af37;
    box-shadow: 0 30px 90px rgba(212, 175, 55, 0.5);
}

.dialog-icon {
    font-size: 5.5rem;
    margin-bottom: 28px;
}

.dialog-panel h2 {
    font-size: 2.8rem;
    color: #d4af37;
    margin-bottom: 28px;
    letter-spacing: 3px;
}

.dialog-panel p {
    font-size: 1.2rem;
    margin-bottom: 22px;
    line-height: 1.9;
}

.dialog-note {
    font-size: 1.05rem;
    color: rgba(232, 244, 234, 0.8);
    font-style: italic;
}

.dialog-controls {
    display: flex;
    gap: 22px;
    justify-content: center;
    margin-top: 45px;
}

.control-btn {
    padding: 20px 50px;
    border: none;
    border-radius: 50px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.15rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn.accept {
    background: #d4af37;
    color: white;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.control-btn.accept:hover {
    background: #b8942d;
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

.control-btn.decline {
    background: #6c757d;
    color: white;
}

.control-btn.decline:hover {
    background: #5a6268;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-burger {
        display: flex;
    }
    
    .nav-menu.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0a2a1f;
        flex-direction: column;
        padding: 22px;
        border-top: 3px solid #d4af37;
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.7);
    }
    
    .hero-title {
        font-size: 3.8rem;
        letter-spacing: 6px;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .section-heading {
        font-size: 2.3rem;
    }
    
    .page-header h1 {
        font-size: 3rem;
        letter-spacing: 4px;
    }
    
    .features-collection,
    .philosophy-grid,
    .about-panels,
    .specifications-group {
        grid-template-columns: 1fr;
    }
    
    .showcase-frame {
        height: 450px;
    }
    
    .gaming-frame {
        height: 550px;
    }
    
    .dialog-panel {
        margin: 25px;
        padding: 45px 35px;
    }
    
    .dialog-controls {
        flex-direction: column;
    }
    
    .control-btn {
        width: 100%;
    }
    
    .footer-layout {
        grid-template-columns: 1fr;
    }
}
