* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00d9ff;
    --secondary-color: #7b2cbf;
    --accent-color: #ff006e;
    --dark-bg: #0a0e27;
    --darker-bg: #050811;
    --card-bg: rgba(15, 20, 45, 0.8);
    --text-light: #e8f4f8;
    --text-dim: #a0b8c5;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #00d9ff 0%, #7b2cbf 100%);
    --glow: 0 0 20px rgba(0, 217, 255, 0.3);
}

body {
    font-family: 'Exo 2', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Age Verification Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 8, 17, 0.95);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: var(--gradient-2);
    margin: 10% auto;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 10px 50px rgba(0, 217, 255, 0.5);
    border: 2px solid var(--primary-color);
    animation: modalSlideIn 0.5s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.modal-content h2 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 28px;
}

.modal-content p {
    color: #e8f4f8;
    margin-bottom: 15px;
    font-size: 16px;
}

.age-text {
    font-size: 20px !important;
    font-weight: 600;
    margin-top: 20px !important;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn-yes, .btn-no {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
}

.btn-yes {
    background: linear-gradient(135deg, #00ff87 0%, #00d9ff 100%);
    color: var(--darker-bg);
}

.btn-yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 135, 0.4);
}

.btn-no {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-no:hover {
    background: rgba(255, 0, 110, 0.3);
}

/* Header */
header {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(0, 217, 255, 0.2);
}

.navbar {
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
}

.logo-icon {
    font-size: 30px;
    filter: drop-shadow(0 0 10px var(--primary-color));
}

.hamburger {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.stars, .twinkling {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.stars {
    background: #000 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAFElEQVQYV2NkYGD4z8DAwMgABQAABQQBAY9j1nEAAAAASUVORK5CYII=) repeat;
}

.twinkling {
    background: transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAFElEQVQYV2NkYGD4z8DAwMgABQAABQQBAY9j1nEAAAAASUVORK5CYII=) repeat;
    animation: twinkle 200s linear infinite;
}

@keyframes twinkle {
    from { background-position: 0 0; }
    to { background-position: -10000px 5000px; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px 20px;
}

.hero-title {
    font-size: 56px;
    margin-bottom: 20px;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-dim);
    margin-bottom: 30px;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--gradient-2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: var(--glow);
    font-family: 'Orbitron', sans-serif;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.6);
}

/* Info Section */
.info-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.welcome-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 50px;
    border: 1px solid rgba(0, 217, 255, 0.2);
    backdrop-filter: blur(10px);
}

.welcome-card h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 32px;
}

.welcome-card p {
    color: var(--text-dim);
    margin-bottom: 15px;
    font-size: 17px;
}

.notices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.notice-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid;
    transition: all 0.3s ease;
}

.notice-card.recreational {
    border-color: #00ff87;
}

.notice-card.no-money {
    border-color: var(--accent-color);
}

.notice-card.age-restriction {
    border-color: #ffd60a;
}

.notice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.3);
}

.notice-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.notice-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
    color: var(--text-light);
}

.notice-card p {
    color: var(--text-dim);
    font-size: 15px;
}

/* Game Section */
.game-section {
    padding: 80px 0;
    background: var(--darker-bg);
}

.section-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.game-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.game-frame {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid rgba(0, 217, 255, 0.3);
}

.game-frame iframe {
    width: 100%;
    height: 600px;
    border-radius: 10px;
}

.game-info {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.game-info h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 24px;
}

.game-info p {
    color: var(--text-dim);
    margin-bottom: 20px;
}

.game-features {
    list-style: none;
    margin-top: 20px;
}

.game-features li {
    color: var(--text-dim);
    margin-bottom: 10px;
    padding-left: 5px;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 217, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.feature-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.feature-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.feature-item p {
    color: var(--text-dim);
    font-size: 15px;
}

/* Responsible Section */
.responsible-section {
    padding: 60px 0;
    background: var(--card-bg);
    text-align: center;
}

.responsible-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 32px;
}

.responsible-section p {
    color: var(--text-dim);
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 17px;
}

/* Play Section */
.play-section {
    padding: 60px 0;
    min-height: 100vh;
}

.page-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-subtitle {
    text-align: center;
    color: var(--text-dim);
    font-size: 18px;
    margin-bottom: 40px;
}

.game-play-container {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 50px;
    border: 2px solid rgba(0, 217, 255, 0.3);
}

.game-play-container iframe {
    width: 100%;
    height: 700px;
    border-radius: 10px;
}

.play-info h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 32px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.info-item {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.info-item h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 20px;
}

.info-item p {
    color: var(--text-dim);
    font-size: 15px;
}

/* Legal Pages */
.legal-section {
    padding: 60px 0;
    min-height: 100vh;
}

.update-date {
    text-align: center;
    color: var(--text-dim);
    font-style: italic;
    margin-bottom: 40px;
}

.legal-content {
    background: var(--card-bg);
    padding: 50px;
    border-radius: 15px;
    border: 1px solid rgba(0, 217, 255, 0.2);
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 26px;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    color: var(--text-dim);
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul {
    color: var(--text-dim);
    margin-left: 25px;
    margin-bottom: 15px;
}

.legal-content ul li {
    margin-bottom: 8px;
}

.legal-notice {
    background: rgba(0, 217, 255, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin-top: 30px;
    border-radius: 5px;
}

.legal-notice p {
    color: var(--text-light);
    margin-bottom: 0;
}

.disclaimer-highlight {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.2) 0%, rgba(123, 44, 191, 0.2) 100%);
    border: 2px solid var(--accent-color);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.disclaimer-highlight h2 {
    color: var(--accent-color);
    margin-top: 0;
}

.summary-list {
    list-style: none;
    margin: 20px 0;
}

.summary-list li {
    padding: 10px 0;
    font-size: 16px;
    color: var(--text-light);
}

.summary-footer {
    margin-top: 20px;
    font-weight: 600;
    color: var(--text-light);
    font-size: 17px;
}

/* Footer */
footer {
    background: var(--darker-bg);
    padding: 50px 0 20px;
    border-top: 2px solid rgba(0, 217, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-brand h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 24px;
}

.footer-brand p {
    color: var(--text-dim);
}

.footer-links h4,
.footer-responsible h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-links ul,
.footer-responsible ul {
    list-style: none;
}

.footer-links a,
.footer-responsible a {
    color: var(--text-dim);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-responsible a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 217, 255, 0.1);
    color: var(--text-dim);
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 14, 39, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        gap: 0;
        border-top: 2px solid rgba(0, 217, 255, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .game-container {
        grid-template-columns: 1fr;
    }

    .game-frame iframe {
        height: 400px;
    }

    .game-play-container iframe {
        height: 500px;
    }

    .modal-content {
        margin: 20% auto;
        padding: 30px 20px;
    }

    .modal-content h2 {
        font-size: 24px;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .btn-yes, .btn-no {
        width: 100%;
    }

    .legal-content {
        padding: 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .page-title {
        font-size: 32px;
    }
}