* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #0d0d0d;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 255, 65, 0.03) 2px, rgba(0, 255, 65, 0.03) 4px);
    color: #e0e0e0;
    line-height: 1.7;
    min-height: 100vh;
}

header {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 40, 20, 0.95) 50%, rgba(0, 0, 0, 0.95) 100%);
    padding: 1rem 2rem;
    border-bottom: 2px solid #00ff41;
    box-shadow: 0 4px 15px rgba(0, 255, 65, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Exo 2', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #00ff41;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.8), 0 0 20px rgba(0, 255, 65, 0.4);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-icon {
    font-size: 2.2rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
}

nav a {
    color: #b0b0b0;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 0.6rem 1.2rem;
    border: 1px solid transparent;
}

nav a:hover {
    color: #00ff41;
    border: 1px solid #00ff41;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: #00ff41;
    transition: all 0.3s ease;
}

main {
    max-width: 1500px;
    margin: 0 auto;
    padding: 2rem;
}

.hero {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(0, 255, 65, 0.05);
    border: 1px solid #00ff41;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.1), transparent);
    animation: scan 3s infinite;
}

@keyframes scan {
    0% { left: -100%; }
    100% { left: 100%; }
}

h1 {
    font-family: 'Exo 2', sans-serif;
    font-size: 3.5rem;
    color: #00ff41;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-weight: 900;
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.8), 0 0 30px rgba(0, 255, 65, 0.4);
}

h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 2.2rem;
    color: #00ff41;
    margin: 2.5rem 0 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.6rem;
    color: #00ff41;
    margin: 1.5rem 0 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.notice-box {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff3333;
    padding: 2rem;
    margin: 2.5rem 0;
    position: relative;
}

.notice-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff3333, transparent);
}

.notice-box h3 {
    color: #ff3333;
    text-align: center;
    margin-top: 0;
    font-size: 1.8rem;
}

.notice-box ul {
    list-style: none;
    padding: 1.5rem 0;
}

.notice-box li {
    padding: 1rem 1.5rem;
    margin: 0.8rem 0;
    background: rgba(0, 0, 0, 0.5);
    border-left: 3px solid #ff3333;
    font-size: 1rem;
}

.notice-box li::before {
    content: '⚠ ';
    margin-right: 0.5rem;
    color: #ff3333;
}

.content-section {
    background: rgba(0, 255, 65, 0.03);
    padding: 2.5rem;
    margin: 2rem 0;
    border-left: 3px solid #00ff41;
    border-right: 1px solid rgba(0, 255, 65, 0.2);
}

.content-section p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
}

.game-container {
    width: 100%;
    max-width: 1000px;
    margin: 3rem auto;
    background: rgba(0, 0, 0, 0.8);
    padding: 1.5rem;
    border: 2px solid #00ff41;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.3);
}

.game-container iframe {
    width: 100%;
    height: 650px;
    border: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.feature-card {
    background: rgba(0, 255, 65, 0.05);
    padding: 2rem;
    border: 1px solid #00ff41;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(0, 255, 65, 0.1);
    transition: width 0.3s ease;
}

.feature-card:hover::before {
    width: 100%;
}

.feature-card:hover {
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
}

.feature-card h3 {
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.feature-card p {
    position: relative;
    z-index: 1;
}

footer {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 40, 20, 0.95) 50%, rgba(0, 0, 0, 0.95) 100%);
    padding: 2.5rem 2rem;
    margin-top: 4rem;
    border-top: 2px solid #00ff41;
    box-shadow: 0 -4px 15px rgba(0, 255, 65, 0.3);
}

.footer-content {
    max-width: 1500px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00ff41;
}

.responsible-gaming {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(0, 255, 65, 0.03);
    border: 1px solid rgba(0, 255, 65, 0.3);
}

.responsible-gaming h3 {
    margin-top: 0;
}

.responsible-gaming p {
    color: #b0b0b0;
    margin: 1rem 0;
}

.responsible-gaming-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.responsible-gaming-links a {
    color: #00ff41;
    text-decoration: none;
    font-size: 0.95rem;
}

.responsible-gaming-links a:hover {
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.8);
}

footer > .footer-content > p {
    color: #666;
    margin-top: 2rem;
    font-size: 0.85rem;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #0d0d0d;
    padding: 3rem 2.5rem;
    max-width: 500px;
    text-align: center;
    border: 2px solid #00ff41;
    box-shadow: 0 0 40px rgba(0, 255, 65, 0.5);
}

.modal-content h2 {
    font-family: 'Exo 2', sans-serif;
    color: #00ff41;
    margin-top: 0;
    font-size: 2rem;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.8);
}

.modal-content p {
    font-size: 1.05rem;
    margin: 1.5rem 0;
    color: #e0e0e0;
}

.modal-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.modal-buttons button {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: 'Exo 2', sans-serif;
    border: 2px solid;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-yes {
    background: transparent;
    color: #00ff41;
    border-color: #00ff41;
}

.btn-yes:hover {
    background: #00ff41;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.6);
}

.btn-no {
    background: transparent;
    color: #ff3333;
    border-color: #ff3333;
}

.btn-no:hover {
    background: #ff3333;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 51, 51, 0.6);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 68px;
        left: -100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        transition: left 0.3s ease;
        padding: 2rem;
        border-bottom: 2px solid #00ff41;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    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.4rem;
        letter-spacing: 2px;
    }

    .hero {
        padding: 2rem 1.5rem;
    }

    .content-section {
        padding: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 1rem;
        padding: 2rem;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .game-container {
        padding: 1rem;
    }

    .game-container iframe {
        height: 500px;
    }

    footer {
        padding: 2rem 1.5rem;
    }
}
