* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
}

/* Age Gate */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-gate.hidden {
    display: none;
}

.age-gate-content {
    background: linear-gradient(135deg, #7C3AED, #5B21B6);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.4);
}

.age-gate-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.age-gate-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #f0f0f0;
}

.age-gate-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-confirm, .btn-decline {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-confirm {
    background: #10b981;
    color: white;
}

.btn-confirm:hover {
    background: #059669;
    transform: translateY(-2px);
}

.btn-decline {
    background: #ef4444;
    color: white;
}

.btn-decline:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

/* Header */
header {
    background: rgba(15, 12, 41, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    text-decoration: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #7C3AED, #EC4899);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 6rem 5%;
    text-align: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(236, 72, 153, 0.2));
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #7C3AED, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #d0d0d0;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(90deg, #7C3AED, #EC4899);
    color: white;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.6);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #7C3AED;
    color: #7C3AED;
}

.btn-secondary:hover {
    background: #7C3AED;
    color: white;
}

/* Notice Cards */
.notice-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(124, 58, 237, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    border-color: #7C3AED;
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
}

.card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

/* About Section */
.about-section {
    padding: 4rem 5%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
}

.about-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #d0d0d0;
}

/* Game Showcase */
.game-showcase {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.game-showcase h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.game-showcase p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #d0d0d0;
}

.game-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.game-container iframe {
    width: 100%;
    height: 700px;
    border: none;
}

/* Features Grid */
.features-grid {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.features-grid h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #7C3AED;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

/* Responsible Gaming */
.responsible-gaming {
    padding: 4rem 5%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 20px;
}

.responsible-gaming h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
}

/* Play Page */
.play-header {
    padding: 4rem 5%;
    text-align: center;
}

.play-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.play-header p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: #d0d0d0;
}

.game-play {
    padding: 2rem 5%;
}

.game-container-fullwidth {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.game-container-fullwidth iframe {
    width: 100%;
    height: 800px;
    border: none;
}

.game-info {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.game-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.game-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #d0d0d0;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(124, 58, 237, 0.3);
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

/* Legal Content */
.legal-content {
    padding: 4rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.legal-content .updated {
    font-size: 0.9rem;
    color: #a0a0a0;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #7C3AED;
}

.legal-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #d0d0d0;
    line-height: 1.8;
}

.important-notice {
    background: rgba(236, 72, 153, 0.1);
    border: 2px solid #EC4899;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.important-notice h2 {
    color: #EC4899;
    margin-top: 0;
}

/* Footer */
footer {
    background: rgba(15, 12, 41, 0.95);
    padding: 3rem 5% 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 2rem;
}

.footer-brand p {
    margin-top: 1rem;
    color: #a0a0a0;
}

.footer-links h4, .footer-resources h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-links ul, .footer-resources ul {
    list-style: none;
}

.footer-links li, .footer-resources li {
    margin-bottom: 0.5rem;
}

.footer-links a, .footer-resources a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover, .footer-resources a:hover {
    color: #7C3AED;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(124, 58, 237, 0.3);
    color: #a0a0a0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: rgba(15, 12, 41, 0.98);
        width: 100%;
        padding: 2rem;
        transition: right 0.3s ease;
        gap: 1rem;
    }

    .nav-links.active {
        right: 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .notice-cards {
        grid-template-columns: 1fr;
    }

    .game-container iframe {
        height: 500px;
    }

    .game-container-fullwidth iframe {
        height: 600px;
    }

    .play-header h1 {
        font-size: 2.2rem;
    }

    .legal-content h1 {
        font-size: 2.2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}
