:root {
    --primary-green: #16a34a;
    --primary-emerald: #10b981;
    --dark-bg: #0a0f0a;
    --dark-secondary: #1a2e1a;
    --dark-tertiary: #2d4a2d;
    --accent-lime: #84cc16;
    --accent-teal: #14b8a6;
    --gradient-1: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    --gradient-2: linear-gradient(135deg, #86efac 0%, #4ade80 100%);
    --gradient-3: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
    --text-primary: #ffffff;
    --text-secondary: #d4f5d4;
    --text-muted: #9ca3af;
    --glow-green: 0 0 30px rgba(34, 197, 94, 0.5);
    --glow-emerald: 0 0 30px rgba(16, 185, 129, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M16 4 L12 12 L4 12 L10 18 L8 26 L16 21 L24 26 L22 18 L28 12 L20 12 Z" fill="%2316a34a" opacity="0.8"/></svg>') 16 16, auto;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(132, 204, 22, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-secondary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary-green), var(--primary-emerald));
    border-radius: 10px;
}

/* Leaf Cursor Effect */
.cursor-sparkle {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, var(--accent-lime) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s;
    filter: blur(2px);
}

/* Floating Leaves Animation */
@keyframes leafFloat {
    0% { transform: translateY(-100px) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
}

.floating-leaf {
    position: fixed;
    color: var(--primary-green);
    font-size: 20px;
    animation: leafFloat 15s linear infinite;
    pointer-events: none;
    z-index: 1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(22, 163, 74, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.logo-text {
    background: linear-gradient(45deg, var(--primary-green), var(--primary-emerald));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Fredoka', cursive;
}

.logo-emoji {
    animation: bounce 2s infinite;
}

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

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

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-emerald);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: 
        linear-gradient(180deg, rgba(10, 15, 10, 0.9) 0%, rgba(10, 15, 10, 0.7) 100%),
        url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=1920&h=1080&fit=crop') center/cover;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.animated-bg {
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        var(--dark-bg) 0%, 
        rgba(22, 163, 74, 0.1) 25%, 
        rgba(16, 185, 129, 0.1) 50%, 
        rgba(132, 204, 22, 0.1) 75%, 
        var(--dark-bg) 100%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -50%) rotate(180deg); }
}

.glitch-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(22, 163, 74, 0.03) 2px,
        rgba(22, 163, 74, 0.03) 4px
    );
    animation: glitchLines 8s linear infinite;
}

@keyframes glitchLines {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

.hero-content {
    text-align: center;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.glitch {
    font-size: 5rem;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    font-family: 'Fredoka', cursive;
    background: linear-gradient(45deg, var(--primary-green), var(--primary-emerald), var(--accent-lime));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(16, 185, 129, 0.5);
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: linear-gradient(45deg, var(--primary-green), var(--primary-emerald));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glitch::before {
    animation: glitch1 0.5s infinite;
    z-index: -1;
}

.glitch::after {
    animation: glitch2 0.5s infinite;
    z-index: -2;
}

@keyframes glitch1 {
    0%, 100% { clip-path: inset(0 0 0 0); }
    20% { clip-path: inset(20% 0 30% 0); transform: translate(-2px, 2px); }
    40% { clip-path: inset(50% 0 20% 0); transform: translate(2px, -2px); }
    60% { clip-path: inset(10% 0 60% 0); transform: translate(-1px, 1px); }
    80% { clip-path: inset(80% 0 5% 0); transform: translate(1px, -1px); }
}

@keyframes glitch2 {
    0%, 100% { clip-path: inset(0 0 0 0); }
    20% { clip-path: inset(60% 0 10% 0); transform: translate(2px, -2px); }
    40% { clip-path: inset(20% 0 40% 0); transform: translate(-2px, 2px); }
    60% { clip-path: inset(30% 0 50% 0); transform: translate(1px, -1px); }
    80% { clip-path: inset(10% 0 70% 0); transform: translate(-1px, 1px); }
}

.tagline {
    font-size: 1.5rem;
    margin: 1rem 0 2rem;
    color: var(--text-secondary);
    font-family: 'Cute Font', cursive;
    font-size: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

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

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-emerald));
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.5);
}

