* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #1a1a2e, #16213e);
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-fluid {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.top-header {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    position: sticky;
    top: 0;
    z-index: 999;
}

.top-header .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-flame {
    font-size: 2.8rem;
}

.logo-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.primary-nav {
    display: flex;
    gap: 0.3rem;
}

.nav-item {
    color: #ffffff;
    text-decoration: none;
    padding: 0.7rem 1.3rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0);
}

.nav-item:hover,
.nav-item.active {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.nav-trigger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-trigger span {
    width: 26px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hero-zone {
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ff6b35);
    padding: 5rem 0;
    text-align: center;
}

.hero-heading {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.hero-tags {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 255, 255, 0.3);
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.content-area {
    min-height: 50vh;
}

.intro-zone {
    padding: 4rem 0;
    background: #1a1a2e;
}

.zone-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #f7931e;
    letter-spacing: 2px;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.game-zone {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #16213e, #1a1a2e);
}

.zone-description {
    text-align: center;
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #e0e0e0;
}

.game-embed {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(247, 147, 30, 0.3);
    border: 4px solid #f7931e;
    margin-bottom: 2rem;
}

.game-window {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.game-alert {
    background: rgba(255, 193, 7, 0.2);
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    font-size: 1.1rem;
    color: #ffc107;
}

.benefits-zone {
    padding: 4rem 0;
    background: #1a1a2e;
}

.benefits-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    background: linear-gradient(135deg, #16213e, #0f3460);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(247, 147, 30, 0.3);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
    border-color: #f7931e;
    box-shadow: 0 15px 35px rgba(247, 147, 30, 0.3);
}

.benefit-emoji {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.benefit-heading {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: #f7931e;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.benefit-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #d0d0d0;
}

.notice-zone {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #16213e, #1a1a2e);
}

.notice-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.notice-card {
    padding: 2rem;
    border-radius: 12px;
    border-left: 6px solid;
    background: rgba(255, 255, 255, 0.05);
}

.notice-card.orange {
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

.notice-card.red {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.notice-card.purple {
    border-color: #9b59b6;
    background: rgba(155, 89, 182, 0.1);
}

.notice-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f7931e;
}

.notice-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #d0d0d0;
}

.bottom-footer {
    background: linear-gradient(to top, #0f0f1e, #1a1a2e);
    border-top: 3px solid #f7931e;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-heading {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.6rem;
    color: #f7931e;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-description {
    color: #d0d0d0;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.6rem;
}

.footer-list a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #f7931e;
    text-decoration: underline;
}

.footer-credits {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(247, 147, 30, 0.3);
    color: #a0a0a0;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.modal-container {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    padding: 3rem;
    border-radius: 20px;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(247, 147, 30, 0.5);
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.modal-symbol {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.modal-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.modal-text {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.modal-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    justify-content: center;
}

.btn-accept,
.btn-decline {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-accept {
    background: #27ae60;
    color: white;
}

.btn-accept:hover {
    background: #2ecc71;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(46, 204, 113, 0.4);
}

.btn-decline {
    background: #c0392b;
    color: white;
}

.btn-decline:hover {
    background: #e74c3c;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
}

.legal-zone {
    padding: 4rem 0;
    background: #1a1a2e;
}

.legal-heading {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    text-align: center;
    color: #f7931e;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.legal-updated {
    text-align: center;
    color: #a0a0a0;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-document h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: #f7931e;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.legal-document p,
.legal-document ul {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #d0d0d0;
    margin-bottom: 1.2rem;
}

.legal-document ul {
    margin-left: 2rem;
}

.legal-document a {
    color: #f7931e;
    text-decoration: none;
}

.legal-document a:hover {
    text-decoration: underline;
}

.play-intro {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    padding: 3rem 0;
    text-align: center;
}

.page-heading {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.page-text {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

.play-content {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #16213e, #1a1a2e);
}

.play-instructions {
    background: rgba(247, 147, 30, 0.1);
    border: 2px solid rgba(247, 147, 30, 0.4);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2.5rem;
}

.instructions-heading {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: #f7931e;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.play-instructions p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.play-window {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(247, 147, 30, 0.3);
    border: 4px solid #f7931e;
}

.game-player {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .nav-trigger {
        display: flex;
    }

    .primary-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: linear-gradient(135deg, #ff6b35, #f7931e);
        padding: 2rem;
        gap: 0.5rem;
        transition: left 0.4s ease;
        box-shadow: 0 4px 20px rgba(247, 147, 30, 0.5);
    }

    .primary-nav.active {
        left: 0;
    }

    .container,
    .container-fluid {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .hero-heading {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-tags {
        flex-direction: column;
        gap: 1rem;
    }

    .benefits-layout {
        grid-template-columns: 1fr;
    }

    .game-window {
        height: 400px;
    }

    .game-player {
        height: 500px;
    }

    .modal-container {
        margin: 1rem;
        padding: 2rem;
    }

    .modal-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-accept,
    .btn-decline {
        width: 100%;
    }
}
