* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: #0a0e27;
    color: #e8eaf6;
    line-height: 1.7;
}

.content-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 25px;
}

/* Age Gate */
.age-gate-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 14, 39, 0.98);
    z-index: 9999;
    backdrop-filter: blur(8px);
}

.age-gate-overlay.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-gate-box {
    background: linear-gradient(145deg, #1a1f3a 0%, #0f1428 100%);
    border: 3px solid #00d9ff;
    border-radius: 16px;
    padding: 60px 50px;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 20px 80px rgba(0, 217, 255, 0.3);
}

.age-gate-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.age-gate-box h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2em;
    margin-bottom: 25px;
    color: #00d9ff;
    font-weight: 900;
}

.age-gate-box p {
    font-size: 1.15em;
    margin-bottom: 15px;
    color: #b8c5d6;
}

.age-gate-actions {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    justify-content: center;
}

.age-btn-yes, .age-btn-no {
    font-family: 'Orbitron', sans-serif;
    padding: 16px 40px;
    font-size: 1.15em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.age-btn-yes {
    background: linear-gradient(135deg, #00d9ff 0%, #0099cc 100%);
    color: #0a0e27;
}

.age-btn-yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.5);
}

.age-btn-no {
    background: #2a2f45;
    color: #8890a8;
}

.age-btn-no:hover {
    background: #353b54;
}

/* Navigation */
.main-nav {
    background: linear-gradient(180deg, #0f1428 0%, #0a0e27 100%);
    border-bottom: 2px solid #00d9ff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    font-size: 2.2em;
}

.brand-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8em;
    font-weight: 900;
    color: #00d9ff;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    font-family: 'Orbitron', sans-serif;
    color: #b8c5d6;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover, .nav-links a.nav-active {
    color: #00d9ff;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 32px;
    height: 3px;
    background: #00d9ff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Header */
.hero-header {
    background: linear-gradient(135deg, #1a1f3a 0%, #0f1428 50%, #1a1f3a 100%);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-header::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -250px;
    right: -150px;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4em;
    font-weight: 900;
    color: #fff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-text {
    font-size: 1.5em;
    color: #b8c5d6;
    margin-bottom: 45px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.play-btn {
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #00d9ff 0%, #0099cc 100%);
    color: #0a0e27;
    padding: 20px 60px;
    font-size: 1.4em;
    font-weight: 900;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.4);
}

.play-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 217, 255, 0.6);
}

/* Welcome Section */
.welcome-section {
    padding: 100px 0;
    background: #0a0e27;
}

.welcome-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3em;
    text-align: center;
    margin-bottom: 50px;
    color: #00d9ff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.welcome-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #c5d3e5;
    line-height: 1.9;
}

/* Key Points Section */
.key-points {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f1428 0%, #1a1f3a 100%);
}

.key-points h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3em;
    text-align: center;
    margin-bottom: 60px;
    color: #00d9ff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.point-box {
    background: rgba(26, 31, 58, 0.6);
    border: 2px solid #00d9ff;
    border-radius: 12px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.3s ease;
}

.point-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 217, 255, 0.3);
    background: rgba(26, 31, 58, 0.8);
}

.point-emoji {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.point-box h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6em;
    margin-bottom: 20px;
    color: #00d9ff;
    font-weight: 700;
}

.point-box p {
    font-size: 1.1em;
    color: #b8c5d6;
    line-height: 1.8;
}

/* Game Showcase */
.game-showcase {
    padding: 100px 0;
    background: #0a0e27;
}

.game-showcase h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3em;
    text-align: center;
    margin-bottom: 20px;
    color: #00d9ff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.showcase-subtitle {
    text-align: center;
    font-size: 1.3em;
    color: #8890a8;
    margin-bottom: 50px;
}

.game-embed {
    max-width: 1000px;
    margin: 0 auto;
    background: #000;
    padding: 20px;
    border-radius: 12px;
    border: 3px solid #00d9ff;
}

.game-iframe {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 8px;
}

/* Advantages Section */
.advantages {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f1428 0%, #1a1f3a 100%);
}

.advantages h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3em;
    text-align: center;
    margin-bottom: 60px;
    color: #00d9ff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.advantages-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.advantage-card {
    background: rgba(10, 14, 39, 0.5);
    padding: 35px 25px;
    border-radius: 10px;
    border-left: 4px solid #00d9ff;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    background: rgba(10, 14, 39, 0.8);
    transform: translateX(8px);
}

