* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: #0a0e27 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="star"><stop offset="0%25" stop-color="%23fff"/><stop offset="100%25" stop-color="%23fff" stop-opacity="0"/></radialGradient></defs><circle cx="100" cy="100" r="2" fill="url(%23star)"/><circle cx="300" cy="200" r="1" fill="url(%23star)"/><circle cx="500" cy="150" r="1.5" fill="url(%23star)"/><circle cx="700" cy="300" r="1" fill="url(%23star)"/><circle cx="900" cy="250" r="2" fill="url(%23star)"/><circle cx="200" cy="500" r="1" fill="url(%23star)"/><circle cx="600" cy="600" r="1.5" fill="url(%23star)"/><circle cx="800" cy="700" r="1" fill="url(%23star)"/><circle cx="400" cy="800" r="2" fill="url(%23star)"/><circle cx="150" cy="900" r="1" fill="url(%23star)"/></svg>') repeat;
    color: #e0e7ff;
    line-height: 1.7;
    min-height: 100vh;
}

header {
    background: rgba(15, 23, 42, 0.95);
    padding: 1rem 3rem;
    border-bottom: 1px solid rgba(96, 165, 250, 0.3);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #60a5fa;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.logo-icon {
    font-size: 2rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 3rem;
}

nav a {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

nav a:hover {
    color: #60a5fa;
    border-bottom-color: #60a5fa;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #60a5fa;
    transition: all 0.3s ease;
}

main {
    max-width: 1600px;
    margin: 0 auto;
    padding: 2rem 3rem;
}

.hero {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.3) 0%, rgba(17, 24, 39, 0.3) 100%);
    border-radius: 0;
    margin-bottom: 3rem;
    border-left: 4px solid #60a5fa;
    border-right: 4px solid #818cf8;
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.8rem;
    color: #60a5fa;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 900;
}

h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    color: #818cf8;
    margin: 3rem 0 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #60a5fa;
    margin: 1.5rem 0 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.3rem;
    color: #cbd5e1;
    font-weight: 300;
    letter-spacing: 2px;
}

.notice-box {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(127, 29, 29, 0.2) 100%);
    border: 2px solid #ef4444;
    border-radius: 0;
    padding: 2.5rem;
    margin: 3rem 0;
    border-left: 6px solid #ef4444;
}

.notice-box h3 {
    color: #fca5a5;
    text-align: center;
    margin-top: 0;
    font-size: 1.8rem;
}

.notice-box ul {
    list-style: none;
    padding: 1.5rem 0;
}

.notice-box li {
    padding: 1.2rem 1.5rem;
    margin: 1rem 0;
    background: rgba(15, 23, 42, 0.5);
    border-left: 3px solid #ef4444;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

.notice-box li::before {
    content: '⚠️ ';
    margin-right: 0.7rem;
}

.content-section {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(17, 24, 39, 0.2) 100%);
    padding: 3rem;
    margin: 2.5rem 0;
    border-left: 3px solid #60a5fa;
}

.content-section p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.9;
    color: #cbd5e1;
}

.game-container {
    width: 100%;
    max-width: 1000px;
    margin: 3rem auto;
    background: rgba(15, 23, 42, 0.8);
    padding: 1.5rem;
    border: 2px solid #60a5fa;
    box-shadow: 0 0 50px rgba(96, 165, 250, 0.2);
}

.game-container iframe {
    width: 100%;
    height: 650px;
    border: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin: 3rem 0;
}

.feature-card {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.2) 0%, rgba(17, 24, 39, 0.3) 100%);
    padding: 2.5rem;
    border-left: 4px solid #818cf8;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.3) 0%, rgba(17, 24, 39, 0.4) 100%);
    border-left-color: #60a5fa;
    transform: translateX(10px);
}

.feature-card h3 {
    margin-top: 0;
}

.feature-card p {
    color: #cbd5e1;
}

footer {
    background: rgba(15, 23, 42, 0.95);
    padding: 3rem 3rem 2rem;
    margin-top: 5rem;
    border-top: 1px solid rgba(96, 165, 250, 0.3);
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #60a5fa;
}

.responsible-gaming {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(17, 24, 39, 0.2) 100%);
    border-left: 3px solid #60a5fa;
    text-align: center;
}

.responsible-gaming h3 {
    margin-top: 0;
}

.responsible-gaming p {
    color: #cbd5e1;
    margin: 1rem 0;
}

.responsible-gaming-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.responsible-gaming-links a {
    color: #60a5fa;
    text-decoration: none;
    font-size: 1rem;
}

.responsible-gaming-links a:hover {
    color: #818cf8;
}

footer > .footer-content > p {
    text-align: center;
    color: #64748b;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    padding: 3rem 2.5rem;
    max-width: 500px;
    text-align: center;
    border: 3px solid #60a5fa;
    box-shadow: 0 0 60px rgba(96, 165, 250, 0.5);
}

.modal-content h2 {
    font-family: 'Orbitron', sans-serif;
    color: #60a5fa;
    margin-top: 0;
    font-size: 2rem;
    letter-spacing: 3px;
}

.modal-content p {
    font-size: 1.1rem;
    margin: 1.5rem 0;
    color: #cbd5e1;
}

.modal-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.modal-buttons button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    border: 2px solid;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-yes {
    background: #60a5fa;
    color: #0a0e27;
    border-color: #60a5fa;
}

.btn-yes:hover {
    background: #818cf8;
    border-color: #818cf8;
    transform: scale(1.05);
}

.btn-no {
    background: transparent;
    color: #ef4444;
    border-color: #ef4444;
}

.btn-no:hover {
    background: #ef4444;
    color: #fff;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: rgba(15, 23, 42, 0.98);
        transition: left 0.3s ease;
        padding: 2rem;
        border-bottom: 1px solid rgba(96, 165, 250, 0.3);
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    header {
        padding: 1rem 1.5rem;
    }

    main {
        padding: 1.5rem;
    }

    h1 {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    h2 {
        font-size: 1.6rem;
    }

    .logo {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

    .hero {
        padding: 3rem 1.5rem;
    }

    .content-section {
        padding: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .modal-content {
        margin: 1rem;
        padding: 2rem;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .game-container iframe {
        height: 500px;
    }

    footer {
        padding: 2rem 1.5rem;
    }
}
