/* ===== CSS VARIABLES ===== */
:root {
    --bg-primary: #050a0d;
    --bg-secondary: #0a1218;
    --bg-tertiary: #0f1c24;
    --bg-card: #0d171f;

    --text-primary: #ffffff;
    --text-secondary: #b8c9d0;
    --text-muted: #6a8a9a;

    --accent-primary: #c8e03c;
    --accent-secondary: #1a3a4a;
    --accent-cream: #e8e0c8;
    --accent-gradient: linear-gradient(135deg, #c8e03c, #9bc02a);
    --neon-glow: 0 0 10px #c8e03c, 0 0 20px #c8e03c, 0 0 40px #c8e03c, 0 0 80px #9bc02a;
    --neon-text-shadow: 0 0 5px #c8e03c, 0 0 10px #c8e03c, 0 0 20px #c8e03c, 0 0 40px #9bc02a;

    --twitch: #9146ff;
    --youtube: #ff0000;
    --instagram: #e4405f;
    --twitter: #1da1f2;
    --tiktok: #00f2ea;
    --discord: #5865f2;

    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    --shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 30px rgba(200, 224, 60, 0.5);

    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

/* ===== CUSTOM SCROLLBAR (Neon Style) ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-secondary);
    border-radius: 4px;
    border: 1px solid var(--accent-primary);
    box-shadow: 0 0 10px rgba(200, 224, 60, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
    box-shadow: 0 0 15px rgba(200, 224, 60, 0.8);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Enhancements - Italic Speed */
h1,
h2,
h3,
.nav-logo,
.btn,
.hero-badge {
    font-style: italic;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(13, 27, 33, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

.nav-logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

.nav-toggle::before {
    top: 0;
}

.nav-toggle span {
    top: 50%;
    transform: translateY(-50%);
}

.nav-toggle::after {
    bottom: 0;
}

/* ===== HERO - ADRENALINE EDITION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 20px;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1);
}

.hero-slide.active {
    opacity: 1;
    animation: zoomEffect 8s ease-out forwards;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13, 23, 31, 0.7), rgba(13, 23, 31, 0.95));
    z-index: 2;
}

/* Speed Lines Effect */
.speed-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 2;
}

.speed-lines::before,
.speed-lines::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    animation: speedLine 2s linear infinite;
    opacity: 0.3;
}

.speed-lines::before {
    top: 20%;
    left: -100%;
    animation-delay: 0s;
}

.speed-lines::after {
    top: 60%;
    left: -100%;
    animation-delay: 1s;
}

@keyframes speedLine {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Racing Grid */
.racing-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(200, 224, 60, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 224, 60, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    z-index: 2;
}

@keyframes gridMove {
    0% {
        transform: perspective(500px) rotateX(60deg) translateY(0);
    }

    100% {
        transform: perspective(500px) rotateX(60deg) translateY(50px);
    }
}

/* Neon Glow Pulse */
.neon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 224, 60, 0.15), transparent 60%);
    animation: neonPulse 3s ease-in-out infinite;
    z-index: 2;
}

@keyframes neonPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