.adv-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.advantage-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #00d9ff;
    font-weight: 700;
}

.advantage-card p {
    color: #b8c5d6;
    line-height: 1.7;
}

/* Social Casino Info */
.social-casino-info {
    padding: 100px 0;
    background: #0a0e27;
    text-align: center;
}

.social-casino-info h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3em;
    margin-bottom: 50px;
    color: #00d9ff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.social-info-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #c5d3e5;
    line-height: 1.9;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Play Page */
.play-header {
    background: linear-gradient(135deg, #1a1f3a 0%, #0f1428 100%);
    padding: 100px 0;
    text-align: center;
}

.play-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5em;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.play-header p {
    font-size: 1.4em;
    color: #b8c5d6;
}

.play-instructions {
    padding: 80px 0;
    background: #0a0e27;
}

.play-instructions h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 50px;
    color: #00d9ff;
    font-weight: 900;
}

.instruction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.instruction-item {
    background: linear-gradient(145deg, #1a1f3a 0%, #0f1428 100%);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #00d9ff;
    font-size: 1.05em;
    color: #b8c5d6;
    line-height: 1.8;
}

.instruction-item strong {
    color: #00d9ff;
    display: block;
    margin-bottom: 10px;
}

.game-play-area {
    padding: 60px 0;
    background: linear-gradient(135deg, #0f1428 0%, #1a1f3a 100%);
}

.game-wrapper {
    background: #000;
    padding: 20px;
    border-radius: 12px;
    border: 3px solid #00d9ff;
}

.game-iframe-full {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 8px;
}

.play-tips {
    padding: 80px 0;
    background: #0a0e27;
}

.play-tips h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: #00d9ff;
    font-weight: 900;
}

.tips-content p {
    font-size: 1.15em;
    margin-bottom: 20px;
    color: #c5d3e5;
    line-height: 1.8;
}

.tips-content strong {
    color: #00d9ff;
}

/* Legal Content */
.legal-content {
    padding: 80px 0;
    background: #0a0e27;
}

.legal-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #00d9ff;
    font-weight: 900;
    text-transform: uppercase;
}

.last-updated {
    color: #6a7488;
    font-style: italic;
    margin-bottom: 50px;
    font-size: 1.05em;
}

.legal-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2em;
    margin: 50px 0 25px;
    color: #00d9ff;
    font-weight: 700;
}

.legal-content p {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: #c5d3e5;
    line-height: 1.9;
}

.legal-content ul {
    margin: 20px 0 25px 50px;
    color: #c5d3e5;
}

.legal-content li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.important-notice {
    background: linear-gradient(145deg, #1a1f3a 0%, #0f1428 100%);
    border-left: 5px solid #00d9ff;
    padding: 35px;
    margin: 40px 0;
    border-radius: 8px;
}

.important-notice h2 {
    margin-top: 0;
    color: #00d9ff;
}

.important-notice p {
    color: #e8eaf6;
}

/* Footer */
.site-footer {
    background: linear-gradient(180deg, #0f1428 0%, #0a0e27 100%);
    border-top: 3px solid #00d9ff;
    padding: 80px 0 40px;
}

.footer-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-tagline {
    color: #6a7488;
    font-size: 0.95em;
}

.footer-section h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4em;
    margin-bottom: 20px;
    color: #00d9ff;
    font-weight: 700;
}

.footer-section p {
    color: #8890a8;
    margin-bottom: 15px;
}

.support-links {
    list-style: none;
}

.support-links li {
    margin-bottom: 12px;
}

.support-links a {
    color: #b8c5d6;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.support-links a:hover {
    color: #00d9ff;
    transform: translateX(5px);
}

.footer-legal {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #1a1f3a;
    color: #6a7488;
    font-size: 0.95em;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #0f1428;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        border-top: 2px solid #00d9ff;
    }

    .nav-links.active {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-text {
        font-size: 1.2em;
    }

    .play-btn {
        font-size: 1.1em;
        padding: 15px 40px;
    }

    .game-iframe {
        height: 450px;
    }

    .game-iframe-full {
        height: 550px;
    }

    .age-gate-box {
        padding: 40px 30px;
        margin: 20px;
    }

    .age-gate-box h2 {
        font-size: 1.8em;
    }

    .age-gate-actions {
        flex-direction: column;
    }

    .age-btn-yes, .age-btn-no {
        width: 100%;
    }
}