.btn-secondary {
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary-emerald);
    border: 2px solid var(--primary-emerald);
}

.btn-secondary:hover {
    background: var(--primary-emerald);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.5);
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(16, 185, 129, 0.3);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    transform: translateY(-5px) rotate(360deg);
    border-color: var(--primary-emerald);
    background: var(--primary-emerald);
    color: white;
    box-shadow: var(--glow-emerald);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--primary-emerald);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    font-family: 'Fredoka', cursive;
}

.title-accent {
    background: linear-gradient(45deg, var(--primary-green), var(--primary-emerald));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-emoji {
    font-size: 2.5rem;
    animation: wiggle 2s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

/* About Section */
.about {
    background: 
        linear-gradient(135deg, rgba(26, 46, 26, 0.95) 0%, rgba(26, 46, 26, 0.98) 100%),
        url('https://images.unsplash.com/photo-1511497584788-876760111969?w=1920&h=600&fit=crop') center/cover;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.image-frame {
    position: relative;
    padding: 1rem;
    background: linear-gradient(45deg, var(--primary-green), var(--primary-emerald));
    border-radius: 20px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.image-frame img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.image-sparkles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: sparkle 2s linear infinite;
}

.image-sparkles span:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.image-sparkles span:nth-child(2) {
    top: 20%;
    right: 10%;
    animation-delay: 0.5s;
}

.image-sparkles span:nth-child(3) {
    bottom: 10%;
    left: 20%;
    animation-delay: 1s;
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-emerald);
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat-card {
    background: rgba(22, 163, 74, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(16, 185, 129, 0.3);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
    border-color: var(--primary-emerald);
}

.stat-card i {
    font-size: 2rem;
    color: var(--primary-emerald);
    margin-bottom: 0.5rem;
}

.stat-card h4 {
    font-size: 2rem;
    margin: 0.5rem 0;
    background: linear-gradient(45deg, var(--primary-green), var(--primary-emerald));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Streaming Section */
.streaming {
    background: 
        linear-gradient(135deg, rgba(22, 163, 74, 0.08) 0%, rgba(16, 185, 129, 0.08) 100%),
        url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1920&h=600&fit=crop') center/cover;
    background-attachment: fixed;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.schedule-card {
    background: var(--dark-secondary);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.schedule-card:hover {
    border-color: var(--primary-emerald);
    transform: translateY(-5px);
    box-shadow: var(--glow-emerald);
}

.schedule-card.highlight {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(22, 163, 74, 0.1) 100%);
    border-color: var(--primary-emerald);
}

.day-label {
    font-weight: 600;
    color: var(--primary-emerald);
    margin-bottom: 0.5rem;
}

.time {
    color: var(--text-primary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.game-type {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.platform-cards {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.platform-card {
    padding: 1rem 2rem;
    background: var(--dark-secondary);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.platform-card:hover {
    transform: translateY(-5px);
}

.platform-card.twitch:hover {
    border-color: #9146ff;
    box-shadow: 0 5px 20px rgba(145, 70, 255, 0.3);
}

.platform-card.youtube:hover {
    border-color: #ff0000;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
}

.platform-card.kick:hover {
    border-color: #53fc18;
    box-shadow: 0 5px 20px rgba(83, 252, 24, 0.3);
}

/* Gallery Section */
.gallery {
    background: 
        linear-gradient(180deg, rgba(26, 46, 26, 0.95) 0%, rgba(26, 46, 26, 0.98) 100%),
        url('https://images.unsplash.com/photo-1542273917363-3b1817f69a2d?w=1920&h=600&fit=crop') center/cover;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.8) 0%, rgba(16, 185, 129, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: white;
}

/* Support Section */
.support {
    background: 
        linear-gradient(135deg, rgba(22, 163, 74, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%),
        url('https://images.unsplash.com/photo-1518495973542-4542c06a5843?w=1920&h=600&fit=crop') center/cover;
    background-attachment: fixed;
}

.support-text {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.support-card {
    background: var(--dark-secondary);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
}

.support-card:hover::before {
    animation: shine 0.5s ease;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.support-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-emerald);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.support-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-emerald);
}

.support-card h3 {
    margin-bottom: 0.5rem;
}

.support-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Merch Section */
.merch {
    background: 
        linear-gradient(rgba(26, 46, 26, 0.96), rgba(26, 46, 26, 0.96)),
        url('https://images.unsplash.com/photo-1476231682828-37e571bc172f?w=1920&h=600&fit=crop') center/cover;
}

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

.merch-item {
    background: var(--dark-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.merch-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
}

.merch-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.merch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.merch-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-emerald);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.merch-item h3 {
    padding: 1rem;
    color: var(--text-primary);
}

.price {
    padding: 0 1rem;
    font-size: 1.5rem;
    color: var(--primary-emerald);
    font-weight: 600;
}

.btn-merch {
    display: block;
    margin: 1rem;
    padding: 0.8rem;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-emerald));
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s;
}

.btn-merch:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.4);
}

/* Sponsorship Section */
.sponsorship {
    background: 
        linear-gradient(135deg, rgba(22, 163, 74, 0.08) 0%, rgba(16, 185, 129, 0.08) 100%),
        url('https://images.unsplash.com/photo-1426604966848-d7adac402bff?w=1920&h=600&fit=crop') center/cover;
}

.sponsor-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.sponsor-benefits {
    list-style: none;
    margin: 2rem 0;
}

.sponsor-benefits li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.sponsor-benefits i {
    color: var(--primary-emerald);
}

.current-sponsors {
    margin-top: 2rem;
}

.sponsor-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.sponsor-logo {
    background: var(--dark-secondary);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-logo img {
    width: 100%;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.sponsor-logo:hover img {
    opacity: 1;
}

/* Forms */
.sponsor-form,
.contact-form {
    background: var(--dark-secondary);
    padding: 2rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--dark-bg);
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-emerald);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-emerald));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

/* Contact Section */
.contact {
    background: 
        linear-gradient(180deg, rgba(26, 46, 26, 0.95) 0%, rgba(26, 46, 26, 0.98) 100%),
        url('https://images.unsplash.com/photo-1419640303358-44f0d27f48e7?w=1920&h=600&fit=crop') center/cover;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--primary-emerald);
    width: 40px;
}

.contact-method h4 {
    margin-bottom: 0.2rem;
    color: var(--text-primary);
}

.contact-method p {
    color: var(--text-secondary);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    background: var(--dark-bg);
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.social-link:hover {
    transform: translateY(-5px);
    border-color: var(--primary-emerald);
}

.social-link i {
    font-size: 1.5rem;
}

/* Newsletter */
.newsletter {
    background: 
        linear-gradient(135deg, rgba(22, 163, 74, 0.9), rgba(16, 185, 129, 0.9)),
        url('https://images.unsplash.com/photo-1497250681960-ef046c08a56e?w=1920&h=400&fit=crop') center/cover;
    padding: 3rem 0;
    position: relative;
}

.newsletter-content {
    text-align: center;
}

.newsletter-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 2rem auto 0;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark-bg);
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: var(--dark-bg);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-emerald);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary-emerald);
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-emerald);
    transition: all 0.3s;
}

.footer-socials a:hover {
    background: var(--primary-emerald);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(16, 185, 129, 0.1);
    color: var(--text-muted);
}

/* Firefly Effect */
@keyframes firefly {
    0% { transform: translate(0, 0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translate(100vw, -100vh); opacity: 0; }
}

.firefly {
    position: fixed;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #84cc16 0%, transparent 70%);
    border-radius: 50%;
    box-shadow: 0 0 10px #84cc16;
    pointer-events: none;
    z-index: 2;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-emerald));
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--primary-emerald);
}

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

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--dark-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .glitch {
        font-size: 3rem;
    }
    
    .about-content,
    .sponsor-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-socials {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}