@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;800&family=Roboto:wght@300;400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.7;
    min-height: 100vh;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 25px;
}

/* Header */
header {
    background: linear-gradient(90deg, #1a0033, #330066, #1a0033);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #9933ff;
    box-shadow: 0 5px 25px rgba(153, 51, 255, 0.4);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 25px;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #9933ff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-shadow: 0 0 20px rgba(153, 51, 255, 0.8);
}

.logo-symbol {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #9933ff, #cc66ff);
    border: 3px solid #9933ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transform: rotate(45deg);
    box-shadow: 0 0 20px rgba(153, 51, 255, 0.6);
}

.logo-symbol span {
    transform: rotate(-45deg);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav ul li a {
    color: #cccccc;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

nav ul li a:hover {
    color: #9933ff;
    border-bottom: 2px solid #9933ff;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #9933ff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a0033 0%, #330066 50%, #4d0099 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(153, 51, 255, 0.03) 2px,
        rgba(153, 51, 255, 0.03) 4px
    );
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(153, 51, 255, 0.8);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    color: #cccccc;
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
    background: #0a0a0a;
}

.content-section:nth-child(even) {
    background: #0f0f0f;
}

.content-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #9933ff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(153, 51, 255, 0.6);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-box {
    background: linear-gradient(135deg, #1a0033, #2d0052);
    padding: 2.5rem;
    border: 2px solid #9933ff;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(153, 51, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.feature-box:hover::before {
    left: 100%;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(153, 51, 255, 0.4);
    border-color: #cc66ff;
}

.feature-box h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #cc66ff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-box p {
    font-size: 1rem;
    line-height: 1.8;
    color: #cccccc;
}

/* Alert Box */
.alert-box {
    background: linear-gradient(135deg, #330066, #4d0099);
    border: 3px solid #9933ff;
    border-radius: 8px;
    padding: 2.5rem;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(153, 51, 255, 0.3);
}

.alert-box h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
}

.alert-box ul {
    list-style: none;
    font-size: 1.15rem;
    line-height: 2.2;
}

.alert-box ul li::before {
    content: '▶ ';
    color: #9933ff;
    font-weight: bold;
    margin-right: 10px;
}

/* Game Container */
.game-wrapper {
    background: #1a0033;
    border: 3px solid #9933ff;
    border-radius: 8px;
    padding: 2rem;
    margin: 3rem 0;
    box-shadow: 0 10px 40px rgba(153, 51, 255, 0.3);
}

.game-wrapper iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 5px;
}

/* Footer */
footer {
    background: linear-gradient(90deg, #1a0033, #330066, #1a0033);
    padding: 3.5rem 0 1.5rem;
    margin-top: 4rem;
    border-top: 3px solid #9933ff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-block h4 {
    font-family: 'Orbitron', sans-serif;
    color: #9933ff;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-block ul {
    list-style: none;
}

.footer-block ul li {
    margin: 0.7rem 0;
}

.footer-block a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-block a:hover {
    color: #9933ff;
}

.footer-base {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid #9933ff;
    color: #999999;
    font-size: 0.9rem;
    font-family: 'Orbitron', sans-serif;
}

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-modal-content {
    background: linear-gradient(135deg, #1a0033, #330066);
    padding: 3.5rem;
    border: 3px solid #9933ff;
    border-radius: 8px;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 20px 60px rgba(153, 51, 255, 0.6);
}

.age-modal-content h2 {
    font-family: 'Orbitron', sans-serif;
    color: #9933ff;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    text-transform: uppercase;
}

.age-modal-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.9;
    color: #cccccc;
}

.age-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-btn {
    padding: 1.2rem 3rem;
    border: 2px solid #9933ff;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
}

.age-btn.yes {
    background: #9933ff;
    color: #ffffff;
}

.age-btn.yes:hover {
    background: #cc66ff;
    transform: scale(1.08);
    box-shadow: 0 5px 20px rgba(153, 51, 255, 0.5);
}

.age-btn.no {
    background: transparent;
    color: #9933ff;
}

.age-btn.no:hover {
    background: rgba(153, 51, 255, 0.2);
}

.hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav ul {
        position: fixed;
        top: 75px;
        left: -100%;
        flex-direction: column;
        background: linear-gradient(180deg, #1a0033, #330066);
        width: 100%;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
        border-bottom: 3px solid #9933ff;
    }

    nav ul.active {
        left: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .logo {
        font-size: 1.6rem;
    }

    .logo-symbol {
        width: 38px;
        height: 38px;
        font-size: 1.3rem;
    }

    .content-section h2 {
        font-size: 2.2rem;
    }

    .game-wrapper iframe {
        height: 500px;
    }

    .age-modal-content {
        margin: 1rem;
        padding: 2.5rem;
    }

    .age-buttons {
        flex-direction: column;
    }

    .age-btn {
        width: 100%;
    }
}
