/* NachtEngel Logistik — Design System */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --header-height: 64px;

    /* Nacht-Violett */
    --primary-color: #7c3aed;
    --primary-dark: #5b21b6;
    --primary-light: #a78bfa;

    /* Gold-Akzente */
    --accent-color: #f5c542;
    --accent-secondary: #e8a838;
    --accent-tertiary: #c4922a;
    --accent-glow: rgba(245, 197, 66, 0.25);

    /* Text & Hintergrund */
    --text-light: #f5f0ff;
    --text-white: #a89bb8;
    --text-muted: #7a6d8a;
    --bg-dark: #0a0612;
    --bg-card: #140d1f;
    --bg-elevated: #1a1228;

    /* Schatten & Tiefe */
    --depth-primary: 0 8px 32px rgba(124, 58, 237, 0.2);
    --depth-accent: 0 8px 32px rgba(245, 197, 66, 0.15);
    --depth-hover: 0 16px 48px rgba(124, 58, 237, 0.3);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);

    /* Verläufe */
    --cyber-gradient: linear-gradient(135deg, #7c3aed, #5b21b6);
    --cyber-gradient-alt: linear-gradient(135deg, #f5c542, #e8a838);
    --gradient-hero: linear-gradient(135deg, #0a0612 0%, #1a0a2e 50%, #0a0612 100%);
    --gradient-gold: linear-gradient(90deg, #f5c542, #e8a838);

    /* Legacy-Aliase (Kompatibilität) */
    --neon-purple: #7c3aed;
    --neon-blue: #a78bfa;
    --neon-green: #f5c542;
    --neon-orange: #e8a838;
    --neon-red: #c4922a;
    --gradient-cyber: var(--cyber-gradient);
    --gradient-fire: var(--cyber-gradient-alt);
    --gradient-nature: var(--gradient-gold);
    --gradient-sunset: var(--gradient-gold);
    --glow-purple: 0 0 20px rgba(124, 58, 237, 0.4);
    --glow-blue: 0 0 20px rgba(167, 139, 250, 0.3);
    --glow-green: 0 0 20px var(--accent-glow);
    --glow-primary: var(--glow-purple);
    --neon-primary: var(--glow-purple);
    --glow-accent: 0 0 20px var(--accent-glow);

    /* Scroll-Animation */
    --ease-out-expo: cubic-bezier(0.25, 0.1, 0.25, 1);
    --scroll-duration: 1.5s;
}

/* ============================================
   RESET & BASE
   ============================================ */
.bg-dark-blue {
    background-color: var(--bg-dark);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

main {
    flex-grow: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

/* ============================================
   CONTAINER — Tailwind-kompatibel
   ============================================ */
.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(10, 6, 18, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(245, 197, 66, 0.25);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: var(--depth-primary);
}

.header.scrolled {
    height: 60px;
    background-color: rgba(15, 23, 42, 0.98);
    box-shadow: var(--shadow);
}

.header img {
    height: 2.5rem;
    width: auto;
    transition: all 0.3s ease;
}

.header.scrolled img {
    height: 2rem !important;
}

/* ============================================
   NAVIGATION
   ============================================ */
.header-nav {
    color: var(--text-light);
    font-weight: 500;
    text-decoration: none;
    padding: 0.7rem 0.5rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    white-space: nowrap;
    border-radius: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    overflow: hidden;
}

.header-nav::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 9px;
    background: var(--cyber-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-cyber);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-nav:hover,
.header-nav.active {
    color: var(--accent-color);
}

.header-nav:hover::before,
.header-nav:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(10, 6, 18, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    border-bottom: 2px solid var(--primary-color);
    box-shadow: var(--depth-primary);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-link {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 42, 109, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-nav-link:hover {
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.1), rgba(236, 72, 153, 0.1));
    color: var(--primary-color);
    text-shadow: var(--neon-primary);
    padding-left: 2rem;
}

.mobile-nav-link.active {
    background: var(--cyber-gradient);
    color: var(--text-light);
    text-shadow: var(--neon-primary);
    box-shadow: var(--depth-primary);
}

/* ============================================
   DISCORD BUTTON
   ============================================ */
.discord-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--cyber-gradient);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--depth-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.discord-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.discord-button:hover {
    background: var(--cyber-gradient-alt);
    transform: translateY(-5px) rotateX(10deg);
    box-shadow: var(--depth-hover);
}

.discord-button:hover::before {
    left: 100%;
}

/* ============================================
   HERO SECTION (alt — ueber-uns.php)
   ============================================ */
.hero-section {
    padding-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 197, 66, 0.08) 0%, transparent 50%);
    animation: cyberPulse 8s infinite alternate;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(10, 6, 18, 0.92) 0%,
        rgba(10, 6, 18, 0.75) 50%,
        rgba(10, 6, 18, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    background: var(--cyber-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease backwards;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--text-white);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.2s backwards;
}

/* ============================================
   HERO CINEMATIC (index.php)
   ============================================ */
.hero-cinematic {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero-ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.hero-orb--purple {
    width: 500px;
    height: 500px;
    top: -10%;
    left: -5%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.6), transparent 70%);
    animation: orbFloat 12s ease-in-out infinite alternate;
}

.hero-orb--gold {
    width: 400px;
    height: 400px;
    bottom: -10%;
    right: -5%;
    background: radial-gradient(circle, rgba(245, 197, 66, 0.4), transparent 70%);
    animation: orbFloat 10s ease-in-out 2s infinite alternate;
}

.hero-orb--violet {
    width: 300px;
    height: 300px;
    top: 40%;
    right: 20%;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.3), transparent 70%);
    animation: orbFloat 14s ease-in-out 4s infinite alternate;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(124, 58, 237, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.hero-brand {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.hero-brand .gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -20px) scale(1.1); }
}