/* Racing Stripes */
.racing-stripes {
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.stripe {
    position: absolute;
    height: 100%;
    width: 80px;
    background: linear-gradient(180deg, transparent 0%, rgba(200, 224, 60, 0.05) 50%, transparent 100%);
    transform: skewX(-20deg);
    animation: stripeMove 8s linear infinite;
}

.stripe:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.stripe:nth-child(2) {
    left: 50%;
    animation-delay: 2s;
}

.stripe:nth-child(3) {
    left: 80%;
    animation-delay: 4s;
}

@keyframes stripeMove {
    0% {
        transform: skewX(-20deg) translateY(-100%);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: skewX(-20deg) translateY(100%);
        opacity: 0;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
    z-index: 10;
    animation: heroEntry 1.2s ease-out;
}

@keyframes heroEntry {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Big Logo */
.hero-logo-big {
    margin-bottom: 30px;
}

.logo-pulse {
    width: 180px;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 0 20px rgba(200, 224, 60, 0.5));
    animation: logoPulse 2s ease-in-out infinite, logoFloat 4s ease-in-out infinite;
}

@keyframes logoPulse {

    0%,
    100% {
        filter: drop-shadow(0 0 20px rgba(200, 224, 60, 0.5));
    }

    50% {
        filter: drop-shadow(0 0 40px rgba(200, 224, 60, 0.9)) drop-shadow(0 0 60px rgba(200, 224, 60, 0.5));
    }
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Glitch Title */
.hero-title {
    font-family: var(--font-display);
    margin-bottom: 25px;
    position: relative;
}

.hero-title .title-sub {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.hero-title .name {
    display: block;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1;
}

.neon-text {
    text-shadow: var(--neon-text-shadow);
    animation: textFlicker 4s linear infinite;
}

@keyframes textFlicker {

    0%,
    100% {
        opacity: 1;
    }

    92% {
        opacity: 1;
    }

    93% {
        opacity: 0.8;
    }

    94% {
        opacity: 1;
    }

    95% {
        opacity: 0.9;
    }

    96% {
        opacity: 1;
    }
}

/* Speed Badge */
.speed-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    background: rgba(200, 224, 60, 0.1);
    border: 2px solid var(--accent-primary);
    border-radius: var(--radius-xl);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-primary);
    letter-spacing: 2px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-glow), inset 0 0 20px rgba(200, 224, 60, 0.1);
    animation: badgePulse 2s ease-in-out infinite;
}

.speed-badge .separator {
    font-size: 1.2rem;
    animation: boltFlash 1s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: var(--shadow-glow), inset 0 0 20px rgba(200, 224, 60, 0.1);
    }

    50% {
        box-shadow: 0 0 40px rgba(200, 224, 60, 0.6), inset 0 0 30px rgba(200, 224, 60, 0.2);
    }
}

@keyframes boltFlash {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Hero Description */
.hero-desc {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    border-radius: var(--radius-xl);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn.primary {
    background: var(--accent-gradient);
    color: var(--bg-primary);
    box-shadow: 0 5px 30px rgba(200, 224, 60, 0.4);
}

.btn.primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--neon-glow);
}

.pulse-btn {
    animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {

    0%,
    100% {
        box-shadow: 0 5px 30px rgba(200, 224, 60, 0.4);
    }

    50% {
        box-shadow: 0 5px 50px rgba(200, 224, 60, 0.7);
    }
}

/* Glassmorphism Classes */
.glass-effect {
    background: rgba(13, 23, 31, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.project-card,
.live-card,
.social-card,
.sponsor-card,
.schedule,
.stat {
    background: rgba(13, 23, 31, 0.6) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(200, 224, 60, 0.1) !important;
}

.project-card:hover,
.live-card:hover,
.social-card:hover,
.sponsor-card:hover {
    border-color: var(--accent-primary) !important;
    background: rgba(13, 23, 31, 0.8) !important;
    box-shadow: 0 0 25px rgba(200, 224, 60, 0.15) !important;
}

/* Social Icons with Neon Hover */
.hero-social {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.4rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-icon.neon-hover:hover {
    background: var(--accent-gradient);
    border-color: var(--accent-primary);
    color: var(--bg-primary);
    transform: translateY(-8px) scale(1.1);
    box-shadow: var(--neon-glow);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
    animation: bounce 2s infinite;
}

.mouse {
    width: 28px;
    height: 45px;
    border: 2px solid var(--accent-primary);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 10px rgba(200, 224, 60, 0.3);
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--accent-primary);
    border-radius: 4px;
    animation: scroll 1.5s infinite;
    box-shadow: 0 0 5px var(--accent-primary);
}

.scroll-text {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--accent-primary);
    text-shadow: 0 0 10px rgba(200, 224, 60, 0.5);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(15px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

/* ===== SECTIONS ===== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(200, 224, 60, 0.1);
    border: 1px solid rgba(200, 224, 60, 0.2);
    border-radius: var(--radius-xl);
    color: var(--accent-primary);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== ABOUT ===== */
.about {
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    width: 100%;
    aspect-ratio: 1;
    max-width: 350px;
    margin: 0 auto;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: var(--text-muted);
    border: 2px solid rgba(200, 224, 60, 0.2);
    position: relative;
    overflow: hidden;
}

.image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-gradient);
    opacity: 0.1;
}

.about-logo {
    width: 80%;
    height: auto;
    position: relative;
    z-index: 1;
}

.about-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* Telemetry Stats Panel */
.telemetry-panel {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent-primary);
    position: relative;
    overflow: hidden;
}

.telemetry-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200, 224, 60, 0.05), transparent);
    animation: scanline 3s linear infinite;
}

