/* Custom Styles für SaarBr66klyn Logistik */

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

/* Basis-Styles */
:root {
    --header-height: 60px;
    
    /* Cyberpunk-Farbpalette */
    --primary-color: #FF2A6D; /* Neon-Pink */
    --primary-dark: #D4004B;
    --primary-light: #FF5C8D;
    
    /* Akzentfarben */
    --accent-color: #05D9E8; /* Cyan */
    --accent-secondary: #FFD300; /* Gelb */
    --accent-tertiary: #39FF14; /* Neon-Grün */
    
    /* Text und Hintergrund */
    --text-light: #ffffff;
    --text-white: #B8B8B8;
    --bg-dark: #01012B; /* Dunkelblau */
    --bg-card: #0A0A2A;
    
    /* 3D-Effekte */
    --depth-primary: 0 10px 20px rgba(255, 42, 109, 0.3);
    --depth-accent: 0 10px 20px rgba(5, 217, 232, 0.3);
    --depth-hover: 0 15px 30px rgba(255, 42, 109, 0.4);
    
    /* Neon-Effekte */
    --neon-primary: 0 0 3px #FF2A6D,
                   0 0 6px #FF2A6D,
                   0 0 12px #FF2A6D;
    
    /* Farbverläufe */
    --cyber-gradient: linear-gradient(45deg, #FF2A6D, #05D9E8);
    --cyber-gradient-alt: linear-gradient(45deg, #FFD300,);
    
    /* Neue Neon-Farben */
    --neon-orange: #FF8000;
    --neon-red: #FF0000;
    
    /* Neue Gradient-Kombinationen */
    --gradient-cyber: linear-gradient(45deg, var(--neon-purple), var(--neon-blue));
    --gradient-fire: linear-gradient(45deg, var(--neon-orange), var(--neon-red));
    --gradient-nature: linear-gradient(45deg, var(--neon-green), var(--neon-blue));
    --gradient-sunset: linear-gradient(45deg, var(--neon-orange), var(--neon-purple));
    
    /* Neue Glow-Effekte */
    --glow-purple: 0 0 8px var(--neon-purple),
                   0 0 16px var(--neon-purple),
                   0 0 24px var(--neon-purple);
    --glow-blue: 0 0 8px var(--neon-blue),
                 0 0 16px var(--neon-blue),
                 0 0 24px var(--neon-blue);
    --glow-green: 0 0 8px var(--neon-green),
                  0 0 16px var(--neon-green),
                  0 0 24px var(--neon-green);
}

/* Utility Class for Dark Blue Background */
.bg-dark-blue {
    background-color: var(--bg-dark);
}

/* Kritische Styles */
body {
    font-family: 'Orbitron', 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;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(1, 1, 43, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--primary-color);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: var(--depth-primary);
    transform-style: preserve-3d;
    perspective: 1000px;
}

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

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    padding: 0.8rem 1.2rem;
}

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

.header-nav::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 6;
    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: #06fa16;
}

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

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

/* Logo und Header-Anpassungen */
.header img {
    height: 2.5rem;
    width: auto;
    transition: all 0.3s ease;
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(1, 1, 43, 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(255, 42, 109, 0.1),
        rgba(5, 217, 232, 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;
    transform-style: preserve-3d;
    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 */
.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;
    perspective: 1000px;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 42, 109, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(5, 217, 232, 0.15) 0%, transparent 50%);
    animation: cyberPulse 8s infinite alternate,
               gradientShift 15s infinite alternate;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(15, 23, 42, 0.95) 0%,
        rgba(15, 23, 42, 0.8) 50%,
        rgba(15, 23, 42, 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;
    text-shadow: var(--neon-primary);
    animation: neonPulse 4s infinite,
               cyberFloat 6s infinite alternate;
    transform-style: preserve-3d;
}

.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;
}

/* Team Section Styles */
.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 {
    font-size: 1.5rem;
    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: 1.5rem;
}

.team-category h3 {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid var(--primary-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    gap: 0.4rem;
    padding: 0 0.1rem;
    justify-items: center;
}

/* Team Card Styles */
.team-card {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 0.3rem;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    max-width: 60px;
}

.team-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

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

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

.team-card-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
}

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

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

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

.team-card-info h3 {
    font-size: 0.5rem;
    font-weight: bold;
    margin-bottom: 0.1rem;
    color: white;
}

.team-card-title {
    color: #a0aec0;
    margin-bottom: 3px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.45rem;
}

.stream-title {
    font-size: 0.45rem;
    color: #e91916;
    margin-bottom: 0.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stream-game {
    font-size: 0.45rem;
    color: #a0aec0;
    margin-bottom: 0.1rem;
}

.stream-viewers {
    font-size: 0.45rem;
    color: #e91916;
    font-weight: bold;
}

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

.team-card-social {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 3px;
    padding-top: 3px;
    border-top: 1px solid rgba(23, 239, 3, 0.1);
}

.social-link {
    display: inline-block;
    color: white;
    text-decoration: none;
    padding: 1.5px 4px;
    border-radius: 6px;
    font-size: 0.4em;
    transition: all 0.3s ease;
    background: #9146FF;
    font-weight: bold;
    text-transform: uppercase;
}

.social-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 1px 2px rgba(252, 7, 7, 0.2);
    opacity: 0.9;
}

/* Stream Info in Team Cards */
.stream-info {
    margin-top: 2px;
    padding-top: 2px;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
    text-align: center;
    width: 100%;
}

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

/* 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 glowPulse {
    0%, 100% {
        filter: drop-shadow(var(--glow-primary));
    }
    50% {
        filter: drop-shadow(var(--glow-accent));
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-grid {
        gap: 3px;
        padding: 0 0.1rem;
    }

    .team-card {
        max-width: 80px;
        padding: 3px;
    }

    .team-card-image {
        padding-top: 80%;
    }

    .team-card-info {
        padding: 0.2rem;
    }

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

    .team-card-title {
        font-size: 0.4rem;
        margin-bottom: 2px;
    }

    .stream-info p {
        font-size: 0.35rem;
    }

    .social-link {
        padding: 1.5px 3px;
        font-size: 0.45em;
    }
}

/* Custom 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 Button */
.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);
    transform-style: preserve-3d;
}

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

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