/* ============================================
   BUTTONS (Premium)
   ============================================ */
.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-premium--gold {
    background: var(--cyber-gradient-alt);
    color: #0a0612;
    box-shadow: var(--depth-accent);
}

.btn-premium--gold:hover {
    transform: translateY(-3px);
    box-shadow: var(--depth-hover);
    filter: brightness(1.1);
}

.btn-premium--ghost {
    background: transparent;
    color: var(--text-light);
    border-color: rgba(245, 197, 66, 0.4);
}

.btn-premium--ghost:hover {
    background: rgba(245, 197, 66, 0.1);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.btn-magnetic {
    will-change: transform;
}

/* ============================================
   FEATURE GRID (index.php)
   ============================================ */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-pill:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--depth-accent);
}

.feature-pill__icon {
    font-size: 2.5rem;
    line-height: 1;
}

.feature-pill__label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
}

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

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-eyebrow {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--cyber-gradient);
    border-radius: 2px;
    margin: 0 auto 3rem auto;
}

.section-header {
    position: relative;
    margin-bottom: 3rem;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--cyber-gradient);
    border-radius: 2px;
    box-shadow: var(--glow-primary);
}

/* ============================================
   SECTION (kein overflow:hidden mehr)
   ============================================ */
.section {
    position: relative;
    padding: 5rem 0;
}

.section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right,
        transparent,
        rgba(99, 102, 241, 0.3),
        transparent);
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
    padding: 1.5rem 0;
    background: var(--bg-dark);
}

.team-section h2 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-light);
    position: relative;
}

.team-section h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--cyber-gradient);
    border-radius: 1px;
}

.team-category {
    margin-bottom: 3rem;
}

.team-category h3 {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    justify-items: center;
    gap: 1.5rem;
    padding: 1rem 0;
}

/* Team Card — große Karte */
.team-card {
    width: 350px;
    max-width: 95vw;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--accent-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(245, 197, 66, 0.2);
}

.team-card.is-live {
    border-color: #9146FF;
    box-shadow: 0 0 15px rgba(145, 70, 255, 0.3);
}

.team-card.is-live:hover {
    box-shadow: 0 0 25px rgba(145, 70, 255, 0.5);
}

.team-card-image {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.05);
}

.team-card.is-live .team-card-image img {
    animation: pulseLive 2s infinite;
}

