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

body {
    font-family: 'Montserrat', sans-serif;
    background: #1a1a2e;
    color: #eaeaea;
    line-height: 1.6;
}

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

.sidebar {
    width: 280px;
    background: linear-gradient(180deg, #ff6b35 0%, #f7931e 100%);
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    padding: 2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #ffffff;
}

.logo-symbol {
    font-size: 2.5rem;
}

.logo-title {
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-nav {
    padding: 2rem 0;
    flex: 1;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-left-color: #ffffff;
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.25);
    border-left-color: #ffffff;
    font-weight: 700;
}

.nav-icon {
    font-size: 1.5rem;
}

.nav-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #ff6b35 0%, #f7931e 100%);
    padding: 1rem 1.5rem;
    z-index: 1000;
    align-items: center;
    justify-content: space-between;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
}

.mobile-logo .logo-symbol {
    font-size: 1.8rem;
}

.mobile-logo .logo-title {
    font-size: 1.3rem;
    font-weight: 900;
    text-transform: uppercase;
}

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

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.main-container {
    margin-left: 280px;
    width: calc(100% - 280px);
    padding: 0;
}

.hero-banner {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff6b35 100%);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero-overlay {
    text-align: center;
    padding: 3rem 2rem;
}

.hero-banner h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.tagline {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.25);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.feature-icon {
    font-size: 1.5rem;
}

.important-notices {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    color: #ff6b35;
}

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

.notice-box {
    background: #16213e;
    padding: 2rem;
    border-radius: 0;
    border-left: 5px solid;
    transition: transform 0.3s;
}

.notice-box:hover {
    transform: translateX(10px);
}

.notice-primary {
    border-left-color: #ff6b35;
}

.notice-secondary {
    border-left-color: #f7931e;
}

.notice-warning {
    border-left-color: #ff4757;
}

.notice-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.notice-emoji {
    font-size: 2.5rem;
}

.notice-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.notice-box p {
    line-height: 1.7;
    color: #b8b8b8;
}

.game-showcase {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.game-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: #b8b8b8;
}

.game-embed {
    background: #000000;
    border: 5px solid #ff6b35;
    margin: 0 auto 2rem;
    max-width: 900px;
}

.game-embed iframe {
    width: 100%;
    height: 600px;
    display: block;
}

.game-actions {
    text-align: center;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

.benefits-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: #16213e;
}

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

.benefit-card {
    background: #1a1a2e;
    padding: 2rem;
    text-align: center;
    border: 2px solid #ff6b35;
    transition: all 0.3s;
}

.benefit-card:hover {
    background: #ff6b35;
    transform: scale(1.05);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-card p {
    color: #b8b8b8;
    line-height: 1.7;
}

.benefit-card:hover p {
    color: #ffffff;
}

.about-section {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b8b8b8;
}

.site-footer {
    background: #16213e;
    padding: 3rem 2rem;
    margin-top: 4rem;
    border-top: 5px solid #ff6b35;
}

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

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ff6b35;
    font-weight: 700;
}

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

.footer-list a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-list a:hover {
    color: #ff6b35;
}

.footer-list li {
    margin-bottom: 0.5rem;
}

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

.age-gate-overlay.active {
    display: flex;
}

.age-gate-box {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    max-width: 500px;
    width: 90%;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.age-gate-header {
    margin-bottom: 2rem;
}

.age-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.age-gate-header h2 {
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
}

.age-gate-body p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.small-text {
    font-size: 0.95rem;
    opacity: 0.9;
}

.age-gate-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-confirm,
.btn-deny {
    flex: 1;
    padding: 1rem;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.btn-confirm {
    background: #00ff88;
    color: #000000;
}

.btn-confirm:hover {
    background: #00cc6a;
    transform: scale(1.05);
}

.btn-deny {
    background: #ff4757;
    color: #ffffff;
}

.btn-deny:hover {
    background: #cc3644;
    transform: scale(1.05);
}

@media (max-width: 968px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .mobile-header {
        display: flex;
    }

    .main-container {
        margin-left: 0;
        width: 100%;
        padding-top: 70px;
    }

    .hero-banner h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .game-embed iframe {
        height: 400px;
    }

    .notices-container,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .age-gate-actions {
        flex-direction: column;
    }
}