/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --neon-green: #39ff14;
    --neon-green-dark: #2acc0f;
    --tan: #d2b48c;
    --tan-dark: #b89a6f;
    --blue: #00d4ff;
    --blue-dark: #00a8cc;
    --primary-color: var(--neon-green);
    --primary-dark: var(--neon-green-dark);
    --secondary-color: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --bg-card-hover: #252525;
    --border-color: #333333;
    --gradient-1: linear-gradient(135deg, var(--neon-green) 0%, var(--blue) 50%, var(--tan) 100%);
    --gradient-2: linear-gradient(135deg, var(--blue) 0%, var(--neon-green) 100%);
    --gradient-3: linear-gradient(135deg, var(--tan) 0%, var(--neon-green) 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --glow-green: 0 0 20px rgba(57, 255, 20, 0.3);
    --glow-blue: 0 0 20px rgba(0, 212, 255, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand h2 {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-green), var(--blue));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(57, 255, 20, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 50% 20%, rgba(210, 180, 140, 0.06) 0%, transparent 50%),
                var(--bg-dark);
    z-index: -1;
    overflow: hidden;
}

.hero-decorative-image {
    position: absolute;
    right: -5%;
    top: 0;
    bottom: 0;
    width: 55%;
    max-width: 900px;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.2;
    filter: grayscale(40%) brightness(0.7) contrast(1.1);
    transform: scale(1.05);
    z-index: 0;
    pointer-events: none;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
    animation: gridMove 20s linear infinite;
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 70%;
    background: linear-gradient(to right, var(--bg-dark) 0%, rgba(10, 10, 10, 0.85) 40%, rgba(10, 10, 10, 0.5) 70%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}


@keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(40px); }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.hero-image-wrapper {
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
}

.hero-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid transparent;
    background: var(--gradient-1);
    padding: 4px;
    box-shadow: var(--glow-green), var(--glow-blue);
    transition: all 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.5), 0 0 30px rgba(0, 212, 255, 0.5);
}

.hero-image-placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--glow-green), var(--glow-blue);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--neon-green);
    color: var(--bg-dark);
    font-weight: 700;
}

.btn-primary:hover {
    background: var(--neon-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--glow-green), var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--blue);
}

.btn-secondary:hover {
    border-color: var(--neon-green);
    color: var(--neon-green);
    transform: translateY(-2px);
    box-shadow: var(--glow-blue);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* About Section */
.about {
    background: var(--bg-dark);
}

.about-content {
    display: grid;
    gap: 3rem;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: var(--neon-green);
    box-shadow: var(--glow-green), var(--shadow-lg);
}

.feature-card:visited {
    color: inherit;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Memorial Section */
.memorial {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.memorial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(57, 255, 20, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.memorial-image {
    margin: 2rem auto;
    max-width: 500px;
    text-align: center;
}

.memorial-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.memorial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 3;
}

.memorial-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
}

.memorial-text p {
    margin-bottom: 1.5rem;
}

.memorial-quote {
    margin-top: 3rem;
    padding: 2rem;
    border-left: 4px solid var(--neon-green);
    background: rgba(57, 255, 20, 0.05);
    border-radius: 8px;
    position: relative;
}

.memorial-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--neon-green);
    opacity: 0.3;
    font-family: serif;
}

.memorial-quote p {
    font-style: italic;
    color: var(--text-primary);
    font-size: 1.2rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

.memorial-icon {
    font-size: 4rem;
    margin-top: 3rem;
    opacity: 0.6;
    animation: flicker 3s infinite;
}

.memorial-image {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    opacity: 0.85;
}

.memorial-image img {
    max-width: 180px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.15);
    transition: opacity 0.3s ease;
}

.memorial-image img:hover {
    opacity: 1;
}

@keyframes flicker {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.8; }
}

/* Fan Art Section */
.fanart {
    background: var(--bg-dark);
}

.fanart-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.fanart-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    min-height: 200px;
}

.fanart-item:hover {
    transform: translateY(-5px);
    border-color: var(--neon-green);
    box-shadow: var(--glow-green), var(--shadow-lg);
}

.fanart-item img {
    max-width: 100%;
    max-height: 400px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.fanart-item:hover img {
    transform: scale(1.02);
}

.fanart-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.lightbox-title {
    color: var(--text-primary);
    margin-top: 1rem;
    font-size: 1.1rem;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10001;
}

.lightbox-close:hover {
    background: var(--neon-green);
    color: var(--bg-dark);
    box-shadow: var(--glow-green);
    transform: scale(1.1);
}

/* Contact Section */
.contact {
    background: var(--bg-dark);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-link:hover {
    transform: translateY(-3px);
    border-color: var(--neon-green);
    background: var(--bg-card-hover);
    box-shadow: var(--glow-green), var(--shadow-md);
}

.social-link.youtube {
    color: var(--neon-green);
}

.social-link.youtube:hover {
    background: rgba(57, 255, 20, 0.1);
    box-shadow: var(--glow-green), var(--shadow-md);
}

.social-link.reddit {
    color: var(--blue);
}

.social-link.reddit:hover {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: var(--glow-blue), var(--shadow-md);
}

.contact-info {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-email {
    margin-top: 1.5rem;
}

.email-link {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--neon-green);
    text-decoration: none;
    padding: 1rem 2rem;
    border: 2px solid var(--neon-green);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.email-link:hover {
    background: var(--neon-green);
    color: var(--bg-dark);
    box-shadow: var(--glow-green);
    transform: translateY(-2px);
}

.contact-box {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.contact-box:hover {
    border-color: var(--neon-green);
    box-shadow: var(--glow-green), var(--shadow-md);
    transform: translateY(-3px);
}

.contact-box h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.contact-box a {
    color: var(--neon-green);
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-box a:hover {
    color: var(--text-primary);
}


/* Footer */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-card);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-image {
        width: 150px;
        height: 150px;
    }

    .hero-image-placeholder {
        width: 150px;
        height: 150px;
    }

    .hero-decorative-image {
        opacity: 0.1;
        width: 100%;
        right: 0;
    }

    .hero-background::after {
        width: 80%;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .carousel-btn-prev {
        left: 10px;
    }

    .carousel-btn-next {
        right: 10px;
    }

    .carousel-container {
        padding: 0 60px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

