@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00d9ff;
    --secondary-color: #7b2cbf;
    --dark-bg: #0a0e27;
    --light-bg: #1a1f3a;
    --text-light: #ffffff;
    --text-dim: #a8b2d1;
    --accent-gold: #ffd700;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a0033 100%);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
}

header {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.3);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    text-decoration: none;
    text-shadow: 0 0 20px var(--primary-color);
    letter-spacing: 3px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

main {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.2), rgba(0, 217, 255, 0.2));
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.3);
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin: 2rem 0 1.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin: 1.5rem 0 1rem;
    color: var(--accent-gold);
}

p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dim);
    line-height: 1.8;
}

.notice-box {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--accent-gold);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 900px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

.notice-box h3 {
    color: var(--accent-gold);
    margin-top: 0;
}

.notice-box ul {
    list-style: none;
    padding-left: 0;
}

.notice-box li {
    padding: 0.8rem 0;
    font-size: 1.15rem;
    color: var(--text-light);
    position: relative;
    padding-left: 2rem;
}

.notice-box li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    font-size: 1.3rem;
}

.game-container {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem auto;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 10px 40px rgba(123, 44, 191, 0.4);
    text-align: center;
}

.game-frame {
    width: 100%;
    max-width: 100%;
    height: 700px;
    border: none;
    border-radius: 15px;
    background: #000;
}

.content-section {
    background: rgba(26, 31, 58, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2rem auto;
    max-width: 1200px;
    border: 1px solid rgba(0, 217, 255, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.3), rgba(0, 217, 255, 0.3));
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.5);
}

.feature-card h3 {
    margin-top: 0;
    color: var(--primary-color);
}

footer {
    background: var(--dark-bg);
    padding: 3rem 2rem;
    margin-top: 5rem;
    border-top: 2px solid var(--primary-color);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.responsible-gambling {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-bg);
}

.responsible-gambling h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.responsible-gambling a {
    color: var(--primary-color);
    text-decoration: none;
    margin: 0 1rem;
    font-size: 1.1rem;
}

.responsible-gambling a:hover {
    text-decoration: underline;
}

/* Age Verification Modal */
.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-content {
    background: linear-gradient(135deg, var(--dark-bg), var(--light-bg));
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.5);
}

.age-modal-content h2 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.age-modal-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.age-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.age-button {
    padding: 1rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
}

.age-button.yes {
    background: linear-gradient(135deg, #00d900, #00ff00);
    color: #000;
}

.age-button.yes:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.5);
}

.age-button.no {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #fff;
}

.age-button.no:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: rgba(10, 14, 39, 0.98);
        transition: right 0.3s ease;
        padding-top: 5rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 2rem;
    }

    nav li {
        border-bottom: 1px solid var(--light-bg);
        padding: 1.5rem 0;
    }

    .logo {
        font-size: 1.5rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-section {
        padding: 2rem 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .age-modal-content {
        margin: 1rem;
        padding: 2rem;
    }

    .age-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .game-frame {
        height: 500px;
    }
}
