* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lora', serif;
    color: #2c2c2c;
    line-height: 1.7;
    background: #fafafa;
}

.nav-header {
    background: linear-gradient(90deg, #ff6f3c 0%, #ff8c42 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(255, 111, 60, 0.3);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: white;
    font-size: 2rem;
    font-weight: 700;
}

.brand-icon {
    width: 48px;
    height: 48px;
}

.desktop-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.desktop-menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.6rem 1.3rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.desktop-menu a:hover,
.desktop-menu a.active {
    background: rgba(255, 255, 255, 0.25);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.mobile-dropdown {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #ff8c42 0%, #ff6f3c 100%);
    padding: 1.5rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

.mobile-dropdown.show {
    display: block;
}

.mobile-dropdown ul {
    list-style: none;
}

.mobile-dropdown li {
    margin-bottom: 0.8rem;
}

.mobile-dropdown a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.mobile-dropdown a:hover,
.mobile-dropdown a.active {
    background: rgba(255, 255, 255, 0.2);
}

.split-layout {
    display: flex;
    min-height: calc(100vh - 80px);
}

.left-panel {
    flex: 1;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    padding: 3rem;
    overflow-y: auto;
}

.right-panel {
    flex: 1;
    background: linear-gradient(135deg, #20d5d5 0%, #17a2b8 100%);
    padding: 3rem;
    color: white;
    overflow-y: auto;
}

.content-block {
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

h1 {
    color: #ff6f3c;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.right-panel h1 {
    color: white;
}

h2 {
    color: #ff6f3c;
    font-size: 2.2rem;
    margin-bottom: 1.25rem;
    margin-top: 2.5rem;
    font-weight: 600;
}

.right-panel h2 {
    color: white;
}

h3 {
    color: #ff8c42;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.right-panel h3 {
    color: #fff;
}

p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    color: #444;
}

.right-panel p {
    color: rgba(255, 255, 255, 0.95);
}

.highlight-box {
    background: linear-gradient(135deg, #ff6f3c 0%, #ff8c42 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 6px 20px rgba(255, 111, 60, 0.3);
}

.highlight-box h3 {
    color: white;
    margin-top: 0;
}

.highlight-box ul {
    margin-left: 1.75rem;
    margin-top: 1rem;
}

.highlight-box li {
    margin-bottom: 0.75rem;
}

.game-wrapper {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
}

.game-wrapper iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.info-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.75rem;
    border-radius: 10px;
    border-left: 5px solid white;
}

.info-item h3 {
    margin-top: 0;
}

.footer-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 2.5rem;
    margin-top: 3rem;
}

.footer-section h3 {
    color: #ff6f3c;
    margin-top: 0;
    margin-bottom: 1.25rem;
}

.footer-links-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1rem;
}

.footer-links-row a {
    color: #20d5d5;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-links-row a:hover {
    color: white;
}

.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 111, 60, 0.97);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}

.age-gate.active {
    display: flex;
}

.age-gate-box {
    background: white;
    padding: 3.5rem;
    border-radius: 20px;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 25px 90px rgba(0, 0, 0, 0.6);
}

.age-gate-box h2 {
    color: #ff6f3c;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.age-gate-box p {
    margin: 1.25rem 0;
    color: #2c2c2c;
}

.age-gate-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.25rem;
}

.age-gate-buttons button {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Lora', serif;
    transition: all 0.3s ease;
}

.confirm-age-btn {
    background: linear-gradient(135deg, #ff6f3c 0%, #ff8c42 100%);
    color: white;
}

.confirm-age-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 28px rgba(255, 111, 60, 0.4);
}

.deny-age-btn {
    background: #e0e0e0;
    color: #555;
}

.deny-age-btn:hover {
    background: #c0c0c0;
}

@media (max-width: 1024px) {
    .split-layout {
        flex-direction: column;
    }

    .left-panel,
    .right-panel {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .left-panel,
    .right-panel {
        padding: 1.5rem;
    }

    .game-wrapper iframe {
        height: 400px;
    }

    .age-gate-box {
        padding: 2.25rem;
    }

    .age-gate-buttons {
        flex-direction: column;
    }

    .age-gate-buttons button {
        width: 100%;
    }
}

ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.6rem;
    line-height: 1.7;
}
