* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #1a1a2e;
    color: #eee;
    line-height: 1.7;
}

.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-modal.verified {
    display: none;
}

.age-modal-box {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    padding: 60px 40px;
    border-radius: 25px;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 25px 80px rgba(255, 107, 53, 0.4);
}

.age-icon {
    font-size: 4em;
    margin-bottom: 25px;
}

.age-modal-box h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5em;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.age-modal-box p {
    font-size: 1.15em;
    margin-bottom: 15px;
    font-weight: 300;
}

.age-buttons {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    justify-content: center;
}

.age-buttons button {
    padding: 18px 40px;
    font-size: 1.15em;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-confirm {
    background: #0f3460;
    color: white;
}

.btn-confirm:hover {
    background: #16213e;
    transform: scale(1.05);
}

.btn-decline {
    background: #dc2626;
    color: white;
}

.btn-decline:hover {
    background: #991b1b;
    transform: scale(1.05);
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-header {
    background: #0f3460;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: white;
}

.brand-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2em;
    letter-spacing: 3px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 2em;
    cursor: pointer;
}

.main-nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-close {
    display: none;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    transition: all 0.3s;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF6B35;
    transition: width 0.3s;
}

.main-nav a:hover::after {
    width: 100%;
}

.hero {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    padding: 120px 0;
    text-align: center;
}

.hero-inner h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4em;
    margin-bottom: 25px;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.lead {
    font-size: 1.4em;
    margin-bottom: 40px;
    font-weight: 300;
}

.btn-hero {
    display: inline-block;
    background: #0f3460;
    color: white;
    padding: 20px 55px;
    font-size: 1.3em;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-hero:hover {
    background: #16213e;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.features {
    padding: 100px 0;
    background: #16213e;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3em;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.section-header p {
    font-size: 1.2em;
    color: #bbb;
    font-weight: 300;
}

.features-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.feature-item {
    background: #1a1a2e;
    padding: 45px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.feature-item:hover {
    transform: translateY(-8px);
    border-color: #FF6B35;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.feature-emoji {
    font-size: 4em;
    margin-bottom: 25px;
}

.feature-item h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8em;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.feature-item p {
    font-size: 1.05em;
    line-height: 1.8;
    color: #ccc;
}

.alert-section {
    padding: 80px 0;
    background: #0f3460;
}

.alert-box {
    background: #1a1a2e;
    border: 3px solid #dc2626;
    border-radius: 20px;
    padding: 50px;
}

.alert-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    justify-content: center;
}

.alert-icon {
    font-size: 3em;
}

.alert-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5em;
    letter-spacing: 2px;
}

.alert-content {
    display: grid;
    gap: 30px;
}

.alert-item strong {
    display: block;
    font-size: 1.3em;
    margin-bottom: 12px;
    color: #FF6B35;
}

.alert-item p {
    font-size: 1.08em;
    line-height: 1.8;
}

.game-showcase {
    padding: 100px 0;
    background: #1a1a2e;
}

.game-display {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.game-embed {
    background: #0f3460;
    padding: 20px;
    border-radius: 20px;
}

.game-iframe {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 10px;
}

.game-sidebar {
    background: #0f3460;
    padding: 40px;
    border-radius: 20px;
    position: sticky;
    top: 100px;
}

.game-sidebar h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8em;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.game-sidebar p {
    margin-bottom: 25px;
    font-size: 1.05em;
    line-height: 1.8;
}

.game-features {
    list-style: none;
}

.game-features li {
    padding: 12px 0;
    font-size: 1.05em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.game-features li:last-child {
    border-bottom: none;
}

.info-blocks {
    padding: 100px 0;
    background: #16213e;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.info-block {
    background: #1a1a2e;
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid #FF6B35;
}

.info-block h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6em;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.info-block p {
    font-size: 1.05em;
    line-height: 1.8;
    color: #ccc;
}

.responsible-gaming {
    padding: 100px 0;
    background: #1a1a2e;
}

.rg-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3em;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.rg-intro {
    text-align: center;
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #ccc;
}

.rg-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.rg-tip {
    background: #0f3460;
    padding: 40px;
    border-radius: 15px;
    display: flex;
    gap: 25px;
    align-items: start;
}

.tip-number {
    background: #FF6B35;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    font-weight: 700;
    flex-shrink: 0;
}

.tip-text h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5em;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.tip-text p {
    font-size: 1.05em;
    line-height: 1.7;
    color: #ccc;
}

.play-hero {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    padding: 80px 0;
    text-align: center;
}

.play-hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5em;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.play-hero p {
    font-size: 1.3em;
    font-weight: 300;
}

.play-content {
    padding: 80px 0;
    background: #1a1a2e;
}

.play-notice {
    background: #0f3460;
    border: 2px solid #FF6B35;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 40px;
    text-align: center;
}

.play-notice p {
    font-size: 1.1em;
}

.game-container {
    background: #0f3460;
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 40px;
}

.game-iframe-full {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 10px;
}

.play-info {
    margin-top: 50px;
}

.info-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.info-item {
    background: #0f3460;
    padding: 35px;
    border-radius: 15px;
}

.info-item h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.7em;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.info-item p {
    font-size: 1.05em;
    line-height: 1.8;
    color: #ccc;
}

.legal-page {
    padding: 80px 0;
    background: #1a1a2e;
    flex: 1;
}

.legal-wrapper {
    background: #0f3460;
    padding: 60px;
    border-radius: 25px;
}

.legal-wrapper h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5em;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.effective-date {
    text-align: center;
    color: #bbb;
    margin-bottom: 50px;
    font-size: 1.1em;
}

.legal-body h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2em;
    margin-top: 45px;
    margin-bottom: 20px;
    color: #FF6B35;
    letter-spacing: 1px;
}

.legal-body h3 {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-body p {
    margin-bottom: 20px;
    font-size: 1.08em;
    line-height: 1.9;
    color: #ddd;
}

.legal-body ul {
    margin: 25px 0;
    padding-left: 35px;
}

.legal-body li {
    margin-bottom: 12px;
    font-size: 1.08em;
    line-height: 1.8;
    color: #ddd;
}

.terms-notice,
.privacy-highlight,
.user-acknowledgment {
    background: rgba(255, 107, 53, 0.15);
    border: 2px solid #FF6B35;
    padding: 35px;
    border-radius: 15px;
    margin-top: 45px;
}

.critical-warning {
    background: rgba(220, 38, 38, 0.2);
    border: 3px solid #dc2626;
    padding: 35px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.main-footer {
    background: #0f3460;
    padding: 60px 0 30px;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 45px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.7em;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-col p {
    color: #ccc;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #FF6B35;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 8px;
    color: #bbb;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #0f3460;
        flex-direction: column;
        padding: 80px 40px 40px;
        transition: right 0.3s;
        align-items: flex-start;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
    }

    .main-nav.open {
        right: 0;
    }

    .nav-close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: white;
        font-size: 2em;
        cursor: pointer;
    }

    .hero-inner h1 {
        font-size: 2.5em;
    }

    .lead {
        font-size: 1.1em;
    }

    .btn-hero {
        padding: 15px 35px;
        font-size: 1.1em;
    }

    .game-display {
        grid-template-columns: 1fr;
    }

    .game-iframe {
        height: 450px;
    }

    .game-sidebar {
        position: static;
    }

    .game-iframe-full {
        height: 500px;
    }

    .legal-wrapper {
        padding: 35px 25px;
    }

    .legal-wrapper h1 {
        font-size: 2.5em;
    }

    .age-modal-box {
        margin: 20px;
        padding: 40px 25px;
    }

    .age-buttons {
        flex-direction: column;
    }
}