@keyframes pulseLive {
    0%, 100% { box-shadow: 0 0 0 0 rgba(145, 70, 255, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(145, 70, 255, 0); }
}

.team-card-info {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-card-info h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #ff0000;
}

.team-card-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stream-info {
    background: rgba(145, 70, 255, 0.1);
    border-radius: 8px;
    padding: 0.8rem;
    margin: 0.8rem 0;
    text-align: center;
    width: 100%;
}

.stream-info p {
    font-size: 0.9rem;
    margin-bottom: 2px;
    color: var(--text-light);
}

.stream-title {
    font-size: 1rem;
    font-weight: bold;
    color: #ff0000;
    margin-bottom: 0.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stream-game {
    font-size: 0.9rem;
    color: #9146FF;
    margin-bottom: 0.3rem;
}

.stream-viewers {
    font-size: 0.9rem;
    color: #a5007e;
    font-weight: bold;
}

.stream-offline {
    font-size: 0.875rem;
    color: #a0aec0;
    font-style: italic;
}

.team-card-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    color: white;
    text-transform: uppercase;
    font-size: 0.8em;
}

.twitch-link {
    background: #9146FF;
}

.twitch-link:hover {
    background: #7c3bdb;
    transform: translateY(-2px);
}

.discord-link {
    background: #5865F2;
}

.discord-link:hover {
    background: #4752c4;
    transform: translateY(-2px);
}

/* ============================================
   STREAMER GRID (index.php — premium)
   ============================================ */
.streamer-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.streamer-card-premium {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 1rem;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-align: center;
}

.streamer-card-premium:hover {
    transform: translateY(-6px);
    border-color: var(--accent-color);
    box-shadow: var(--depth-accent);
}

.streamer-card-premium.is-live {
    border-color: #9146FF;
    box-shadow: 0 0 12px rgba(145, 70, 255, 0.2);
}

.streamer-card-premium .streamer-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(245, 197, 66, 0.4);
}

.streamer-card-premium.is-live .streamer-avatar {
    border-color: #9146FF;
}

.streamer-card-premium .streamer-name {
    font-size: 1rem;
    font-weight: 700;
    text-transform: capitalize;
}