@keyframes scanline {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.telemetry-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.telemetry-item .label {
    width: 140px;
    font-size: 0.8rem;
    font-family: var(--font-display);
    color: var(--text-muted);
    letter-spacing: 1px;
}

.telemetry-item .bar-container {
    flex-grow: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.telemetry-item .bar-fill {
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 4px;
    box-shadow: 0 0 10px var(--accent-primary);
    position: relative;
    width: 0;
    animation: barLoad 1.5s ease-out forwards;
}

@keyframes barLoad {
    from {
        width: 0;
    }
}

.telemetry-item .value {
    width: 60px;
    text-align: right;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--accent-primary);
    font-size: 1.1rem;
    text-shadow: 0 0 5px rgba(200, 224, 60, 0.5);
}

.tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tags span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.tags span i {
    color: var(--accent-primary);
}

/* ===== PROJECTS ===== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.project-card {
    background: rgba(13, 23, 31, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: rgba(200, 224, 60, 0.3);
    box-shadow: var(--shadow);
}

.project-card:hover::before {
    transform: scaleX(1);
}

.project-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 224, 60, 0.1);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    color: var(--accent-primary);
    margin-bottom: 20px;
}

.project-card .category {
    font-size: 0.8rem;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.project-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.project-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.project-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.project-tags span {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== LIVES ===== */
.lives {
    background: var(--bg-secondary);
}

.lives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.live-card {
    background: rgba(13, 23, 31, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.live-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.live-card i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.live-card.twitch i {
    color: var(--twitch);
}

.live-card.youtube i {
    color: var(--youtube);
}

.live-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.live-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.twitch-btn {
    background: var(--twitch) !important;
    color: white !important;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 1px;
    padding: 15px 40px;
    border: 2px solid var(--twitch);
    box-shadow: 0 0 20px rgba(145, 70, 255, 0.4), inset 0 0 20px rgba(145, 70, 255, 0.1);
    transition: var(--transition);
}

.twitch-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 30px rgba(145, 70, 255, 0.6), 0 0 60px rgba(145, 70, 255, 0.3), inset 0 0 30px rgba(145, 70, 255, 0.2);
}

.twitch-btn i {
    margin-right: 8px;
}

.youtube-btn {
    background: var(--youtube) !important;
    color: white !important;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 1px;
    padding: 15px 40px;
    border: 2px solid var(--youtube);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4), inset 0 0 20px rgba(255, 0, 0, 0.1);
    transition: var(--transition);
}

.youtube-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.6), 0 0 60px rgba(255, 0, 0, 0.3), inset 0 0 30px rgba(255, 0, 0, 0.2);
}

.youtube-btn i {
    margin-right: 8px;
}

