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

body {
    font-family: 'Rajdhani', sans-serif;
    background: #001d3d;
    color: #e1e8ed;
    line-height: 1.6;
    overflow-x: hidden;
}

.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

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

.age-modal-box {
    background: linear-gradient(145deg, #003566, #001d3d);
    border: 4px solid #ffd60a;
    border-radius: 25px;
    padding: 55px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 0 40px rgba(255, 214, 10, 0.4);
}

.age-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.age-modal-box h2 {
    font-size: 36px;
    color: #ffd60a;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.age-modal-box p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #e1e8ed;
}

.age-disclaimer {
    font-size: 16px;
    color: #adb5bd;
}

.age-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
}

.btn-accept, .btn-decline {
    padding: 18px 40px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-accept {
    background: #ffd60a;
    color: #001d3d;
}

.btn-accept:hover {
    background: #ffea00;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 214, 10, 0.5);
}

.btn-decline {
    background: #495057;
    color: #e1e8ed;
}

.btn-decline:hover {
    background: #6c757d;
}

.page-layout {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(to bottom, #003566 0%, #001d3d 100%);
    border-right: 3px solid #ffd60a;
    padding: 30px 0;
    z-index: 1000;
    overflow-y: auto;
}

.sidebar-header {
    padding: 0 25px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-size: 22px;
    font-weight: 700;
    color: #ffd60a;
    text-align: center;
}

.logo-bracket {
    color: #ffd60a;
    font-size: 26px;
}

.logo-name {
    display: block;
    margin: 5px 0;
    letter-spacing: 2px;
}

.close-sidebar {
    display: none;
    background: transparent;
    border: none;
    color: #ffd60a;
    font-size: 28px;
    cursor: pointer;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
}

.nav-item {
    padding: 18px 25px;
    color: #e1e8ed;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.nav-item:hover {
    background: rgba(255, 214, 10, 0.1);
    border-left-color: #ffd60a;
    color: #ffd60a;
}

.main-wrapper {
    margin-left: 280px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.top-bar {
    display: none;
    background: #001d3d;
    border-bottom: 3px solid #ffd60a;
    padding: 15px 20px;
    align-items: center;
    gap: 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.menu-btn {
    background: transparent;
    border: 2px solid #ffd60a;
    color: #ffd60a;
    font-size: 24px;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 8px;
}

.mobile-logo {
    font-size: 20px;
    font-weight: 700;
    color: #ffd60a;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .sidebar {
        left: -100%;
        transition: left 0.3s ease;
    }
    
    .sidebar.active {
        left: 0;
    }
    
    .close-sidebar {
        display: block;
    }
    
    .main-wrapper {
        margin-left: 0;
    }
    
    .top-bar {
        display: flex;
    }
}

.content {
    padding: 50px 40px;
    width: 100%;
}

.hero-section {
    background: linear-gradient(135deg, #003566 0%, #001d3d 100%);
    border: 3px solid #ffd60a;
    border-radius: 20px;
    padding: 70px 40px;
    text-align: center;
    margin-bottom: 50px;
    box-shadow: 0 0 30px rgba(255, 214, 10, 0.2);
}

.hero-section h1 {
    font-size: 52px;
    color: #ffd60a;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-text {
    font-size: 24px;
    color: #e1e8ed;
    font-weight: 600;
}

.intro-block, .mission-section {
    margin: 50px 0;
}

.intro-block h2, .mission-section h2 {
    font-size: 38px;
    color: #ffd60a;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
}

.intro-block p, .mission-section p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.alert-section {
    margin: 60px 0;
}

.alert-container {
    background: rgba(255, 214, 10, 0.1);
    border: 4px solid #ffd60a;
    border-radius: 20px;
    padding: 40px;
}

.alert-header {
    text-align: center;
    margin-bottom: 30px;
}

.alert-symbol {
    font-size: 56px;
    display: block;
    margin-bottom: 15px;
}

.alert-header h3 {
    font-size: 34px;
    color: #ffd60a;
    font-weight: 700;
    text-transform: uppercase;
}

.alert-list {
    list-style: none;
}

.alert-list li {
    margin: 20px 0;
    padding-left: 40px;
    position: relative;
    font-size: 17px;
}

.alert-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #ffd60a;
    font-size: 28px;
}

.alert-list strong {
    color: #ffd60a;
    display: block;
    margin-bottom: 5px;
}

.featured-game-section {
    margin: 60px 0;
}

.featured-game-section h2 {
    font-size: 40px;
    color: #ffd60a;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
}

.game-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 35px;
}

.game-box {
    background: #000000;
    border: 4px solid #ffd60a;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
}

.game-display {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 15px;
}

.game-note {
    text-align: center;
    font-size: 17px;
}

.highlights-section {
    margin: 60px 0;
}

.highlights-section h2 {
    font-size: 40px;
    color: #ffd60a;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
}

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

.highlight-item {
    background: rgba(0, 53, 102, 0.5);
    border: 3px solid #003566;
    border-radius: 18px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    border-color: #ffd60a;
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(255, 214, 10, 0.3);
}

.highlight-emoji {
    font-size: 54px;
    margin-bottom: 18px;
    display: block;
}

.highlight-item h3 {
    font-size: 24px;
    color: #ffd60a;
    margin-bottom: 12px;
    font-weight: 700;
}

.highlight-item p {
    font-size: 16px;
    line-height: 1.7;
}

.play-banner {
    background: linear-gradient(135deg, #003566 0%, #001d3d 100%);
    border: 3px solid #ffd60a;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 50px;
}

.play-banner h1 {
    font-size: 48px;
    color: #ffd60a;
    margin-bottom: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.play-subtitle {
    font-size: 22px;
    color: #e1e8ed;
}

.game-container {
    margin: 50px 0;
}

.game-frame-wrapper {
    background: #000000;
    border: 4px solid #ffd60a;
    border-radius: 20px;
    padding: 20px;
}

.game-fullscreen {
    width: 100%;
    height: 800px;
    border: none;
    border-radius: 15px;
}

@media (max-width: 768px) {
    .game-fullscreen {
        height: 600px;
    }
    
    .game-display {
        height: 500px;
    }
}

.game-guide {
    margin: 60px 0;
}

.game-guide h2 {
    font-size: 36px;
    color: #ffd60a;
    margin-bottom: 35px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
}

.guide-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.guide-panel {
    background: rgba(0, 53, 102, 0.5);
    border-left: 5px solid #ffd60a;
    border-radius: 12px;
    padding: 30px;
}

.guide-panel h3 {
    font-size: 22px;
    color: #ffd60a;
    margin-bottom: 12px;
    font-weight: 700;
}

.guide-panel p {
    font-size: 16px;
}

.play-notice {
    margin: 50px 0;
}

.notice-box {
    background: rgba(255, 214, 10, 0.1);
    border: 3px solid #ffd60a;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.notice-box p {
    font-size: 18px;
}

.document-header {
    background: linear-gradient(135deg, #003566 0%, #001d3d 100%);
    border: 3px solid #ffd60a;
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    margin-bottom: 50px;
}

.document-header h1 {
    font-size: 44px;
    color: #ffd60a;
    margin-bottom: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.doc-date {
    font-size: 17px;
    color: #adb5bd;
}

.document-content {
    background: rgba(0, 53, 102, 0.3);
    border-left: 6px solid #ffd60a;
    border-radius: 15px;
    padding: 50px;
}

.document-content h2 {
    font-size: 30px;
    color: #ffd60a;
    margin-top: 40px;
    margin-bottom: 18px;
    font-weight: 700;
}

.document-content h2:first-child {
    margin-top: 0;
}

.document-content h3 {
    font-size: 24px;
    color: #ffd60a;
    margin-top: 30px;
    margin-bottom: 12px;
    font-weight: 600;
}

.document-content p {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.8;
}

.document-content ul {
    margin: 20px 0 20px 40px;
}

.document-content li {
    margin: 12px 0;
    line-height: 1.7;
}

.emphasis-block {
    background: rgba(255, 214, 10, 0.1);
    border: 3px solid #ffd60a;
    border-radius: 15px;
    padding: 35px;
    margin: 40px 0;
}

.emphasis-block h2 {
    margin-top: 0;
}

.footer-area {
    background: rgba(0, 0, 0, 0.7);
    border-top: 3px solid #ffd60a;
    padding: 50px 40px;
    margin-top: 80px;
}

.footer-block {
    margin-bottom: 30px;
}

.footer-block h4 {
    font-size: 24px;
    color: #ffd60a;
    margin-bottom: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-block p {
    font-size: 16px;
    margin-bottom: 18px;
    line-height: 1.7;
}

.support-list {
    list-style: none;
}

.support-list li {
    margin: 12px 0;
}

.support-list a {
    color: #e1e8ed;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.support-list a:hover {
    color: #ffd60a;
}

.footer-text {
    color: #adb5bd;
    font-size: 15px;
}

@media (max-width: 768px) {
    .content {
        padding: 30px 20px;
    }
    
    .hero-section h1 {
        font-size: 36px;
    }
    
    .hero-text {
        font-size: 18px;
    }
    
    .document-content {
        padding: 30px;
    }
}
