@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800&family=Titillium+Web:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Titillium Web', sans-serif;
    background: #0a1628;
    color: #e8f4f8;
    min-height: 100vh;
}

.site-header {
    background: linear-gradient(180deg, #0d1f35 0%, transparent 100%);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    padding: 20px 0;
}

.header-wrap {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    text-decoration: none;
    color: #00d4aa;
    text-shadow: 0 0 20px rgba(0, 212, 170, 0.5);
}

.main-menu ul {
    display: flex;
    gap: 35px;
    list-style: none;
}

.main-menu a {
    color: #b8d4e3;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    position: relative;
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00d4aa;
    transition: width 0.3s;
}

.main-menu a:hover::after {
    width: 100%;
}

.main-menu a:hover {
    color: #00d4aa;
}

.menu-toggle {
    display: none;
    background: none;
    border: 2px solid #00d4aa;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 5px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #00d4aa;
    margin: 5px 0;
    transition: 0.3s;
}

.menu-toggle.open span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}

.main-content {
    padding-top: 90px;
}

.intro-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 25px;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 212, 170, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(0, 150, 199, 0.1) 0%, transparent 35%);
}

.intro-content {
    max-width: 900px;
}

.intro-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #00d4aa;
    line-height: 1.2;
}

.intro-content .tagline {
    font-size: 1.3rem;
    color: #a0c4d3;
    margin-bottom: 40px;
    line-height: 1.8;
}

.alert-badges {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.badge {
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid #00d4aa;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-icon {
    font-size: 1.2rem;
}

.game-area {
    padding: 80px 25px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 212, 170, 0.05) 50%, transparent 100%);
}

.game-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    text-align: center;
    color: #00d4aa;
    margin-bottom: 40px;
}

.game-container {
    max-width: 1100px;
    margin: 0 auto;
    background: #0d1f35;
    border-radius: 25px;
    padding: 25px;
    box-shadow: 
        0 0 60px rgba(0, 212, 170, 0.2),
        inset 0 0 30px rgba(0, 0, 0, 0.3);
}

.game-embed {
    width: 100%;
    height: 550px;
    border: none;
    border-radius: 15px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 80px 25px;
}

.benefit-item {
    background: linear-gradient(135deg, #0d1f35 0%, #152a42 100%);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 212, 170, 0.2);
    transition: all 0.4s;
}

.benefit-item:hover {
    border-color: #00d4aa;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: #00d4aa;
    margin-bottom: 15px;
}

.benefit-item p {
    color: #a0c4d3;
    font-size: 0.95rem;
    line-height: 1.7;
}

.details-section {
    max-width: 1600px;
    margin: 0 auto;
    padding: 60px 25px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.detail-card {
    background: #0d1f35;
    padding: 40px 30px;
    border-radius: 15px;
    border-top: 3px solid #00d4aa;
}

.detail-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: #00d4aa;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.detail-card p {
    color: #a0c4d3;
    line-height: 1.8;
}

.site-footer {
    background: #071018;
    padding: 60px 25px 30px;
    margin-top: 80px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.gambling-help {
    margin-bottom: 35px;
}

.gambling-help h4 {
    font-family: 'Orbitron', sans-serif;
    color: #00d4aa;
    margin-bottom: 20px;
    font-size: 1rem;
}

.gambling-help a {
    color: #b8d4e3;
    margin: 0 20px;
    text-decoration: none;
    transition: color 0.3s;
}

.gambling-help a:hover {
    color: #00d4aa;
}

.footer-nav {
    margin-bottom: 30px;
}

.footer-nav a {
    color: #7a9eb3;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #00d4aa;
}

.legal-text {
    color: #4a6b7c;
    font-size: 0.85rem;
}

.verification-overlay {
    position: fixed;
    inset: 0;
    background: rgba(7, 16, 24, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.verification-overlay.dismissed {
    display: none;
}

.verify-box {
    background: linear-gradient(145deg, #0d1f35, #152a42);
    padding: 50px 60px;
    border-radius: 25px;
    text-align: center;
    max-width: 520px;
    border: 2px solid #00d4aa;
    box-shadow: 0 0 80px rgba(0, 212, 170, 0.3);
}

.verify-box h2 {
    font-family: 'Orbitron', sans-serif;
    color: #00d4aa;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.verify-box p {
    color: #a0c4d3;
    margin-bottom: 15px;
    line-height: 1.7;
}

.verify-box .highlight {
    color: #00d4aa;
    font-weight: 600;
}

.verify-actions {
    margin-top: 35px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.action-btn {
    padding: 16px 45px;
    border-radius: 12px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.action-btn.confirm {
    background: linear-gradient(135deg, #00d4aa, #00a88a);
    color: #0a1628;
}

.action-btn.deny {
    background: transparent;
    border: 2px solid #4a6b7c;
    color: #b8d4e3;
}

.action-btn:hover {
    transform: scale(1.05);
}

.action-btn.confirm:hover {
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.4);
}

.page-banner {
    padding: 130px 25px 60px;
    text-align: center;
    background: radial-gradient(ellipse at center top, rgba(0, 212, 170, 0.2) 0%, transparent 50%);
}

.page-banner h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    color: #00d4aa;
}

.text-content {
    max-width: 950px;
    margin: 0 auto;
    padding: 50px 25px;
}

.text-content h2 {
    font-family: 'Orbitron', sans-serif;
    color: #00d4aa;
    font-size: 1.5rem;
    margin: 45px 0 20px;
}

.text-content h2:first-of-type {
    margin-top: 0;
}

.text-content p {
    color: #a0c4d3;
    line-height: 1.9;
    margin-bottom: 18px;
}

.text-content ul {
    color: #a0c4d3;
    margin: 20px 0;
    padding-left: 30px;
}

.text-content li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.instruction-panel {
    background: rgba(0, 212, 170, 0.1);
    border-left: 4px solid #00d4aa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.instruction-panel p {
    margin: 0;
    color: #b8d4e3;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .details-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0d1f35;
        padding: 25px;
        display: none;
    }

    .main-menu.visible {
        display: block;
    }

    .main-menu ul {
        flex-direction: column;
        gap: 20px;
    }

    .intro-content h1 {
        font-size: 2rem;
    }

    .alert-badges {
        flex-direction: column;
        align-items: center;
    }

    .game-embed {
        height: 380px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .verify-box {
        margin: 20px;
        padding: 35px 25px;
    }

    .verify-actions {
        flex-direction: column;
    }

    .page-banner h1 {
        font-size: 2rem;
    }
}
