* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(to bottom, #0f172a, #1e293b, #0f172a);
    color: #f1f5f9;
    line-height: 1.7;
    min-height: 100vh;
}

/* Age Verification Modal */
.age-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.97);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(8px);
}

.age-modal.show {
    display: flex;
}

.age-modal-box {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 2.5rem;
    border-radius: 16px;
    max-width: 450px;
    width: 92%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.age-icon svg {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 4px 12px rgba(6, 182, 212, 0.4));
}

.age-modal-box h2 {
    color: #06b6d4;
    font-size: 1.9rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.age-modal-box p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #cbd5e1;
}

.age-disclaimer {
    font-size: 0.9rem;
    color: #94a3b8;
}

.age-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.age-actions button {
    padding: 0.9rem 2rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-confirm {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
}

.btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.4);
}

.btn-decline {
    background: #475569;
    color: #f1f5f9;
}

.btn-decline:hover {
    background: #64748b;
}

/* Header */
.site-header {
    background: rgba(30, 41, 59, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
}

.header-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 700;
    color: #06b6d4;
}

.brand-icon {
    width: 45px;
    height: 45px;
}

.brand-text {
    letter-spacing: 0.5px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle .bar {
    width: 28px;
    height: 3px;
    background: #fb7185;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

.main-nav {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fb7185;
    transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #fb7185;
}

/* Banner */
.banner {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(251, 113, 133, 0.15) 100%),
                radial-gradient(circle at top right, rgba(6, 182, 212, 0.1), transparent),
                #0f172a;
    padding: 7rem 2rem;
    text-align: center;
    border-bottom: 2px solid rgba(6, 182, 212, 0.3);
}

.banner-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #06b6d4;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 10px rgba(6, 182, 212, 0.3);
}

.tagline {
    font-size: 1.4rem;
    color: #fb7185;
    margin-bottom: 2rem;
    font-weight: 500;
}

.btn-primary {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    background: linear-gradient(135deg, #fb7185, #f472b6);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(251, 113, 133, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(251, 113, 133, 0.5);
}

/* Content Sections */
section {
    padding: 4rem 2rem;
}

.content-box {
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-size: 2.3rem;
    color: #06b6d4;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.about {
    background: rgba(30, 41, 59, 0.4);
}

.text-block p {
    font-size: 1.05rem;
    margin-bottom: 1.3rem;
    color: #cbd5e1;
}

/* Key Points */
.key-points {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(251, 113, 133, 0.05));
}

.points-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.point-box {
    padding: 2.2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid;
    transition: transform 0.3s ease;
}

.point-box.cyan {
    background: rgba(6, 182, 212, 0.1);
    border-color: #06b6d4;
}

.point-box.coral {
    background: rgba(251, 113, 133, 0.1);
    border-color: #fb7185;
}

.point-box.teal {
    background: rgba(20, 184, 166, 0.1);
    border-color: #14b8a6;
}

.point-box:hover {
    transform: translateY(-5px);
}

.point-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.point-box h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #f1f5f9;
}

.point-box p {
    font-size: 0.95rem;
    color: #cbd5e1;
}

/* Featured Game */
.featured-game {
    background: rgba(30, 41, 59, 0.4);
}

.game-description {
    text-align: center;
    font-size: 1.05rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
}

.game-container {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem auto;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(6, 182, 212, 0.3);
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.btn-secondary {
    display: block;
    margin: 2rem auto 0;
    padding: 1rem 2.3rem;
    background: transparent;
    color: #06b6d4;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #06b6d4;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;
    width: fit-content;
}

.btn-secondary:hover {
    background: #06b6d4;
    color: #0f172a;
}

/* Highlights */
.highlights {
    background: linear-gradient(to bottom, rgba(6, 182, 212, 0.05), rgba(30, 41, 59, 0.3));
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.highlight-card {
    background: rgba(30, 41, 59, 0.6);
    padding: 1.8rem;
    border-radius: 10px;
    border-left: 4px solid #fb7185;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    background: rgba(30, 41, 59, 0.8);
    border-left-width: 6px;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.card-icon {
    font-size: 1.8rem;
}

.highlight-card h3 {
    font-size: 1.2rem;
    color: #f1f5f9;
}

.highlight-card p {
    font-size: 0.95rem;
    color: #cbd5e1;
}

/* Safety Message */
.safety-message {
    background: rgba(30, 41, 59, 0.4);
}

.safety-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.safety-content p {
    font-size: 1.05rem;
    margin-bottom: 1.3rem;
    color: #cbd5e1;
}

/* Play Page */
.play-hero {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(251, 113, 133, 0.2));
    padding: 3.5rem 2rem;
    text-align: center;
    border-bottom: 2px solid rgba(6, 182, 212, 0.3);
}

.play-hero h1 {
    font-size: 2.8rem;
    color: #06b6d4;
    margin-bottom: 1rem;
}

.play-intro {
    font-size: 1.1rem;
    color: #cbd5e1;
}

.game-section {
    padding: 2rem 0;
    background: rgba(15, 23, 42, 0.5);
}

.game-fullwidth {
    width: 100%;
}

.game-player {
    background: #000;
    border-top: 3px solid #06b6d4;
    border-bottom: 3px solid #fb7185;
}

.game-iframe {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
}

.game-details {
    background: rgba(30, 41, 59, 0.4);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.detail-item {
    background: rgba(30, 41, 59, 0.5);
    padding: 1.5rem;
    border-radius: 8px;
    border-top: 3px solid #06b6d4;
}

.detail-item h3 {
    font-size: 1.2rem;
    color: #fb7185;
    margin-bottom: 0.8rem;
}

.detail-item p {
    font-size: 0.95rem;
    color: #cbd5e1;
}

.play-notice {
    background: linear-gradient(135deg, rgba(251, 113, 133, 0.1), rgba(6, 182, 212, 0.1));
}

.notice-block {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    border: 2px solid rgba(251, 113, 133, 0.3);
}

.notice-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.notice-block p {
    font-size: 1.05rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
}

/* Legal Pages */
.page-title {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(30, 41, 59, 0.4));
    padding: 3.5rem 2rem;
    text-align: center;
    border-bottom: 2px solid rgba(6, 182, 212, 0.3);
}

.page-title h1 {
    font-size: 2.8rem;
    color: #06b6d4;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1rem;
    color: #94a3b8;
}

.legal-section {
    background: rgba(30, 41, 59, 0.3);
}

.legal-text h2 {
    text-align: left;
    font-size: 1.7rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #fb7185;
}

.legal-text p,
.legal-text ul {
    margin-bottom: 1.2rem;
    font-size: 1rem;
    color: #cbd5e1;
}

.legal-text ul {
    padding-left: 2rem;
}

/* Footer */
.site-footer {
    background: rgba(15, 23, 42, 0.95);
    border-top: 2px solid rgba(6, 182, 212, 0.3);
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: #06b6d4;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-col p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #fb7185;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(203, 213, 225, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-legal {
    color: #64748b;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: rgba(30, 41, 59, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s ease;
        border-left: 2px solid rgba(6, 182, 212, 0.3);
    }

    .main-nav.open {
        right: 0;
    }

    .nav-link {
        font-size: 1.4rem;
    }

    .banner-text h1,
    .play-hero h1,
    .page-title h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.9rem;
    }

    .game-frame,
    .game-iframe {
        height: 450px;
    }

    .points-layout,
    .highlights-grid,
    .details-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .banner {
        padding: 4rem 1rem;
    }

    .banner-text h1 {
        font-size: 1.8rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    section {
        padding: 3rem 1rem;
    }
}