.streamer-card-premium .streamer-status {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   STREAMER CARDS (detail — fallback)
   ============================================ */
.streamer-card {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.streamer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.streamer-card.is-live {
    border-color: #e91916;
    box-shadow: 0 0 15px rgba(233, 25, 22, 0.3);
}

.streamer-card.is-live:hover {
    box-shadow: 0 0 25px rgba(233, 25, 22, 0.5);
}

.streamer-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
}

.streamer-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.streamer-card:hover .streamer-thumbnail img {
    transform: scale(1.05);
}

.streamer-live-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(45deg, #FF2A6D, #FF0000);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: var(--depth-primary);
    letter-spacing: 2px;
}

.streamer-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.streamer-info h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.streamer-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.streamer-title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.streamer-game {
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

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

.streamer-viewers {
    font-size: 1rem;
    color: #DC2626;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.streamer-link {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    box-shadow: var(--shadow);
}

.streamer-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.streamer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(1, 1, 43, 0.9);
    border-radius: 15px;
    max-width: 1200px;
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.streamer-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.streamer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.streamer-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(245, 197, 66, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.streamer-avatar:hover {
    transform: scale(1.08);
    box-shadow: 0 0 24px rgba(245, 197, 66, 0.35);
}

.live-badge {
    position: absolute;
    bottom: 4px;
    right: 4px;
    background: var(--accent-color);
    color: #0a0612;
    font-size: 0.65rem;
    border-radius: 6px;
    padding: 2px 6px;
    font-weight: 700;
    pointer-events: none;
}

/* ============================================
   SCROLL HINT
   ============================================ */
.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.scroll-hint__chevron {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(6px); }
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
    border-left: 2px solid var(--primary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--cyber-gradient);
    border: 2px solid var(--bg-dark);
    box-shadow: var(--depth-primary);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--cyber-gradient);
    color: var(--text-light);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    box-shadow: var(--depth-primary);
}

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

.back-to-top:hover {
    background: var(--cyber-gradient-alt);
    transform: translateY(-5px);
    box-shadow: var(--depth-hover);
}

#back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: #0a0612;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 999;
    box-shadow: var(--depth-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

#back-to-top:hover {
    transform: translateY(-3px);
}

/* ============================================
   FORM STYLES
   ============================================ */
.form-container {
    background: rgba(10, 10, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-color);
    box-shadow: var(--depth-primary);
    border-radius: 1rem;
    padding: 2rem;
}

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

.form-label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    background: black;
    border: 2px solid var(--primary-color);
    border-radius: 0.75rem;
    color: var(--text-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 1px;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: var(--depth-accent);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    background: var(--cyber-gradient);
    color: var(--text-light);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    border: none;
    cursor: pointer;
    box-shadow: var(--depth-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.submit-button:hover {
    background: var(--cyber-gradient-alt);
    transform: translateY(-5px);
    box-shadow: var(--depth-hover);
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--glow-primary);
}

.bg-gradient {
    background: var(--gradient-hero);
}

.main-content-container {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.content-card {
    background: var(--bg-card);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
}

.neon-text {
    text-shadow: 0 0 40px rgba(245, 197, 66, 0.3);
}

.glow-border {
    border: 1px solid rgba(245, 197, 66, 0.4);
    box-shadow: 0 0 20px rgba(245, 197, 66, 0.15);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.glow-border:hover {
    border-color: var(--accent-color);
    box-shadow: 0 0 30px rgba(245, 197, 66, 0.3);
}

/* ============================================
   LOADING ANIMATION
   ============================================ */
.loading {
    width: 48px;
    height: 48px;
    border: 4px solid transparent;
    border-top-color: var(--neon-purple);
    border-right-color: var(--neon-blue);
    border-bottom-color: var(--neon-green);
    border-left-color: var(--neon-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   BUTTONS (alt)
   ============================================ */
.btn-primary {
    background: var(--cyber-gradient);
    box-shadow: var(--shadow), var(--glow-primary);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--cyber-gradient-alt);
    box-shadow: var(--shadow-lg), var(--glow-accent);
    transform: translateY(-2px);
}

/* ============================================
   CYBER CLASSES
   ============================================ */
.cyber-text {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cyber-border {
    border: 2px solid var(--primary-color);
    box-shadow: var(--depth-primary);
}

.cyber-glow {
    text-shadow: var(--neon-primary);
}

.cyber-button {
    background: var(--cyber-gradient);
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    box-shadow: var(--depth-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cyber-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.cyber-button:hover {
    background: var(--cyber-gradient-alt);
    transform: translateY(-5px) rotateX(10deg);
    box-shadow: var(--depth-hover);
}

.cyber-button:hover::before {
    left: 100%;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: rgba(10, 6, 18, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(245, 197, 66, 0.2);
    padding: 1rem 0;
    position: relative;
    font-size: 0.875rem;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0 1rem;
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer-link {
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
}

.footer-copyright {
    color: var(--text-white);
    margin-left: 1rem;
}

/* ============================================
   APPLE-STYLE SCROLL ANIMATIONS
   ============================================ */
.fade-in,
.fade-in-up,
.slide-up,
.slide-down,
.slide-left,
.slide-right,
.scale-up,
.scale-down,
.blur-in,
.reveal,
.animate-on-scroll,
.section-transition {
    will-change: transform, opacity;
}

.fade-in,
.animate-on-scroll {
    opacity: 0;
    transition: opacity var(--scroll-duration) var(--ease-out-expo);
}

.fade-in-up,
.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--scroll-duration) var(--ease-out-expo),
                transform var(--scroll-duration) var(--ease-out-expo);
}

.slide-down {
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity var(--scroll-duration) var(--ease-out-expo),
                transform var(--scroll-duration) var(--ease-out-expo);
}

.slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity var(--scroll-duration) var(--ease-out-expo),
                transform var(--scroll-duration) var(--ease-out-expo);
}

.slide-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity var(--scroll-duration) var(--ease-out-expo),
                transform var(--scroll-duration) var(--ease-out-expo);
}

.scale-up {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity var(--scroll-duration) var(--ease-out-expo),
                transform var(--scroll-duration) var(--ease-out-expo);
}

.blur-in {
    opacity: 0;
    filter: blur(8px);
    transition: opacity var(--scroll-duration) var(--ease-out-expo),
                filter var(--scroll-duration) var(--ease-out-expo);
}

.fade-in.is-visible,
.fade-in-up.is-visible,
.slide-up.is-visible,
.slide-down.is-visible,
.slide-left.is-visible,
.slide-right.is-visible,
.scale-up.is-visible,
.scale-down.is-visible,
.blur-in.is-visible,
.reveal.is-visible,
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.animate-float {
    animation: float 3s ease-in-out infinite;
}

@keyframes cyberFloat {
    0% { transform: translateY(0) rotateX(0); }
    100% { transform: translateY(-20px) rotateX(5deg); }
}

@keyframes cyberPulse {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.1); }
}

@keyframes neonPulse {
    0%, 100% { text-shadow: var(--glow-blue); }
    50% { text-shadow: var(--glow-blue); }
}

@keyframes borderGlow {
    0%, 100% { border-color: var(--neon-purple); box-shadow: var(--glow-purple); }
    25% { border-color: var(--neon-blue); box-shadow: var(--glow-blue); }
    50% { border-color: var(--neon-green); box-shadow: var(--glow-green); }
    75% { border-color: var(--primary-color); box-shadow: var(--glow-primary); }
}

@keyframes glowPulse {
    0%, 100% { filter: drop-shadow(var(--glow-primary)); }
    50% { filter: drop-shadow(var(--glow-accent)); }
}

/* ============================================
   RESPONSIVE (768px)
   ============================================ */
@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .streamer-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .team-card {
        width: 98vw;
        max-width: 100vw;
    }

    .team-card-image {
        width: 120px;
        height: 160px;
    }

    .team-card-info h3 {
        font-size: 1.3rem;
    }

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

    .section {
        padding: 3rem 0;
    }

    .streamer-grid {
        gap: 8px;
        padding: 10px;
    }

    .streamer-info {
        padding: 1rem;
    }

    .footer {
        padding: 0.75rem 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-copyright {
        margin-left: 0;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* ============================================
   ADMIN CLASSES
   ============================================ */
.admin-header { box-shadow: 0 0 24px 0 rgba(124,58,237,0.3), 0 2px 8px 0 #000a; background: rgba(10,6,18,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(245,197,66,0.25); }
.admin-nav-link { transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; font-weight: 600; padding: 0.5rem 0.75rem; border-radius: 0.5rem; }
.admin-nav-link:hover { background: rgba(245,197,66,0.1); color: var(--accent-color); }
.admin-nav-link.active { color: var(--accent-color); border-bottom: 2px solid var(--accent-color); background: rgba(245,197,66,0.08); }
.admin-card { box-shadow: var(--depth-primary); background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%); border: 1px solid rgba(124,58,237,0.2); border-radius: 1rem; }
.admin-btn-primary { background: var(--cyber-gradient); color: var(--text-light); font-weight: 700; padding: 0.5rem 1.25rem; border-radius: 0.75rem; transition: all 0.3s ease; box-shadow: var(--depth-primary); }
.admin-btn-primary:hover { background: var(--cyber-gradient-alt); transform: translateY(-2px); box-shadow: var(--depth-hover); }
.admin-btn-secondary { background: rgba(245,197,66,0.15); color: var(--accent-color); border: 1px solid rgba(245,197,66,0.3); font-weight: 700; padding: 0.5rem 1.25rem; border-radius: 0.75rem; transition: all 0.3s ease; }
.admin-btn-secondary:hover { background: rgba(245,197,66,0.25); transform: translateY(-2px); }
.admin-btn-danger { background: rgba(239,68,68,0.2); color: #f87171; border: 1px solid rgba(239,68,68,0.3); font-weight: 700; padding: 0.5rem 1.25rem; border-radius: 0.75rem; transition: all 0.3s ease; }
.admin-btn-danger:hover { background: rgba(239,68,68,0.3); transform: translateY(-2px); }
.admin-btn-edit { background: rgba(245,197,66,0.15); color: var(--accent-color); border: 1px solid rgba(245,197,66,0.3); font-weight: 700; padding: 0.5rem 1.25rem; border-radius: 0.75rem; transition: all 0.3s ease; }
.admin-btn-edit:hover { background: rgba(245,197,66,0.25); }
.admin-table { border-collapse: separate; border-spacing: 0; }
.admin-table thead { background: var(--bg-elevated); }
.admin-table th { color: var(--accent-color); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 0.75rem; padding: 0.875rem 1rem; border-bottom: 2px solid rgba(245,197,66,0.2); }
.admin-table td { padding: 0.75rem 1rem; border-bottom: 1px solid rgba(124,58,237,0.15); }
.admin-table tbody tr:hover { background: rgba(124,58,237,0.08); }
.admin-form-input { width: 100%; padding: 0.75rem 1rem; background: var(--bg-dark); border: 2px solid rgba(124,58,237,0.3); border-radius: 0.75rem; color: var(--text-light); transition: all 0.3s ease; }
.admin-form-input:focus { outline: none; border-color: var(--accent-color); box-shadow: 0 0 12px rgba(245,197,66,0.2); }
.admin-form-input::placeholder { color: var(--text-muted); }
.admin-form-label { display: block; margin-bottom: 0.5rem; color: var(--text-light); font-weight: 600; font-size: 0.9rem; }
.admin-section-title { color: var(--accent-color); font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.admin-success { background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.4); color: #4ade80; padding: 1rem; border-radius: 0.75rem; margin-bottom: 1rem; }
.admin-error { background: rgba(239,68,68,0.15); border: 1px solid rgba(239,68,68,0.4); color: #f87171; padding: 1rem; border-radius: 0.75rem; margin-bottom: 1rem; }