.schedule {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.schedule h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.schedule h3 i {
    color: var(--accent-primary);
}

.schedule-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.schedule-item {
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.schedule-item .day {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.schedule-item .time {
    font-family: var(--font-display);
    font-size: 1.3rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.schedule-item.special {
    border-color: var(--accent-primary);
    background: rgba(200, 224, 60, 0.1);
}

/* ===== SPONSORS ===== */
.sponsors {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.sponsors::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
}

.sponsors-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: -40px;
    margin-bottom: 50px;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.sponsor-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px 30px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.sponsor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.sponsor-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px rgba(200, 224, 60, 0.15), var(--shadow-glow);
}

.sponsor-card:hover::before {
    transform: scaleX(1);
}

.sponsor-logo {
    width: 100%;
    max-width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.sponsor-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(30%);
    transition: var(--transition);
}

.sponsor-card:hover .sponsor-logo img {
    filter: grayscale(0%) drop-shadow(0 0 10px rgba(200, 224, 60, 0.3));
    transform: scale(1.05);
}

.sponsor-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
}

.sponsor-card:hover .sponsor-name {
    color: var(--accent-primary);
}

.sponsor-cta {
    text-align: center;
    padding: 40px;
    background: rgba(200, 224, 60, 0.05);
    border-radius: var(--radius-lg);
    border: 1px dashed rgba(200, 224, 60, 0.3);
}

.sponsor-cta p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.sponsor-cta .btn {
    display: inline-flex;
}

/* ===== SOCIAL ===== */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 20px;
    background: rgba(13, 23, 31, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.social-card i {
    font-size: 2.5rem;
    transition: var(--transition);
}

.social-card span {
    font-weight: 600;
}

.social-card.twitch:hover {
    border-color: var(--twitch);
}

.social-card.twitch i {
    color: var(--twitch);
}

.social-card.youtube:hover {
    border-color: var(--youtube);
}

.social-card.youtube i {
    color: var(--youtube);
}

.social-card.instagram:hover {
    border-color: var(--instagram);
}

.social-card.instagram i {
    color: var(--instagram);
}

.social-card.twitter:hover {
    border-color: var(--twitter);
}

.social-card.twitter i {
    color: var(--twitter);
}

.social-card.tiktok:hover {
    border-color: var(--tiktok);
}

.social-card.tiktok i {
    color: var(--tiktok);
}

.social-card.discord:hover {
    border-color: var(--discord);
}

.social-card.discord i {
    color: var(--discord);
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-secondary);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-brand .logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-logo-img {
    height: 30px;
    width: auto;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-orange);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent-gradient);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* ===== LAYOUT ENHANCEMENTS ===== */

/* 1. Sponsor Marquee */
.sponsors-grid {
    display: flex;
    gap: 50px;
    margin: 50px 0;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 50px;
    animation: marqueeScroll 20s linear infinite;
    width: max-content;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.sponsor-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 20px 40px;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.sponsor-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}


/* 2. Live Pulse Indicator */
.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ff0000;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    position: absolute;
    top: 15px;
    right: 15px;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
    animation: livePulse 1.5s infinite;
}

.live-indicator .dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

@keyframes livePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

/* 3. Advanced Card Hovers */
.project-card,
.live-card {
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.project-card::before,
.live-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
    pointer-events: none;
}

.project-card:hover,
.live-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(200, 224, 60, 0.2);
}

.project-card:hover::before,
.live-card:hover::before {
    left: 100%;
}