/* 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;
    transform-style: preserve-3d;
}

.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);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: var(--depth-accent);
    transform: translateY(-3px);
    animation: borderGlow 2s infinite;
}

.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;
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.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) rotateX(10deg);
    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(--cyber-gradient);
    -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);
}

/* Section Transitions */
.section {
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

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

/* 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,
               borderGlow 2s infinite;
}

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

/* Streamer Cards */
.streamer-card {
    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;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.streamer-card:hover {
    transform: translateY(-15px) rotateX(10deg);
    box-shadow: var(--glow-primary);
}

.streamer-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
    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);
    animation: neonPulse 2s infinite,
               cyberPulse 2s infinite alternate;
    letter-spacing: 2px;
}

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

.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(--text-red);
    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-list {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

/* Section Headers */
.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);
}

/* Neue Button Styles */
.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);
}

/* Mobile Menu Enhancement */
.mobile-nav-link:hover {
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.1), rgba(236, 72, 153, 0.1));
    color: var(--text-light);
    padding-left: 2rem;
}

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

/* New Utility Classes */
.cyber-text {
    font-family: 'Orbitron', 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);
    transform-style: preserve-3d;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.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%;
}

@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);
    }
}

/* Neue Animationen */
@keyframes neonPulse {
    0%, 100% {
        text-shadow: var(--glow-blue);
    }
    25% {
        text-shadow: var(--glow-blue);
    }
    50% {
        text-shadow: var(--glow-blue);
    }
    75% {
        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 float3D {
    0%, 100% {
        transform: translateY(0) rotateX(0) rotateY(0);
    }
    25% {
        transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    }
    50% {
        transform: translateY(0) rotateX(0) rotateY(0);
    }
    75% {
        transform: translateY(10px) rotateX(-5deg) rotateY(-5deg);
    }
}

/* Neue Utility Classes */
.neon-text {
    animation: neonPulse 4s infinite;
}

.float-3d {
    animation: float3D 6s ease-in-out infinite;
}

.glow-border {
    animation: borderGlow 2s infinite;
}

/* Streamer Grid */
.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-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-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: white;
}

.stream-title {
    font-size: 0.875rem;
    color: #e91916;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stream-game {
    font-size: 0.875rem;
    color: #ff0000;
    margin-bottom: 0.5rem;
}

.stream-viewers {
    font-size: 0.875rem;
    color: #e91916;
    font-weight: bold;
}

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

/* Team Card Styles */
.team-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;
}

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

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

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

.team-card-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
}

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

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

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

.team-card-info h3 {
    font-size: 0.9rem;
    margin-bottom: 3px;
    color: var(--text-light);
    font-weight: 600;
}

.team-card-title {
    color: #a0aec0;
    margin-bottom: 8px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.7rem;
}

.team-card-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(23, 239, 3, 0.1);
}

.social-link {
    display: inline-block;
    color: white;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    transition: all 0.3s ease;
    background: #9146FF;
    font-weight: bold;
    text-transform: uppercase;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(252, 7, 7, 0.2);
    opacity: 0.9;
}

/* Stream Info in Team Cards */
.stream-info {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
    text-align: center;
    width: 100%;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .streamer-grid {
        gap: 8px;
        padding: 10px;
    }
    
    .streamer-info {
        padding: 1rem;
    }
    
    .streamer-info h3 {
        font-size: 1.125rem;
    }
    
    .team-card-info {
        padding: 1rem;
    }
    
    .team-card-info h3 {
        font-size: 1.125rem;
    }
}

/* Footer Styles */
.footer {
    background: rgba(1, 1, 43, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--primary-color);
    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(--primary-color);
}

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

@media (max-width: 768px) {
    .footer {
        padding: 0.75rem 0;
    }

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

    .footer-links {
        margin-bottom: 0.25rem;
    }

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

/* Main Content Container Styling */
.main-content-container {
    background: rgba(10, 10, 42, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    border-image: linear-gradient(to right, transparent, rgba(99, 102, 241, 0.3), transparent) 1;
}

/* Streamer Item */
.streamer-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    text-decoration: none;
}
#back-to-top.show {
    opacity: 1;
    visibility: visible;
  }
#back-to-top {
    opacity: 0;
    visibility: hidden;
  }
