/* Vipersor CSS - Neon Green Theme */

:root {
    --primary-color: #39ff14;
    --secondary-color: #32cd32;
    --accent-color: #7fff00;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: #1a1a1a;
    --text-color: #e0e0e0;
    --text-muted: #909090;
    --border-color: #2a2a2a;
    --neon-glow: rgba(57, 255, 20, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
}

/* Header */
.site-header {
    background-color: var(--darker-bg);
    border-bottom: 2px solid var(--primary-color);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 0 20px var(--neon-glow);
}

.header-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-icon {
    font-size: 2rem;
}

.brand-title {
    font-family: 'Audiowide', cursive;
    font-size: 2rem;
    color: var(--primary-color);
    text-shadow: 0 0 15px var(--neon-glow);
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 2px solid var(--primary-color);
    padding: 8px;
    border-radius: 5px;
    cursor: pointer;
}

.menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    box-shadow: 0 0 8px var(--neon-glow);
}

.site-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--dark-bg);
    background-color: var(--primary-color);
    box-shadow: 0 0 15px var(--neon-glow);
}

/* Banner */
.banner-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    padding: 4rem 2rem;
    text-align: center;
}

.banner-title {
    font-family: 'Audiowide', cursive;
    font-size: 3.2rem;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

.banner-text {
    font-size: 1.2rem;
    color: var(--darker-bg);
    max-width: 900px;
    margin: 0 auto;
}

/* Play Header */
.play-header {
    background-color: var(--card-bg);
    padding: 3rem 2rem;
    border-bottom: 2px solid var(--primary-color);
    text-align: center;
}

.play-title {
    font-family: 'Audiowide', cursive;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.play-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Page Container */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.main-column {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.sidebar-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Content Section */
.content-section {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: 10px;
    border: 2px solid var(--border-color);
}

.section-heading {
    font-family: 'Audiowide', cursive;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

/* Game Section */
.game-section {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: 10px;
    border: 2px solid var(--border-color);
}

.game-embed-box {
    background-color: var(--darker-bg);
    border-radius: 10px;
    overflow: hidden;
    margin: 2rem 0;
    border: 2px solid var(--primary-color);
}

.game-embed-box.full {
    margin: 0 0 2rem 0;
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
}

.game-frame.full {
    height: 750px;
}

.game-alert {
    background-color: rgba(57, 255, 20, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

/* Features */
.features-area {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: 10px;
    border: 2px solid var(--border-color);
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-box {
    background-color: var(--darker-bg);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px var(--neon-glow);
}

.feature-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-box h3 {
    font-family: 'Audiowide', cursive;
    color: var(--accent-color);
    margin-bottom: 0.8rem;
}

/* Info Panel */
.info-panel {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px var(--neon-glow);
}

.panel-title {
    font-family: 'Audiowide', cursive;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-text h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.info-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Responsibility Panel */
.responsibility-panel {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--border-color);
}

/* Play Info Section */
.play-info-section,
.play-reminder-section {
    margin: 3rem 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--border-color);
}

.info-card h3 {
    font-family: 'Audiowide', cursive;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.reminder-box {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px var(--neon-glow);
}

.reminder-list {
    list-style: none;
    margin-top: 1.5rem;
}

.reminder-list li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
}

.reminder-list li::before {
    content: '🐍';
    position: absolute;
    left: 0;
}

/* Legal Container */
.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.legal-heading {
    font-family: 'Audiowide', cursive;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-updated {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-body section {
    margin-bottom: 2.5rem;
}

.legal-body h2 {
    font-family: 'Audiowide', cursive;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.legal-body p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-body a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-body a:hover {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background-color: var(--darker-bg);
    border-top: 2px solid var(--primary-color);
    padding: 3rem 2rem 1.5rem;
    margin-top: auto;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Audiowide', cursive;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-col h4 {
    font-family: 'Audiowide', cursive;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* Age Modal */
.age-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
}

.age-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.age-modal-wrapper {
    background-color: var(--card-bg);
    padding: 3rem;
    border-radius: 15px;
    border: 3px solid var(--primary-color);
    text-align: center;
    max-width: 500px;
    margin: 0 20px;
    box-shadow: 0 0 40px var(--neon-glow);
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.age-modal-wrapper h2 {
    font-family: 'Audiowide', cursive;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.age-modal-wrapper p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.modal-sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.modal-btn-yes,
.modal-btn-no {
    flex: 1;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Quicksand', sans-serif;
}

.modal-btn-yes {
    background-color: var(--primary-color);
    color: var(--dark-bg);
}

.modal-btn-yes:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--neon-glow);
}

.modal-btn-no {
    background-color: #ff1744;
    color: white;
}

.modal-btn-no:hover {
    background-color: #c41730;
    transform: scale(1.05);
}

/* Mobile */
@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }

    .site-nav {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        background-color: var(--card-bg);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        border-bottom: 2px solid var(--primary-color);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.9);
    }

    .site-nav.active {
        left: 0;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .banner-title {
        font-size: 2.5rem;
    }

    .play-title {
        font-size: 2.2rem;
    }

    .section-heading {
        font-size: 1.8rem;
    }

    .game-frame,
    .game-frame.full {
        height: 450px;
    }

    .feature-list,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .modal-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .brand-title {
        font-size: 1.6rem;
    }

    .banner-title {
        font-size: 2rem;
    }

    .game-frame,
    .game-frame.full {
        height: 350px;
    }
}
