* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0a1929;
    color: #e3f2fd;
    line-height: 1.7;
    min-height: 100vh;
}

/* Verify Overlay */
.verify-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 41, 0.98);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.verify-overlay.show {
    display: flex;
}

.verify-box {
    background: linear-gradient(135deg, #006064 0%, #00acc1 100%);
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 172, 193, 0.4);
    border: 2px solid #00acc1;
    overflow: hidden;
}

.verify-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    text-align: center;
}

.verify-header h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.verify-body {
    padding: 2rem;
    text-align: center;
}

.verify-main {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.verify-sub {
    font-size: 0.95rem;
    color: #b2ebf2;
}

.verify-actions {
    padding: 0 2rem 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-accept, .btn-decline {
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #fff;
    color: #006064;
}

.btn-accept:hover {
    background: #e0f7fa;
    transform: scale(1.05);
}

.btn-decline {
    background: #455a64;
    color: #fff;
}

.btn-decline:hover {
    background: #607d8b;
}

/* Navigation */
.top-nav {
    background: linear-gradient(135deg, #006064 0%, #00838f 100%);
    border-bottom: 2px solid #00acc1;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.brand-name {
    font-family: 'Raleway', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu li a {
    color: #e0f7fa;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.nav-menu li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-hamburger span {
    width: 28px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Intro Hero */
.intro-hero {
    padding: 7rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 96, 100, 0.5) 0%, rgba(0, 131, 143, 0.5) 100%);
    border-bottom: 2px solid #00acc1;
}

.hero-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.hero-wrapper h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
}

.hero-tagline {
    font-size: 1.6rem;
    font-weight: 300;
    color: #80deea;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #b2ebf2;
    margin-bottom: 2.5rem;
}

.cta-link {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #00acc1;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(0, 172, 193, 0.4);
}

.cta-link:hover {
    background: #00bcd4;
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(0, 172, 193, 0.6);
}

/* Section Container */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Overview */
.overview {
    padding: 6rem 2rem;
}

.overview h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #00acc1;
    text-align: center;
    margin-bottom: 2.5rem;
}

.overview-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #cfd8dc;
}

/* Key Points */
.key-points {
    padding: 6rem 2rem;
    background: rgba(0, 172, 193, 0.05);
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.point-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid;
    transition: all 0.3s ease;
}

.accent-cyan {
    border-color: #00acc1;
}

.accent-blue {
    border-color: #0288d1;
}

.accent-dark {
    border-color: #546e7a;
}

.point-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 172, 193, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.point-card h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #00acc1;
    margin-bottom: 1rem;
}

.point-card p {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Game Feature */
.game-feature {
    padding: 6rem 2rem;
}

.game-feature h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #00acc1;
    text-align: center;
    margin-bottom: 1.5rem;
}

.feature-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #90caf9;
    margin-bottom: 3rem;
}

.game-container {
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 3px solid #00acc1;
    margin-bottom: 2rem;
}

.game-embed {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.game-note {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 172, 193, 0.1);
    border-radius: 10px;
    border: 2px solid #00acc1;
}

.game-note p {
    color: #80deea;
    font-weight: 600;
}

/* Benefits */
.benefits {
    padding: 6rem 2rem;
    background: rgba(0, 96, 100, 0.1);
}

.benefits h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #00acc1;
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #00acc1;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.benefit-number {
    font-family: 'Raleway', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(0, 172, 193, 0.3);
    flex-shrink: 0;
}

.benefit-content h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #00acc1;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Responsible Gaming */
.responsible-gaming {
    padding: 5rem 2rem;
}

.responsible-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.responsible-content h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00acc1;
    margin-bottom: 2rem;
}

.responsible-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #cfd8dc;
}

/* Play Page */
.play-header {
    padding: 5rem 2rem;
    text-align: center;
    background: rgba(0, 96, 100, 0.3);
    border-bottom: 2px solid #00acc1;
}

.play-header h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
}

.play-subtitle {
    font-size: 1.3rem;
    color: #b2ebf2;
}

.instructions {
    padding: 4rem 2rem;
}

.instructions-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid #00acc1;
}

.instructions-box h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #00acc1;
    margin-bottom: 1.5rem;
}

.instructions-list {
    list-style: none;
    padding: 0;
}

.instructions-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.game-player {
    padding: 2rem 2rem 5rem;
}

.player-wrapper {
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 3px solid #00acc1;
}

.game-iframe-play {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.play-notice {
    padding: 4rem 2rem;
}

.notice-panel {
    background: rgba(0, 172, 193, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid #00acc1;
    text-align: center;
}

.notice-panel h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #00acc1;
    margin-bottom: 1.5rem;
}

.notice-panel p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Legal Page */
.legal-page {
    padding: 5rem 2rem;
    min-height: 70vh;
}

.legal-page h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #00acc1;
    margin-bottom: 0.5rem;
}

.legal-updated {
    font-size: 0.95rem;
    color: #78909c;
    margin-bottom: 3rem;
}

.legal-article {
    margin-bottom: 3rem;
}

.legal-article h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #00acc1;
    margin-bottom: 1rem;
}

.legal-article p, .legal-article li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-article ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.emphasis-box {
    background: rgba(0, 172, 193, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid #00acc1;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, #006064 0%, #00838f 100%);
    border-top: 2px solid #00acc1;
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #b2ebf2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
}

.footer-section p {
    color: #b2ebf2;
    line-height: 1.6;
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copyright p {
    color: #80deea;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, #006064 0%, #00838f 100%);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        gap: 0;
        border-top: 2px solid #00acc1;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.8rem 0;
    }

    .nav-menu li a {
        display: block;
        padding: 1rem;
        font-size: 1.2rem;
    }

    .hero-wrapper h1 {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1.05rem;
    }

    .overview h2, .game-feature h2, .benefits h2 {
        font-size: 2.3rem;
    }

    .points-grid {
        grid-template-columns: 1fr;
    }

    .game-embed {
        height: 450px;
    }

    .game-iframe-play {
        height: 500px;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .play-header h1 {
        font-size: 2.5rem;
    }

    .legal-page h1 {
        font-size: 2.3rem;
    }

    .verify-box {
        margin: 1rem;
    }

    .verify-header h2 {
        font-size: 1.7rem;
    }

    .verify-actions {
        flex-direction: column;
    }

    .btn-accept, .btn-decline {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .intro-hero {
        padding: 5rem 1rem;
    }

    .hero-wrapper h1 {
        font-size: 2rem;
    }

    .brand-name {
        font-size: 1.5rem;
    }

    .nav-content {
        padding: 1rem;
    }
}