/* ===== CLIPS SECTION ===== */
.clips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.clip-card {
    background: rgba(13, 23, 31, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.clip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-primary);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== NEON SEPARATOR ===== */
.neon-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    opacity: 0.2;
    margin: 60px auto;
    width: 60%;
    max-width: 600px;
    box-shadow: 0 0 15px var(--accent-primary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: var(--transition);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: block;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stats {
        justify-content: center;
    }

    .tags {
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ===== CONTACT SECTION ===== */
.contact {
    position: relative;
    padding-bottom: 120px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    padding: 50px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-method .icon {
    width: 60px;
    height: 60px;
    background: rgba(200, 224, 60, 0.1);
    border: 1px solid var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-primary);
    box-shadow: 0 0 15px rgba(200, 224, 60, 0.2);
    transition: var(--transition);
}

.contact-method:hover .icon {
    background: var(--accent-primary);
    color: var(--bg-primary);
    box-shadow: 0 0 30px rgba(200, 224, 60, 0.5);
    transform: scale(1.1);
}

.contact-method .details {
    display: flex;
    flex-direction: column;
}

.contact-method .details span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.contact-method .details strong {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-secondary);
    margin-left: 10px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(13, 23, 31, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 15px 25px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(13, 23, 31, 0.9);
    box-shadow: 0 0 20px rgba(200, 224, 60, 0.15);
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 40px;
    }

    .contact-info {
        text-align: center;
    }

    .section-header {
        text-align: center !important;
    }

    .contact-methods {
        align-items: center;
    }

    .contact-method {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ===== SUPPORT SECTION ===== */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.support-card {
    background: rgba(13, 23, 31, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.support-card:hover {
    transform: translateY(-10px);
}

.support-card.free {
    border-top: 3px solid var(--text-secondary);
}

.support-card.sub {
    border-top: 3px solid var(--twitch);
    box-shadow: 0 0 20px rgba(145, 70, 255, 0.1);
}

.support-card.sub:hover {
    box-shadow: 0 0 30px rgba(145, 70, 255, 0.3);
}

.support-card.livepix {
    border: 2px solid var(--accent-primary);
    background: rgba(13, 23, 31, 0.8);
    box-shadow: 0 0 25px rgba(200, 224, 60, 0.15);
}

.support-card.livepix:hover {
    box-shadow: 0 0 40px rgba(200, 224, 60, 0.4);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.card-header i {
    font-size: 2rem;
}

.free .card-header i {
    color: var(--text-secondary);
}

.sub .card-header i {
    color: var(--twitch);
}

.livepix .card-header i {
    color: var(--accent-primary);
}

.card-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.support-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.benefit-list {
    margin-bottom: 30px;
    flex-grow: 1;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.benefit-list li i {
    color: var(--accent-primary);
    font-size: 0.8rem;
}

.card-actions {
    display: flex;
    gap: 10px;
}

.card-actions.vertical {
    flex-direction: column;
}

.btn.full-width {
    width: 100%;
    justify-content: center;
}

.btn.small {
    padding: 10px 20px;
    font-size: 0.85rem;
    flex: 1;
    justify-content: center;
}

.twitch-btn {
    background: var(--twitch);
    color: white;
}

/* Support Tiers */
.support-tiers {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
    padding: 15px;
    margin-bottom: 20px;
}

.support-tiers h4 {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tier-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tier-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
    text-decoration: none;
    /* For anchor tags */
    cursor: pointer;
}

.tier-item:hover {
    background: rgba(200, 224, 60, 0.1);
    transform: translateX(5px);
}

.tier-price {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--accent-primary);
}

.tier-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.tier-item.highlight {
    background: linear-gradient(90deg, rgba(200, 224, 60, 0.1), transparent);
    border-color: rgba(200, 224, 60, 0.3);
}

.tier-item.highlight .tier-name {
    color: white;
    font-weight: 600;
}


.twitch-btn:hover {
    background: #772ce8;
    box-shadow: 0 0 15px rgba(145, 70, 255, 0.6);
}

@media (max-width: 768px) {
    .support-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== REAL CAREER TIMELINE ===== */
.career-timeline {
    margin: 30px 0;
    position: relative;
    padding-left: 20px;
    border-left: 2px solid rgba(200, 224, 60, 0.2);
}

.timeline-item {
    position: relative;
    margin-bottom: 25px;
    padding-left: 15px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -27px;
    top: 6px;
    width: 12px;
    height: 12px;
    background: var(--bg-primary);
    border: 2px solid var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(200, 224, 60, 0.3);
}

.timeline-year {
    font-family: var(--font-display);
    color: var(--accent-primary);
    font-size: 0.85rem;
    margin-bottom: 4px;
    display: inline-block;
    background: rgba(200, 224, 60, 0.05);
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid rgba(200, 224, 60, 0.1);
}

.timeline-title {
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 4px;
    font-weight: 600;
}

.timeline-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid #ffd700;
    border-radius: 0 8px 8px 0;
    padding: 12px 15px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.achievement-icon {
    font-size: 1.2rem;
    color: #ffd700;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.4));
}

.achievement-text strong {
    color: #ffd700;
    display: block;
    font-size: 0.95rem;
}

.achievement-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== MEDIA MENTIONS ===== */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.media-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: var(--transition);
}

.media-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.media-icon {
    width: 40px;
    height: 40px;
    background: rgba(200, 224, 60, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    font-size: 1.2rem;
}

.media-info {
    flex: 1;
}

.media-info h5 {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.media-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.media-arrow {
    color: var(--text-secondary);
    font-size: 0.9rem;
    opacity: 0.5;
    transition: var(--transition);
}

.media-card:hover .media-arrow {
    opacity: 1;
    color: var(--accent-primary);
    transform: translateX(3px);
}