@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;800&family=Righteous&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0d1117;
    color: #c9d1d9;
    line-height: 1.75;
    min-height: 100vh;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 25px;
}

/* Header */
header {
    background: #161b22;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 255, 157, 0.15);
    border-bottom: 2px solid #00ff9d;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 25px;
}

.logo {
    font-family: 'Righteous', cursive;
    font-size: 2.4rem;
    font-weight: 400;
    color: #00ff9d;
    text-decoration: none;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-shadow: 0 0 20px rgba(0, 255, 157, 0.5);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00ff9d, #00cc7d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 0 25px rgba(0, 255, 157, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 25px rgba(0, 255, 157, 0.4);
    }
    50% {
        box-shadow: 0 0 35px rgba(0, 255, 157, 0.6);
    }
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul li a {
    color: #8b949e;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 5px;
    position: relative;
}

nav ul li a:hover {
    color: #00ff9d;
    background: rgba(0, 255, 157, 0.1);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #00ff9d;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0d1117, #161b22, #21262d);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 157, 0.05), transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Righteous', cursive;
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #00ff9d;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(0, 255, 157, 0.5);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
}

.content-section:nth-child(even) {
    background: #161b22;
}

.content-section h2 {
    font-family: 'Righteous', cursive;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #00ff9d;
    text-align: center;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-box {
    background: #161b22;
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 255, 157, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 157, 0.1), transparent);
    transition: left 0.6s ease;
}

.info-box:hover::before {
    left: 100%;
}

.info-box:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 157, 0.5);
    box-shadow: 0 10px 40px rgba(0, 255, 157, 0.2);
}

.info-box h3 {
    font-family: 'Righteous', cursive;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #00ff9d;
}

.info-box p {
    font-size: 1rem;
    line-height: 1.8;
    color: #8b949e;
}

/* Attention Box */
.attention-box {
    background: linear-gradient(135deg, #161b22, #21262d);
    border: 2px solid #00ff9d;
    border-radius: 15px;
    padding: 2.5rem;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 255, 157, 0.15);
}

.attention-box h3 {
    font-family: 'Righteous', cursive;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #00ff9d;
}

.attention-box ul {
    list-style: none;
    font-size: 1.15rem;
    line-height: 2.2;
}

.attention-box ul li::before {
    content: '→ ';
    color: #00ff9d;
    font-weight: bold;
    margin-right: 10px;
}

/* Game Container */
.game-box {
    background: #161b22;
    border: 2px solid #00ff9d;
    border-radius: 15px;
    padding: 2rem;
    margin: 3rem 0;
    box-shadow: 0 10px 40px rgba(0, 255, 157, 0.15);
}

.game-box iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 10px;
}

/* Footer */
footer {
    background: #161b22;
    padding: 3.5rem 0 1.5rem;
    margin-top: 4rem;
    border-top: 2px solid #00ff9d;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-block h4 {
    font-family: 'Righteous', cursive;
    color: #00ff9d;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
}

.footer-block ul {
    list-style: none;
}

.footer-block ul li {
    margin: 0.7rem 0;
}

.footer-block a {
    color: #8b949e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-block a:hover {
    color: #00ff9d;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 157, 0.2);
    color: #6e7681;
    font-size: 0.95rem;
}

/* Age Verification Modal */
.age-modal {
    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: 9999;
}

.age-modal-content {
    background: linear-gradient(135deg, #161b22, #21262d);
    padding: 3.5rem;
    border: 2px solid #00ff9d;
    border-radius: 15px;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 20px 60px rgba(0, 255, 157, 0.3);
}

.age-modal-content h2 {
    font-family: 'Righteous', cursive;
    color: #00ff9d;
    margin-bottom: 1.5rem;
    font-size: 2.3rem;
}

.age-modal-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.9;
    color: #8b949e;
}

.age-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-btn {
    padding: 1.2rem 3rem;
    border: 2px solid #00ff9d;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.age-btn.yes {
    background: #00ff9d;
    color: #0d1117;
}

.age-btn.yes:hover {
    background: #00cc7d;
    transform: scale(1.05);
    box-shadow: 0 5px 25px rgba(0, 255, 157, 0.4);
}

.age-btn.no {
    background: transparent;
    color: #00ff9d;
}

.age-btn.no:hover {
    background: rgba(0, 255, 157, 0.1);
}

.hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: #161b22;
        width: 100%;
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
        border-bottom: 2px solid #00ff9d;
    }

    nav ul.active {
        left: 0;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.15rem;
    }

    .logo {
        font-size: 1.8rem;
    }

    .logo-icon {
        width: 42px;
        height: 42px;
        font-size: 1.5rem;
    }

    .content-section h2 {
        font-size: 2.3rem;
    }

    .game-box iframe {
        height: 500px;
    }

    .age-modal-content {
        margin: 1rem;
        padding: 2.5rem;
    }

    .age-buttons {
        flex-direction: column;
    }

    .age-btn {
        width: 100%;
    }
}
