@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&family=Russo+One&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cobra-green: #00ff41;
    --cobra-lime: #39ff14;
    --cobra-dark: #0d1b0d;
    --cobra-darker: #050a05;
    --cobra-gray: #1a2a1a;
    --cobra-light: #e0ffe0;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #0d1b0d 0%, #050a05 100%);
    color: var(--cobra-light);
    line-height: 1.7;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0, 255, 65, 0.02) 10px, rgba(0, 255, 65, 0.02) 20px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(0, 255, 65, 0.02) 10px, rgba(0, 255, 65, 0.02) 20px);
    pointer-events: none;
    animation: snakeSkin 20s linear infinite;
}

@keyframes snakeSkin {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 100px 100px, -100px -100px; }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header Styles */
header {
    background: rgba(13, 27, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--cobra-green);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 255, 65, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Russo One', sans-serif;
    font-size: 2.3rem;
    font-weight: 400;
    color: var(--cobra-green);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.7), 0 0 20px rgba(0, 255, 65, 0.5);
}

.nav-toggle {
    display: none;
    background: var(--cobra-green);
    border: none;
    color: var(--cobra-dark);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: bold;
}

.nav-toggle:hover {
    box-shadow: 0 0 15px var(--cobra-green);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1rem;
}

nav ul li a {
    color: var(--cobra-light);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.95rem;
    padding: 0.7rem 1.5rem;
    background: rgba(0, 255, 65, 0.1);
    border: 2px solid var(--cobra-green);
    border-radius: 4px;
    transition: all 0.3s;
    display: inline-block;
    letter-spacing: 1px;
}

nav ul li a:hover {
    background: var(--cobra-green);
    color: var(--cobra-dark);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 5rem 0;
    background: radial-gradient(ellipse at center, rgba(0, 255, 65, 0.1) 0%, transparent 70%);
}

.hero h1 {
    font-family: 'Russo One', sans-serif;
    font-size: 5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--cobra-green);
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.8), 0 0 40px rgba(0, 255, 65, 0.5);
    text-transform: uppercase;
    letter-spacing: 6px;
    animation: cobraGlow 2s ease-in-out infinite alternate;
}

@keyframes cobraGlow {
    from { text-shadow: 0 0 20px rgba(0, 255, 65, 0.6), 0 0 40px rgba(0, 255, 65, 0.3); }
    to { text-shadow: 0 0 30px rgba(0, 255, 65, 1), 0 0 60px rgba(0, 255, 65, 0.6); }
}

.hero p {
    font-size: 1.4rem;
    color: var(--cobra-lime);
    max-width: 900px;
    margin: 0 auto 2rem;
    font-weight: 400;
}

/* Notice Cards */
.notices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.notice-card {
    background: rgba(26, 42, 26, 0.6);
    border: 2px solid var(--cobra-green);
    border-radius: 8px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.notice-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--cobra-green), transparent, var(--cobra-green));
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.notice-card:hover::before {
    opacity: 0.5;
}

.notice-card:hover {
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.4);
    transform: translateY(-8px) scale(1.02);
}

.notice-card h3 {
    color: var(--cobra-green);
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.notice-card p {
    color: var(--cobra-light);
    font-size: 1.05rem;
    font-weight: 400;
}

/* Game Section */
.game-section {
    margin: 5rem 0;
    text-align: center;
}

.game-section h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 3rem;
    color: var(--cobra-green);
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.7);
    text-transform: uppercase;
    letter-spacing: 4px;
}

.game-container {
    background: rgba(26, 42, 26, 0.6);
    border: 3px solid var(--cobra-green);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 0 40px rgba(0, 255, 65, 0.3);
    margin: 2rem auto;
    max-width: 950px;
}

.game-container iframe {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 8px;
}

/* Content Section */
.content-section {
    margin: 5rem 0;
    padding: 4rem;
    background: rgba(26, 42, 26, 0.5);
    border-radius: 12px;
    border: 2px solid var(--cobra-green);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.2);
}

.content-section h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--cobra-green);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
    text-transform: uppercase;
}

.content-section p {
    margin-bottom: 1.5rem;
    color: var(--cobra-light);
    font-size: 1.1rem;
    font-weight: 400;
}

.content-section ul {
    list-style: none;
    margin: 2rem 0;
}

.content-section ul li {
    padding: 1.2rem;
    margin: 1rem 0;
    background: rgba(0, 255, 65, 0.1);
    border-left: 4px solid var(--cobra-green);
    border-radius: 4px;
    color: var(--cobra-light);
}

.content-section ul li strong {
    color: var(--cobra-lime);
    font-weight: 700;
}

/* Footer */
footer {
    background: rgba(13, 27, 13, 0.95);
    border-top: 3px solid var(--cobra-green);
    padding: 4rem 0 2rem;
    margin-top: 6rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--cobra-green);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 0.8rem 0;
}

.footer-section ul li a {
    color: var(--cobra-light);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-section ul li a:hover {
    color: var(--cobra-green);
    padding-left: 10px;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid var(--cobra-green);
    color: var(--cobra-light);
    font-size: 0.95rem;
}

/* Age Verification Modal */
.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-content {
    background: linear-gradient(135deg, #0d1b0d 0%, #050a05 100%);
    border: 3px solid var(--cobra-green);
    border-radius: 12px;
    padding: 4rem;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 0 60px rgba(0, 255, 65, 0.6);
    animation: modalAppear 0.4s ease-out;
}

@keyframes modalAppear {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.age-modal-content h2 {
    font-family: 'Russo One', sans-serif;
    color: var(--cobra-green);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.7);
    text-transform: uppercase;
}

.age-modal-content p {
    color: var(--cobra-light);
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
}

.age-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.age-buttons button {
    padding: 1.2rem 3rem;
    font-size: 1.15rem;
    font-weight: 700;
    border: 2px solid;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    transition: all 0.3s;
    letter-spacing: 2px;
}

.btn-yes {
    background: var(--cobra-green);
    color: var(--cobra-dark);
    border-color: var(--cobra-green);
}

.btn-yes:hover {
    box-shadow: 0 0 25px rgba(0, 255, 65, 0.8);
    transform: scale(1.05);
}

.btn-no {
    background: transparent;
    color: #ff4444;
    border-color: #ff4444;
}

.btn-no:hover {
    background: #ff4444;
    color: #fff;
    transform: scale(1.05);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 75px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: rgba(13, 27, 13, 0.98);
        transition: right 0.3s;
        padding: 2rem;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    nav ul li a {
        display: block;
        padding: 1.2rem;
        font-size: 1.1rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.15rem;
    }

    .notices {
        grid-template-columns: 1fr;
    }

    .game-container iframe {
        height: 450px;
    }

    .age-modal-content {
        margin: 1.5rem;
        padding: 2.5rem;
    }

    .age-buttons {
        flex-direction: column;
    }

    .age-buttons button {
        width: 100%;
    }

    .content-section {
        padding: 2.5rem;
    }
}