* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: #0a1929;
    color: #e3f2fd;
    line-height: 1.6;
}

.top-header {
    background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-name {
    font-family: 'Roboto Slab', serif;
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 2px;
}

.desktop-nav {
    display: flex;
    gap: 35px;
}

.desktop-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
}

.desktop-nav a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.desktop-nav a.nav-active {
    background: rgba(255, 107, 107, 0.8);
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-nav {
    display: none;
    background: #00838f;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.mobile-nav a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 15px;
    font-weight: 600;
    border-radius: 6px;
    margin-bottom: 8px;
    transition: background 0.3s ease;
}

.mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-nav.active {
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 30px;
}

.banner {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    border-radius: 25px;
    padding: 80px 40px;
    text-align: center;
    margin-bottom: 60px;
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.banner-content h1 {
    font-family: 'Roboto Slab', serif;
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.subtitle {
    font-size: 24px;
    color: #fff5f5;
    margin-bottom: 30px;
    font-weight: 300;
}

.play-cta {
    display: inline-block;
    background: #ffffff;
    color: #ff6b6b;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.play-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.welcome {
    margin-bottom: 60px;
}

.welcome h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 38px;
    color: #00bcd4;
    text-align: center;
    margin-bottom: 30px;
}

.welcome-text {
    background: rgba(0, 188, 212, 0.08);
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid #00bcd4;
}

.welcome-text p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #b3e5fc;
}

.key-points {
    margin-bottom: 60px;
}

.key-points h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 38px;
    color: #00bcd4;
    text-align: center;
    margin-bottom: 40px;
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.point-box {
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.point-box:hover {
    transform: translateY(-8px);
}

.point-box.red {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
}

.point-box.blue {
    background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
}

.point-box.coral {
    background: linear-gradient(135deg, #ff8e53 0%, #fe6b8b 100%);
}

.point-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.point-box h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

.point-box p {
    font-size: 16px;
    color: #fff5f5;
    line-height: 1.7;
}

.embedded-game {
    margin-bottom: 60px;
}

.embedded-game h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 38px;
    color: #00bcd4;
    text-align: center;
    margin-bottom: 15px;
}

.game-desc {
    text-align: center;
    font-size: 18px;
    color: #b3e5fc;
    margin-bottom: 35px;
}

.game-frame {
    background: #000000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
}

.game-frame iframe {
    width: 100%;
    height: 650px;
    border: none;
}

.secondary-cta {
    display: block;
    text-align: center;
    color: #00bcd4;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.secondary-cta:hover {
    color: #ff6b6b;
    transform: scale(1.05);
}

.benefits {
    margin-bottom: 60px;
}

.benefits h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 38px;
    color: #00bcd4;
    text-align: center;
    margin-bottom: 40px;
}

.benefits-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 188, 212, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(0, 188, 212, 0.1);
    border-color: #00bcd4;
}

.benefit-emoji {
    font-size: 52px;
    display: block;
    margin-bottom: 15px;
}

.benefit-item h3 {
    color: #00bcd4;
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.benefit-item p {
    color: #b3e5fc;
    font-size: 15px;
    line-height: 1.6;
}

.site-footer {
    background: linear-gradient(135deg, #013243 0%, #001f2b 100%);
    padding: 50px 30px;
    margin-top: 80px;
    border-top: 4px solid #00bcd4;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-container h3 {
    color: #00bcd4;
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #b3e5fc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ff6b6b;
}

.footer-note {
    color: #607d8b;
    font-size: 14px;
}

.page-title {
    text-align: center;
    margin-bottom: 50px;
}

.page-title h1 {
    font-family: 'Roboto Slab', serif;
    font-size: 48px;
    color: #00bcd4;
    margin-bottom: 10px;
}

.page-title p {
    color: #b3e5fc;
    font-size: 18px;
}

.gameplay-notes {
    margin-bottom: 40px;
}

.notes-card {
    background: rgba(0, 188, 212, 0.08);
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid #00bcd4;
}

.notes-card h2 {
    color: #00bcd4;
    font-size: 32px;
    margin-bottom: 20px;
}

.notes-card p {
    color: #b3e5fc;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.tips-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 25px;
}

.tip-col h4 {
    color: #ff6b6b;
    font-size: 20px;
    margin-bottom: 15px;
}

.tip-col ul {
    list-style: none;
    padding-left: 0;
}

.tip-col li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #b3e5fc;
}

.tip-col li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #00bcd4;
    font-size: 20px;
}

.browser-note {
    background: rgba(255, 107, 107, 0.15);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #ff6b6b;
}

.full-game-section {
    margin-bottom: 60px;
}

.game-wrapper {
    background: #000000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.game-wrapper iframe {
    width: 100%;
    height: 750px;
    border: none;
}

.terms-content {
    max-width: 1000px;
    margin: 0 auto;
}

.term-block {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px;
    margin-bottom: 25px;
    border-radius: 15px;
    border-left: 5px solid #00bcd4;
}

.term-block h2 {
    color: #00bcd4;
    font-size: 28px;
    margin-bottom: 20px;
    font-family: 'Roboto Slab', serif;
}

.term-block p {
    color: #b3e5fc;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 15px;
}

.term-block ul {
    padding-left: 25px;
    color: #b3e5fc;
    line-height: 1.9;
}

.term-block li {
    margin-bottom: 10px;
}

.term-block a {
    color: #ff6b6b;
    text-decoration: none;
}

.term-block a:hover {
    text-decoration: underline;
}

.term-block.warning {
    border-left-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.08);
}

.term-block.warning h2 {
    color: #ff6b6b;
}

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-gate.hidden {
    display: none;
}

.gate-box {
    background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
    padding: 60px;
    border-radius: 25px;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
    border: 4px solid #ff6b6b;
}

.gate-box h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 25px;
}

.gate-box p {
    font-size: 18px;
    color: #e3f2fd;
    margin-bottom: 15px;
    line-height: 1.7;
}

.gate-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 35px;
}

.gate-actions button {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.confirm-btn {
    background: #ffffff;
    color: #00bcd4;
}

.confirm-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.decline-btn {
    background: #263238;
    color: #ffffff;
}

.decline-btn:hover {
    background: #37474f;
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .banner-content h1 {
        font-size: 36px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    .game-frame iframe,
    .game-wrapper iframe {
        height: 450px;
    }
    
    .gate-box {
        padding: 40px;
        margin: 20px;
    }
    
    .gate-box h2 {
        font-size: 28px;
    }
    
    .gate-actions {
        flex-direction: column;
    }
    
    .gate-actions button {
        width: 100%;
    }
}
