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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom, #0f172a, #1e293b, #334155);
    color: #f1f5f9;
    line-height: 1.7;
    min-height: 100vh;
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(8px);
}

.modal-overlay.hidden {
    display: none;
}

.modal-content {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    padding: 3rem;
    border-radius: 15px;
    max-width: 480px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(6, 182, 212, 0.4);
    color: #0f172a;
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.modal-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.modal-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.modal-highlight {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.2);
    border-radius: 8px;
}

.modal-info {
    font-size: 1rem;
    margin-bottom: 2rem;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.modal-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Space Grotesk', sans-serif;
}

.modal-btn-confirm {
    background: #0f172a;
    color: #fff;
}

.modal-btn-confirm:hover {
    background: #1e293b;
    transform: scale(1.05);
}

.modal-btn-deny {
    background: #fff;
    color: #0f172a;
}

.modal-btn-deny:hover {
    background: #e5e7eb;
}

/* Navigation */
.top-nav {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #06b6d4;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
}

.nav-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #06b6d4;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #f1f5f9;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
    font-family: 'Space Grotesk', sans-serif;
}

.nav-links a:hover {
    color: #06b6d4;
}

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

.nav-hamburger span {
    width: 28px;
    height: 3px;
    background: #06b6d4;
    display: block;
    transition: all 0.3s;
}

/* Main Content */
main {
    padding: 3rem 0;
}

.intro-section {
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.main-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #06b6d4;
    margin-bottom: 1.5rem;
}

.intro-text {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.highlights-section {
    margin-bottom: 3rem;
}

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

.highlight-box {
    background: rgba(30, 41, 59, 0.8);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(6, 182, 212, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.highlight-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(6, 182, 212, 0.3);
}

.highlight-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight-box h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    color: #06b6d4;
    margin-bottom: 1rem;
}

.featured-game-section {
    margin-bottom: 3rem;
}

.section-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    color: #06b6d4;
    margin-bottom: 1rem;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #cbd5e1;
}

.game-container {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #06b6d4;
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.2);
}

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

.game-disclaimer {
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
    color: #94a3b8;
}

.benefits-section {
    margin-bottom: 3rem;
}

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

.benefit-item {
    background: rgba(30, 41, 59, 0.6);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #06b6d4;
}

.benefit-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: #22d3ee;
}

.alerts-section {
    margin-bottom: 3rem;
}

.alert-box {
    background: rgba(239, 68, 68, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ef4444;
    margin-bottom: 1rem;
}

.alert-box p {
    font-size: 1.1rem;
}

.action-section {
    margin-bottom: 3rem;
}

.action-card {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(8, 145, 178, 0.2));
    border-radius: 12px;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.action-card h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    color: #06b6d4;
    margin-bottom: 1rem;
}

.action-link {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: #0f172a;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    transition: all 0.3s;
    font-family: 'Space Grotesk', sans-serif;
}

.action-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
}

/* Play Page */
.play-intro {
    padding: 3rem 0;
    text-align: center;
}

.play-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    color: #06b6d4;
    margin-bottom: 1rem;
}

.play-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.play-area {
    margin-bottom: 3rem;
}

.play-container {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #06b6d4;
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.2);
}

.play-iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.play-details {
    margin-bottom: 3rem;
}

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

.detail-box {
    background: rgba(30, 41, 59, 0.7);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.detail-box h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: #22d3ee;
    margin-bottom: 0.7rem;
}

.play-notice {
    background: rgba(239, 68, 68, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #ef4444;
}

.notice-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: #06b6d4;
    margin-bottom: 1rem;
}

.notice-card p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Legal Pages */
.legal-main {
    padding: 3rem 0;
}

.legal-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    color: #06b6d4;
    text-align: center;
    margin-bottom: 3rem;
}

.legal-block {
    background: rgba(30, 41, 59, 0.6);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid #06b6d4;
}

.legal-block h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    color: #22d3ee;
    margin-bottom: 1rem;
}

.legal-block ul {
    margin-left: 2rem;
    margin-top: 1rem;
}

.legal-block li {
    margin-bottom: 0.7rem;
}

.legal-block a {
    color: #06b6d4;
    text-decoration: underline;
}

.emphasis-block {
    background: rgba(6, 182, 212, 0.15);
    border-left-color: #ef4444;
}

/* Footer */
.site-footer {
    background: rgba(15, 23, 42, 0.9);
    border-top: 2px solid #06b6d4;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

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

.footer-block h4 {
    font-family: 'Space Grotesk', sans-serif;
    color: #06b6d4;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

.footer-block a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-block a:hover {
    color: #06b6d4;
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(6, 182, 212, 0.3);
    color: #64748b;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 72px;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s;
        padding: 2rem 0;
        gap: 0;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(6, 182, 212, 0.2);
    }

    .main-heading {
        font-size: 2.5rem;
    }

    .play-title {
        font-size: 2.5rem;
    }

    .brand-name {
        font-size: 1.4rem;
    }

    .game-iframe {
        height: 400px;
    }

    .play-iframe {
        height: 500px;
    }

    .legal-heading {
        font-size: 2.5rem;
    }
}
