* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(to bottom, #1a1a2e, #16213e, #0f3460);
    color: #e0e0e0;
    min-height: 100vh;
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.site-header {
    text-align: center;
    padding: 2rem 0;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 3rem;
}

.logo-section {
    margin-bottom: 2rem;
}

.logo-emblem {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #d4af37, #f4e4c1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    border: 3px solid #d4af37;
}

.logo-letter {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 900;
    color: #1a1a2e;
}

.logo-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #d4af37;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.logo-tagline {
    font-size: 1rem;
    color: #a0a0a0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.navigation {
    position: relative;
}

.nav-toggle {
    display: none;
    background: linear-gradient(135deg, #d4af37, #f4e4c1);
    border: none;
    color: #1a1a2e;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    margin: 0 auto;
}

.nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.nav-link {
    display: block;
    padding: 1rem 1.5rem;
    color: #b0b0b0;
    text-decoration: none;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.nav-link:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    color: #d4af37;
}

.nav-link.active {
    background: linear-gradient(135deg, #d4af37, #f4e4c1);
    color: #1a1a2e;
    border-color: #d4af37;
    font-weight: 700;
}

.main-section {
    max-width: 1100px;
    margin: 0 auto;
}

.welcome-area {
    text-align: center;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
    font-weight: 900;
}

.section-lead {
    font-size: 1.2rem;
    color: #c0c0c0;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.prop-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 4px solid #d4af37;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.prop-card.prop-purple { border-left-color: #9b59b6; }
.prop-card.prop-silver { border-left-color: #c0c0c0; }

.prop-symbol {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.prop-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.prop-card p {
    color: #b0b0b0;
    line-height: 1.8;
}

.notice-area {
    margin-bottom: 3rem;
}

.notice-frame {
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 2.5rem;
}

.notice-heading {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: #ffc107;
    margin-bottom: 1.5rem;
}

.notice-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.notice-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 3px solid #ffc107;
    color: #e0e0e0;
    line-height: 1.7;
}

.notice-item strong {
    color: #ffc107;
}

.featured-game {
    margin-bottom: 3rem;
}

.game-intro {
    text-align: center;
    color: #a0a0a0;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.game-display {
    background: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.game-embed {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 10px;
    background: #000;
}

.excellence-section {
    margin-bottom: 3rem;
    text-align: center;
}

.excellence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.excellence-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: left;
}

.excellence-number {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.3);
    margin-bottom: 1rem;
}

.excellence-item h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: #d4af37;
    margin-bottom: 0.75rem;
}

.excellence-item p {
    color: #b0b0b0;
    line-height: 1.7;
}

.stats-display {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(155, 89, 182, 0.15));
    padding: 3rem 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.stat-item {
    text-align: center;
}

.stat-figure {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1.1rem;
    color: #c0c0c0;
}

.stat-divider {
    width: 2px;
    height: 80px;
    background: rgba(212, 175, 55, 0.3);
}

.page-heading {
    text-align: center;
    padding: 2rem;
    margin-bottom: 3rem;
}

.section-subtitle {
    color: #a0a0a0;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.instructions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.instruction-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.instruction-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.instruction-box h3 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.instruction-box p {
    color: #b0b0b0;
    line-height: 1.7;
}

.legal-sections {
    max-width: 900px;
    margin: 0 auto;
}

.legal-block {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid #d4af37;
}

.legal-block h3 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.legal-block p,
.legal-block li {
    color: #b0b0b0;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.legal-block ul {
    padding-left: 2rem;
    margin: 1rem 0;
}

.legal-block a {
    color: #9b59b6;
    text-decoration: none;
    font-weight: 600;
}

.legal-block a:hover {
    color: #d4af37;
    text-decoration: underline;
}

.alert-block {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(155, 89, 182, 0.2));
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid #d4af37;
    margin-bottom: 2rem;
    text-align: center;
}

.alert-symbol {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.alert-block h3 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.alert-block p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.site-footer {
    background: rgba(0, 0, 0, 0.4);
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    padding: 3rem 2rem;
    margin-top: 4rem;
    border-radius: 15px 15px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.footer-block h4 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.footer-block p {
    color: #a0a0a0;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-resources {
    list-style: none;
    padding: 0;
}

.footer-resources li {
    margin-bottom: 0.75rem;
}

.footer-resources a {
    color: #9b59b6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-resources a:hover {
    color: #d4af37;
}

.footer-notice {
    font-size: 0.9rem;
    color: #707070;
    margin-top: 1.5rem;
}

.age-modal {
    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-modal.visible {
    display: flex;
}

.age-modal-box {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    max-width: 550px;
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid #d4af37;
    text-align: center;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.4);
}

.modal-crown {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.age-modal-box h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.age-modal-box p {
    color: #c0c0c0;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.modal-note {
    font-size: 1rem;
    color: #909090;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.modal-btn {
    flex: 1;
    padding: 1.25rem 2rem;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.modal-btn:hover {
    transform: scale(1.05);
}

.btn-accept {
    background: linear-gradient(135deg, #d4af37, #f4e4c1);
    color: #1a1a2e;
}

.btn-reject {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
}

@media (max-width: 968px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-list {
        display: none;
        flex-direction: column;
        margin-top: 1rem;
    }
    
    .nav-list.open {
        display: flex;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .game-embed {
        height: 500px;
    }
    
    .stats-display {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stat-divider {
        width: 80px;
        height: 2px;
    }
}

@media (max-width: 480px) {
    .page-container {
        padding: 1rem;
    }
    
    .logo-title {
        font-size: 2rem;
    }
    
    .welcome-area {
        padding: 2rem 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .game-embed {
        height: 400px;
    }
    
    .age-modal-box {
        margin: 1rem;
        padding: 2rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
}
