/* ========================================
   GEMEINSAM ZOCKEN - CSS STYLESHEET
   Gaming Community Website
   ======================================== */

/* ========== ROOT & CSS VARIABLES ========== */
:root {
    /* Colors */
    --color-primary: #1a1a2e;
    --color-secondary: #16213e;
    --color-accent-purple: #a020f0;
    --color-accent-blue: #00d4ff;
    --color-accent-cyan: #00ffff;
    --color-text: #ffffff;
    --color-text-muted: #aaaaaa;
    --color-border: #2a2a4e;
    --color-glow: #7c3aed;

    /* Sizing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3.5rem;

    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;

    /* Z-Index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-modal: 300;
}

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-primary);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

h2 {
    font-size: var(--font-size-4xl);
}

h3 {
    font-size: var(--font-size-2xl);
}

p {
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-sm);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

/* ========== LAYOUT ========== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* ========== HEADER & NAVIGATION ========== */
.header {
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: rgba(15, 15, 30, 0.95);
    padding: var(--spacing-xs) 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-md) var(--spacing-lg);
    transition: padding var(--transition-normal);
}

.header.scrolled .header-container {
    padding: var(--spacing-sm) var(--spacing-lg);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex-shrink: 0;
}

.logo-img {
    height: clamp(50px, 8vw, 180px);
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: brightness(1) drop-shadow(0 0 8px rgba(160, 32, 240, 0.4));
    transition: filter var(--transition-normal), height var(--transition-normal);
}

.header.scrolled .logo-img {
    height: clamp(40px, 6vw, 100px);
    filter: brightness(1) drop-shadow(0 0 6px rgba(160, 32, 240, 0.3));
}

.nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--spacing-xl);
    align-items: center;
}

.nav-link {
    font-size: var(--font-size-sm);
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    transition: color var(--transition-fast);
    padding: var(--spacing-xs) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent-purple), var(--color-accent-blue));
    transition: width var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-accent-blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

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

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-accent-blue);
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--spacing-lg) 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a3a 50%, #0f0f1e 100%);
    z-index: 0;
}

.hero-bg::before,
.hero-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    animation: float 25s ease-in-out infinite;
}

.hero-bg::before {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(160, 32, 240, 0.6), transparent 70%);
    top: 15%;
    left: -5%;
    animation-delay: 0s;
}

.hero-bg::after {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.5), transparent 70%);
    bottom: 10%;
    right: -5%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(25px, 25px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    padding: 0 var(--spacing-lg);
    width: 100%;
}

.hero-inner {
    animation: slideUp 0.8s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo-wrapper {
    margin-bottom: var(--spacing-sm);
}

.hero-logo {
    max-width: min(90vw, 650px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(160, 32, 240, 0.2)) drop-shadow(0 0 60px rgba(0, 212, 255, 0.1));
    transition: filter 0.3s ease-out;
}

.hero-logo:hover {
    filter: drop-shadow(0 0 40px rgba(160, 32, 240, 0.3)) drop-shadow(0 0 80px rgba(0, 212, 255, 0.15));
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    margin: var(--spacing-md) 0;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--color-accent-blue), var(--color-accent-purple), var(--color-accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(160, 32, 240, 0.3);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--color-text-muted);
    margin: var(--spacing-md) 0;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

.hero-tagline {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    letter-spacing: 2px;
    margin-top: var(--spacing-xl);
    text-transform: uppercase;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--font-size-base);
    font-weight: 600;
    border: 2px solid;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn:focus-visible {
    outline: 2px solid var(--color-accent-blue);
    outline-offset: 2px;
}

/* Primary Button */
.btn-primary {
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-blue));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 0 20px rgba(160, 32, 240, 0.4), 0 0 10px rgba(0, 212, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(160, 32, 240, 0.6), 0 0 20px rgba(0, 212, 255, 0.4), 0 15px 30px rgba(0, 0, 0, 0.3);
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* Secondary Button */
.btn-secondary {
    background: transparent;
    border-color: var(--color-accent-blue);
    color: var(--color-accent-blue);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2), inset 0 0 15px rgba(0, 212, 255, 0.05);
}

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5), inset 0 0 20px rgba(0, 212, 255, 0.15), 0 15px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
    border-color: rgba(0, 212, 255, 0.8);
}

.btn-secondary:active {
    transform: translateY(-1px);
}

/* Button Sizes */
.btn-sm {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: var(--font-size-sm);
}

.btn-large {
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: var(--font-size-lg);
}

/* ========== SECTIONS ========== */
.section {
    padding: var(--spacing-2xl) 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-2xl);
    color: var(--color-text-muted);
    font-size: var(--font-size-lg);
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.1s;
}

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

/* ========== COMMUNITY SECTION ========== */
.community-section {
    position: relative;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 50%, #0f1428 100%);
    overflow: hidden;
}

.community-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(160, 32, 240, 0.15), transparent 70%);
    top: -10%;
    left: -5%;
    border-radius: 50%;
    pointer-events: none;
    animation: float 30s ease-in-out infinite;
}

.community-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent 70%);
    bottom: -5%;
    right: 0%;
    border-radius: 50%;
    pointer-events: none;
    animation: float 35s ease-in-out infinite;
    animation-delay: 2s;
}

.community-eyebrow {
    text-align: center;
    font-size: var(--font-size-sm);
    color: var(--color-accent-purple);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.community-cards {
    grid-template-columns: repeat(4, 1fr);
}

.community-card {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.6) 0%, rgba(26, 26, 46, 0.4) 100%);
    border: 1px solid rgba(160, 32, 240, 0.2);
    box-shadow: 0 0 20px rgba(160, 32, 240, 0.1), inset 0 0 20px rgba(160, 32, 240, 0.05);
    position: relative;
    overflow: hidden;
}

.community-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(160, 32, 240, 0.05), rgba(0, 212, 255, 0.05));
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
}

.community-card:hover {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.8) 0%, rgba(26, 26, 46, 0.6) 100%);
    border-color: rgba(160, 32, 240, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 0 40px rgba(160, 32, 240, 0.25), inset 0 0 30px rgba(160, 32, 240, 0.08), 0 10px 30px rgba(0, 0, 0, 0.3);
}

.community-card:hover::before {
    opacity: 1;
}

.community-card .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(160, 32, 240, 0.2), rgba(0, 212, 255, 0.2));
    border: 1px solid rgba(160, 32, 240, 0.3);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.community-card .feature-icon svg {
    filter: drop-shadow(0 0 10px rgba(160, 32, 240, 0.3));
}

.community-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(160, 32, 240, 0.4), rgba(0, 212, 255, 0.3));
    border-color: rgba(160, 32, 240, 0.6);
    box-shadow: 0 0 20px rgba(160, 32, 240, 0.5), 0 0 10px rgba(0, 212, 255, 0.3);
}

.community-card:hover .feature-icon svg {
    filter: drop-shadow(0 0 15px rgba(160, 32, 240, 0.6)) drop-shadow(0 0 8px rgba(0, 212, 255, 0.4));
}

.community-card:nth-child(3) {
    animation-delay: 0.3s;
}

.community-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* ========== HIGHLIGHT BLOCK ========== */
.community-highlight {
    margin-top: var(--spacing-2xl);
    position: relative;
    z-index: 1;
}

.highlight-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    background: linear-gradient(135deg, rgba(160, 32, 240, 0.15) 0%, rgba(0, 212, 255, 0.08) 100%);
    border: 1px solid rgba(160, 32, 240, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: 0 0 40px rgba(160, 32, 240, 0.15), inset 0 0 30px rgba(160, 32, 240, 0.05);
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
    opacity: 0;
}

.highlight-text {
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
}

.highlight-eyebrow {
    font-size: var(--font-size-sm);
    color: var(--color-accent-blue);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
}

.highlight-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-blue), var(--color-accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.highlight-desc {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    line-height: 1.8;
    max-width: 400px;
}

.highlight-visual {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Abstract CSS Controller/Community Visual */
.highlight-visual::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: 
        radial-gradient(circle at 35% 35%, rgba(160, 32, 240, 0.3), transparent 50%),
        radial-gradient(circle at 65% 65%, rgba(0, 212, 255, 0.2), transparent 50%);
    border-radius: 50%;
    border: 2px solid rgba(160, 32, 240, 0.2);
    animation: pulse 4s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(160, 32, 240, 0.2), 0 0 80px rgba(0, 212, 255, 0.1);
}

.highlight-visual::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(160, 32, 240, 0.4), rgba(0, 212, 255, 0.3));
    border-radius: var(--radius-lg);
    transform: rotate(45deg);
    animation: float 5s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(160, 32, 240, 0.3);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 40px rgba(160, 32, 240, 0.2), 0 0 80px rgba(0, 212, 255, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 60px rgba(160, 32, 240, 0.4), 0 0 120px rgba(0, 212, 255, 0.2);
    }
}

/* ========== FEATURES GRID ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.feature-card {
    background: rgba(42, 42, 78, 0.4);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    transition: all var(--transition-normal);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    display: flex;
    flex-direction: column;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.4s;
}

.feature-card:hover {
    background: rgba(42, 42, 78, 0.6);
    border-color: var(--color-accent-purple);
    transform: translateY(-8px);
    box-shadow: 0 0 20px rgba(160, 32, 240, 0.2);
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 8px var(--color-accent-purple));
}

.feature-title {
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-xl);
}

.feature-text {
    color: var(--color-text-muted);
    flex-grow: 1;
}

/* ========== MITZOCKEN SECTION ========== */
.mitzocken-section {
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.5), rgba(22, 33, 62, 0.5));
}

.section-cta {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-2xl);
}

/* ========== STATS SECTION ========== */
.stats-section {
    background: linear-gradient(135deg, rgba(160, 32, 240, 0.05), rgba(0, 212, 255, 0.05));
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
}

.stat-card {
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(42, 42, 78, 0.4);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.stat-card:nth-child(2) {
    animation-delay: 0.1s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(4) {
    animation-delay: 0.3s;
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
}

.stat-value {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xs);
}

.stat-desc {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

/* ========== EVENTS SECTION ========== */
.events-section {
    background: linear-gradient(180deg, rgba(22, 33, 62, 0.5), rgba(26, 26, 46, 0.5));
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.event-card {
    background: rgba(42, 42, 78, 0.4);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    transition: all var(--transition-normal);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.event-card:nth-child(2) {
    animation-delay: 0.2s;
}

.event-card:nth-child(3) {
    animation-delay: 0.4s;
}

.event-card:hover {
    background: rgba(42, 42, 78, 0.6);
    border-color: var(--color-accent-blue);
    transform: translateY(-8px);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.event-title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-xs);
}

.event-time {
    font-size: var(--font-size-sm);
    color: var(--color-accent-purple);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.event-desc {
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
}

.section-note {
    text-align: center;
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    margin-top: var(--spacing-lg);
    font-style: italic;
}

/* ========== STREAMER SECTION ========== */
.streamer-section {
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.5), rgba(22, 33, 62, 0.5));
}

.streamers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.streamer-card {
    background: rgba(42, 42, 78, 0.4);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all var(--transition-normal);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.streamer-card:nth-child(2) {
    animation-delay: 0.2s;
}

.streamer-card:nth-child(3) {
    animation-delay: 0.4s;
}

.streamer-card:hover {
    background: rgba(42, 42, 78, 0.6);
    border-color: var(--color-accent-purple);
    transform: translateY(-8px);
    box-shadow: 0 0 20px rgba(160, 32, 240, 0.2);
}

.streamer-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    color: #000;
}

.streamer-avatar svg {
    width: 50px;
    height: 50px;
}

.streamer-name {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xs);
}

.streamer-status {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
}

/* ========== ABOUT SECTION ========== */
.about-section {
    background: linear-gradient(180deg, rgba(22, 33, 62, 0.5), rgba(26, 26, 46, 0.5));
}

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

.about-text {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.about-text:nth-child(1) { animation-delay: 0s; }
.about-text:nth-child(2) { animation-delay: 0.1s; }
.about-text:nth-child(3) { animation-delay: 0.2s; }
.about-text:nth-child(4) { animation-delay: 0.3s; }

.about-highlight {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-blue), var(--color-accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: var(--spacing-2xl);
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, rgba(160, 32, 240, 0.1), rgba(0, 212, 255, 0.1));
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    text-align: center;
}

.cta-title {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--spacing-lg);
}

.cta-text {
    font-size: var(--font-size-xl);
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.8;
}

.cta-footer {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin-top: var(--spacing-xl);
    letter-spacing: 1px;
}

/* ========== FOOTER ========== */
.footer {
    background: linear-gradient(180deg, rgba(22, 33, 62, 0.8), rgba(26, 26, 46, 1));
    border-top: 1px solid var(--color-border);
    padding: var(--spacing-2xl) 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.footer-brand h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.footer-nav {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.footer-link {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

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

.footer-copyright {
    text-align: right;
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    /* Typography */
    h2 {
        font-size: var(--font-size-3xl);
    }

    .hero-title {
        font-size: clamp(2rem, 4vw, 3.5rem);
    }

    .hero-subtitle {
        font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    }

    .cta-title {
        font-size: var(--font-size-3xl);
    }

    /* Header */
    .menu-toggle {
        display: flex;
    }

    .header-container {
        padding: var(--spacing-sm) var(--spacing-lg);
    }

    .logo-img {
        height: clamp(45px, 7vw, 100px);
    }

    .nav {
        position: fixed;
        top: 60px;
        right: -300px;
        width: 250px;
        background: rgba(26, 26, 46, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: var(--spacing-lg);
        border-left: 1px solid var(--color-border);
        transition: right var(--transition-normal);
        z-index: var(--z-dropdown);
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }

    .menu-toggle[aria-expanded="true"] ~ .nav {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--spacing-md);
        align-items: flex-start;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link {
        width: 100%;
        padding: var(--spacing-sm) 0;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: var(--spacing-xl) 0;
    }

    .hero-inner {
        gap: var(--spacing-md);
    }

    .hero-logo {
        max-width: min(85vw, 350px);
    }

    .hero-logo-wrapper {
        margin-bottom: 0;
    }

    .hero-subtitle {
        max-width: 100%;
        margin: var(--spacing-sm) 0;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: var(--spacing-md);
    }

    .btn {
        width: 100%;
        max-width: 300px;
        padding: var(--spacing-md) var(--spacing-lg);
    }

    .hero-tagline {
        margin-top: var(--spacing-lg);
    }

    /* Sections */
    .section {
        padding: var(--spacing-xl) 0;
    }

    .features-grid,
    .events-grid,
    .streamers-grid {
        grid-template-columns: 1fr;
    }

    .community-cards {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .footer-copyright {
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Root */
    :root {
        --spacing-lg: 1.5rem;
        --spacing-xl: 2rem;
        --font-size-5xl: 2rem;
        --font-size-4xl: 1.75rem;
    }

    /* Header */
    .header-container {
        padding: var(--spacing-sm) var(--spacing-lg);
    }

    .logo-img {
        height: clamp(40px, 6vw, 80px);
    }

    /* Hero */
    .hero {
        padding: var(--spacing-md) 0;
    }

    .hero-content {
        padding: var(--spacing-lg);
    }

    .hero-inner {
        gap: var(--spacing-sm);
    }

    .hero-logo {
        max-width: min(80vw, 200px);
    }

    .hero-title {
        font-size: clamp(1.75rem, 3.5vw, 2.25rem);
        margin: var(--spacing-sm) 0;
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 2vw, 1rem);
        margin: var(--spacing-sm) 0;
    }

    /* Buttons */
    .btn {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: var(--font-size-sm);
        width: 100%;
        max-width: 100%;
    }

    .btn-large {
        padding: var(--spacing-sm) var(--spacing-lg);
    }

    .hero-buttons {
        margin-top: var(--spacing-sm);
        gap: var(--spacing-sm);
    }

    .hero-tagline {
        margin-top: var(--spacing-md);
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    /* Sections */
    .section {
        padding: var(--spacing-lg) 0;
    }

    .section-intro {
        font-size: 1rem;
    }

    .community-cards {
        grid-template-columns: 1fr !important;
    }

    .highlight-content {
        grid-template-columns: 1fr !important;
        padding: var(--spacing-lg);
        gap: var(--spacing-lg);
    }

    .highlight-title {
        font-size: clamp(1.5rem, 3vw, 2.5rem);
    }

    .highlight-desc {
        font-size: 1rem;
    }

    .highlight-visual {
        min-height: 200px;
    }

    /* Container */
    .container {
        padding: 0 var(--spacing-md);
    }
}

/* ========== ACCESSIBILITY ========== */
:focus-visible {
    outline: 2px solid var(--color-accent-blue);
    outline-offset: 2px;
}

button:focus-visible {
    outline: 2px solid var(--color-accent-blue);
    outline-offset: 2px;
}

a:focus-visible {
    outline: 2px solid var(--color-accent-blue);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-accent-purple);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: var(--radius-md);
    z-index: var(--z-modal);
}

.skip-link:focus-visible {
    top: 20px;
}

/* ========== UTILITY CLASSES ========== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
/* =====================================================
   MITZOCKEN V2
   ===================================================== */

.mitzocken-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 15% 40%,
            rgba(133, 47, 255, 0.12),
            transparent 32%
        ),
        radial-gradient(
            circle at 90% 60%,
            rgba(0, 183, 255, 0.10),
            transparent 35%
        );
}

.mitzocken-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.018) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black 20%,
            black 80%,
            transparent
        );
}

.mitzocken-header {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
}

.mitzocken-eyebrow {
    margin-bottom: 18px;

    font-size: 0.85rem;
    font-weight: 800;

    letter-spacing: 0.22em;

    color: #a83cff;
}

.mitzocken-layout {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: clamp(50px, 7vw, 110px);

    align-items: center;

    max-width: 1180px;
    margin: 0 auto;
}


/* LEFT SIDE */

.mitzocken-steps {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.mitzocken-step {
    position: relative;

    display: flex;

    gap: 22px;

    padding: 25px;

    border:
        1px solid rgba(135, 88, 255, 0.16);

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            rgba(32, 31, 65, 0.78),
            rgba(18, 27, 51, 0.7)
        );

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.mitzocken-step:hover {
    transform: translateX(6px);

    border-color:
        rgba(112, 79, 255, 0.45);

    box-shadow:
        0 15px 40px
        rgba(63, 31, 147, 0.14);
}

.mitzocken-step-number {
    flex: 0 0 auto;

    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    font-size: 0.9rem;
    font-weight: 900;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #8c2fff,
            #167dff
        );

    box-shadow:
        0 0 25px
        rgba(121, 55, 255, 0.25);
}

.mitzocken-step-content h3 {
    margin: 2px 0 8px;

    font-size: 1.15rem;

    color: #ffffff;
}

.mitzocken-step-content p {
    margin: 0;

    line-height: 1.7;

    color:
        rgba(225, 229, 244, 0.72);
}


/* RIGHT PREVIEW */

.mitzocken-preview {
    position: relative;
}

.mitzocken-preview-glow {
    position: absolute;

    width: 80%;
    height: 75%;

    left: 10%;
    top: 15%;

    background:
        linear-gradient(
            135deg,
            rgba(159, 42, 255, 0.28),
            rgba(0, 169, 255, 0.22)
        );

    filter: blur(80px);

    opacity: 0.75;

    pointer-events: none;
}

.mitzocken-preview-window {
    position: relative;

    overflow: hidden;

    border:
        1px solid rgba(120, 83, 255, 0.32);

    border-radius: 22px;

    background:
        rgba(18, 19, 43, 0.92);

    box-shadow:
        0 30px 80px
        rgba(0, 0, 0, 0.38),
        0 0 50px
        rgba(79, 42, 190, 0.09);

    backdrop-filter: blur(14px);
}

.preview-topbar {
    min-height: 54px;

    display: grid;

    grid-template-columns:
        1fr auto 1fr;

    align-items: center;

    padding: 0 19px;

    border-bottom:
        1px solid rgba(255,255,255,0.07);

    background:
        rgba(255,255,255,0.025);
}

.preview-dots {
    display: flex;
    gap: 7px;
}

.preview-dots span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.2);
}

.preview-label {
    font-size: 0.72rem;
    font-weight: 800;

    letter-spacing: 0.14em;

    color:
        rgba(255,255,255,0.55);
}

.preview-live {
    justify-self: end;

    font-size: 0.67rem;
    font-weight: 800;

    letter-spacing: 0.08em;

    color: #22d38a;
}

.preview-content {
    padding: clamp(24px, 4vw, 38px);
}

.preview-command {
    display: inline-flex;

    gap: 8px;

    align-items: center;

    margin-bottom: 20px;

    padding: 8px 13px;

    border:
        1px solid rgba(116, 90, 255, 0.20);

    border-radius: 9px;

    background:
        rgba(91, 64, 191, 0.10);

    font-family:
        monospace;
}

.command-symbol {
    color: #b45cff;
}

.command-name {
    font-weight: 700;

    color: #d7ddff;
}

.preview-search-card {
    padding: 24px;

    border:
        1px solid rgba(255,255,255,0.07);

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            rgba(39, 36, 76, 0.82),
            rgba(24, 31, 57, 0.82)
        );
}

.preview-search-header {
    display: flex;

    gap: 15px;

    align-items: center;

    margin-bottom: 25px;
}

.preview-game-icon {
    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    font-size: 1.5rem;

    background:
        linear-gradient(
            135deg,
            rgba(142, 48, 255, 0.32),
            rgba(0, 176, 255, 0.22)
        );
}

.preview-small {
    display: block;

    margin-bottom: 3px;

    font-size: 0.62rem;
    font-weight: 900;

    letter-spacing: 0.16em;

    color: #a862ff;
}

.preview-search-header h3 {
    margin: 0;

    font-size: 1.12rem;

    color: #ffffff;
}

.preview-info-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px;

    margin-bottom: 24px;
}

.preview-info {
    padding: 14px;

    border-radius: 11px;

    background:
        rgba(10, 13, 31, 0.5);
}

.preview-info span {
    display: block;

    margin-bottom: 5px;

    font-size: 0.58rem;
    font-weight: 800;

    letter-spacing: 0.12em;

    color:
        rgba(188, 194, 220, 0.52);
}

.preview-info strong {
    font-size: 0.84rem;
    font-weight: 700;

    color:
        rgba(244, 246, 255, 0.88);
}

.preview-player-row {
    display: flex;

    gap: 15px;

    align-items: center;

    padding:
        18px 0;

    border-top:
        1px solid rgba(255,255,255,0.06);

    border-bottom:
        1px solid rgba(255,255,255,0.06);
}

.preview-avatars {
    display: flex;
}

.preview-avatars span {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-left: -7px;

    border:
        2px solid #1b1c36;

    border-radius: 50%;

    font-size: 0.64rem;
    font-weight: 900;

    color: white;

    background:
        linear-gradient(
            135deg,
            #7d32e8,
            #087ace
        );
}

.preview-avatars span:first-child {
    margin-left: 0;
}

.preview-player-text {
    display: flex;

    flex-direction: column;

    gap: 2px;
}

.preview-player-text strong {
    font-size: 0.83rem;

    color: white;
}

.preview-player-text span {
    font-size: 0.74rem;

    color:
        rgba(215,219,237,0.55);
}

.preview-button {
    margin-top: 20px;

    padding: 13px;

    text-align: center;

    border-radius: 10px;

    font-size: 0.85rem;
    font-weight: 800;

    color: #ffffff;

    background:
        linear-gradient(
            90deg,
            #8b2dff,
            #117aff,
            #00b6df
        );

    box-shadow:
        0 10px 30px
        rgba(80, 53, 221, 0.16);
}


/* BOTTOM CTA */

.mitzocken-bottom {
    position: relative;
    z-index: 2;

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 30px;

    max-width: 1180px;

    margin: 65px auto 0;

    padding: 26px 30px;

    border:
        1px solid rgba(124, 78, 255, 0.18);

    border-radius: 18px;

    background:
        rgba(26, 27, 56, 0.55);
}

.mitzocken-bottom p {
    margin: 0;

    line-height: 1.6;

    color:
        rgba(221,225,241,0.65);
}

.mitzocken-bottom strong {
    color: #ffffff;
}


/* RESPONSIVE */

@media (max-width: 950px) {

    .mitzocken-layout {
        grid-template-columns: 1fr;

        max-width: 720px;
    }

    .mitzocken-preview {
        margin-top: 10px;
    }

    .mitzocken-bottom {
        max-width: 720px;

        flex-direction: column;

        text-align: center;
    }

}


@media (max-width: 600px) {

    .mitzocken-header {
        margin-bottom: 45px;
    }

    .mitzocken-step {
        padding: 20px;

        gap: 16px;
    }

    .mitzocken-step-number {
        width: 46px;
        height: 46px;
    }

    .preview-content {
        padding: 17px;
    }

    .preview-search-card {
        padding: 18px;
    }

    .preview-info-grid {
        grid-template-columns: 1fr;
    }

    .preview-label {
        display: none;
    }

    .preview-topbar {
        grid-template-columns: 1fr 1fr;
    }

    .mitzocken-bottom {
        margin-top: 45px;

        padding: 23px 20px;
    }

    .mitzocken-bottom .btn {
        width: 100%;
    }

}
/* =====================================================
   EVENTS V2
   ===================================================== */

.events-section {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(20, 122, 255, 0.10),
            transparent 32%
        ),
        radial-gradient(
            circle at 12% 75%,
            rgba(142, 45, 255, 0.10),
            transparent 35%
        );
}

.events-section::before {
    content: "";
    position: absolute;
    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.014) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.014) 1px,
            transparent 1px
        );

    background-size: 60px 60px;
}

.events-header {
    position: relative;
    z-index: 2;

    max-width: 860px;

    margin: 0 auto 70px;

    text-align: center;
}

.events-eyebrow {
    margin-bottom: 18px;

    font-size: 0.85rem;
    font-weight: 800;

    letter-spacing: 0.22em;

    color: #2ab8ff;
}

.events-layout {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(0, 0.8fr);

    gap: 28px;

    max-width: 1180px;

    margin: 0 auto;
}


/* FEATURED EVENT */

.event-featured {
    position: relative;

    overflow: hidden;

    padding: 34px;

    border:
        1px solid rgba(111, 78, 255, 0.28);

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(30, 29, 67, 0.94),
            rgba(18, 28, 52, 0.92)
        );

    box-shadow:
        0 25px 70px rgba(0,0,0,0.32),
        0 0 45px rgba(75, 49, 194, 0.08);
}

.event-featured-glow {
    position: absolute;

    width: 280px;
    height: 280px;

    right: -80px;
    top: -100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(45, 126, 255, 0.28),
            transparent 68%
        );

    filter: blur(18px);

    pointer-events: none;
}

.event-featured-top {
    position: relative;
    z-index: 2;

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 20px;

    margin-bottom: 34px;
}

.event-badge {
    display: inline-flex;

    padding: 8px 12px;

    border-radius: 9px;

    font-size: 0.68rem;
    font-weight: 900;

    letter-spacing: 0.13em;

    color: #c9a5ff;

    background:
        rgba(136, 58, 255, 0.10);

    border:
        1px solid rgba(142, 73, 255, 0.22);
}

.event-status {
    font-size: 0.68rem;
    font-weight: 800;

    letter-spacing: 0.08em;

    color: #24d69a;
}

.event-featured-content {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: auto 1fr;

    gap: 26px;

    align-items: start;
}

.event-date-box {
    width: 92px;
    min-height: 92px;

    display: flex;

    flex-direction: column;

    justify-content: center;
    align-items: center;

    gap: 6px;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #812fff,
            #187eff
        );

    box-shadow:
        0 14px 35px
        rgba(73, 61, 216, 0.24);
}

.event-date-day {
    font-size: 0.72rem;
    font-weight: 900;

    letter-spacing: 0.14em;

    color:
        rgba(255,255,255,0.72);
}

.event-date-box strong {
    font-size: 1.15rem;

    color: #fff;
}

.event-type {
    margin: 0 0 8px;

    font-size: 0.7rem;
    font-weight: 900;

    letter-spacing: 0.14em;

    color: #a866ff;
}

.event-featured-text h3 {
    margin: 0 0 14px;

    max-width: 600px;

    font-size:
        clamp(1.5rem, 2.5vw, 2.15rem);

    line-height: 1.2;

    color: #ffffff;
}

.event-featured-text p:last-child {
    margin: 0;

    max-width: 650px;

    line-height: 1.75;

    color:
        rgba(220, 225, 243, 0.68);
}

.event-featured-meta {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 12px;

    margin: 34px 0 28px;
}

.event-meta-item {
    padding: 16px;

    border-radius: 12px;

    background:
        rgba(8, 12, 29, 0.46);

    border:
        1px solid rgba(255,255,255,0.055);
}

.event-meta-item span {
    display: block;

    margin-bottom: 5px;

    font-size: 0.6rem;
    font-weight: 800;

    letter-spacing: 0.12em;

    color:
        rgba(179, 187, 216, 0.52);
}

.event-meta-item strong {
    font-size: 0.85rem;

    color:
        rgba(244, 247, 255, 0.92);
}

.event-featured-button {
    position: relative;
    z-index: 2;
}


/* SMALL EVENT CARDS */

.events-upcoming {
    display: flex;

    flex-direction: column;

    gap: 28px;
}

.event-small {
    flex: 1;

    position: relative;

    padding: 28px;

    border:
        1px solid rgba(116, 82, 255, 0.17);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(29, 29, 62, 0.82),
            rgba(20, 28, 50, 0.78)
        );

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.event-small:hover {
    transform: translateY(-5px);

    border-color:
        rgba(83, 134, 255, 0.36);

    box-shadow:
        0 18px 45px
        rgba(31, 52, 120, 0.14);
}

.event-small-top {
    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 20px;

    margin-bottom: 24px;
}

.event-small-number {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 11px;

    font-size: 0.72rem;
    font-weight: 900;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #7c31ff,
            #147eff
        );
}

.event-small-label {
    font-size: 0.62rem;
    font-weight: 900;

    letter-spacing: 0.12em;

    color:
        rgba(192, 174, 255, 0.65);
}

.event-small h3 {
    margin: 0 0 8px;

    font-size: 1.25rem;

    color: #ffffff;
}

.event-small-time {
    margin: 0 0 18px;

    font-size: 0.82rem;
    font-weight: 700;

    color: #41b9ff;
}

.event-small-desc {
    margin: 0;

    line-height: 1.7;

    color:
        rgba(219, 224, 241, 0.65);
}

.event-small-footer {
    margin-top: 24px;

    padding-top: 18px;

    border-top:
        1px solid rgba(255,255,255,0.055);
}

.event-small-footer span {
    font-size: 0.75rem;
    font-weight: 700;

    color:
        rgba(224, 229, 245, 0.62);
}


/* EVENTS BOTTOM */

.events-bottom {
    position: relative;
    z-index: 2;

    max-width: 1180px;

    margin: 30px auto 0;

    padding: 24px 28px;

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 30px;

    border:
        1px solid rgba(82, 119, 255, 0.14);

    border-radius: 16px;

    background:
        rgba(20, 27, 50, 0.48);
}

.events-bottom-label {
    display: block;

    margin-bottom: 6px;

    font-size: 0.62rem;
    font-weight: 900;

    letter-spacing: 0.15em;

    color: #3fafff;
}

.events-bottom p {
    margin: 0;

    color:
        rgba(218, 224, 242, 0.62);
}

.events-bottom-command {
    flex: 0 0 auto;

    padding: 10px 16px;

    border-radius: 10px;

    border:
        1px solid rgba(136, 74, 255, 0.23);

    background:
        rgba(101, 57, 189, 0.11);

    font-family: monospace;
    font-weight: 800;

    color: #c79cff;
}


/* RESPONSIVE */

@media (max-width: 950px) {

    .events-layout {
        grid-template-columns: 1fr;

        max-width: 760px;
    }

    .events-upcoming {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .events-bottom {
        max-width: 760px;
    }

}


@media (max-width: 650px) {

    .events-header {
        margin-bottom: 45px;
    }

    .event-featured {
        padding: 24px;
    }

    .event-featured-content {
        grid-template-columns: 1fr;
    }

    .event-date-box {
        width: 76px;
        min-height: 76px;
    }

    .event-featured-meta {
        grid-template-columns: 1fr;
    }

    .events-upcoming {
        grid-template-columns: 1fr;
    }

    .events-bottom {
        flex-direction: column;

        align-items: flex-start;
    }

}
/* =====================================================
   EVENTS DYNAMIC STATES
   ===================================================== */

.events-loading,
.events-empty {
    position: relative;
    z-index: 2;

    max-width: 760px;

    margin: 0 auto;

    padding: 55px 35px;

    text-align: center;

    border: 1px solid rgba(105, 79, 255, 0.2);
    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(30, 29, 67, 0.78),
            rgba(18, 28, 52, 0.78)
        );
}

.events-loading {
    color: rgba(221, 226, 244, 0.65);
}

.events-empty-label {
    display: block;

    margin-bottom: 14px;

    font-size: 0.68rem;
    font-weight: 900;

    letter-spacing: 0.16em;

    color: #a45cff;
}

.events-empty h3 {
    margin: 0 0 15px;

    font-size: clamp(1.5rem, 3vw, 2rem);

    color: #ffffff;
}

.events-empty p {
    max-width: 600px;

    margin: 0 auto 28px;

    line-height: 1.7;

    color: rgba(221, 226, 244, 0.66);
}

.event-placeholder {
    opacity: 0.72;
}
/* =====================================================
   STREAMER V2
   ===================================================== */

.streamer-section {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 25%,
            rgba(138, 43, 255, 0.10),
            transparent 34%
        ),
        radial-gradient(
            circle at 90% 75%,
            rgba(0, 174, 255, 0.09),
            transparent 35%
        );
}

.streamer-header {
    position: relative;
    z-index: 2;

    max-width: 850px;
    margin: 0 auto 70px;

    text-align: center;
}

.streamer-eyebrow {
    margin-bottom: 18px;

    font-size: 0.85rem;
    font-weight: 800;

    letter-spacing: 0.22em;

    color: #b04dff;
}

.streamer-layout {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(0, 0.75fr);

    gap: 28px;

    max-width: 1180px;
    margin: 0 auto;
}


/* FEATURED STREAMER */

.streamer-featured {
    position: relative;
    overflow: hidden;

    min-height: 390px;

    padding: 36px;

    border:
        1px solid rgba(125, 77, 255, 0.28);

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(30, 29, 67, 0.95),
            rgba(18, 28, 52, 0.92)
        );

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.30);
}

.streamer-featured-glow {
    position: absolute;

    width: 320px;
    height: 320px;

    right: -90px;
    top: -100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(38, 127, 255, 0.30),
            transparent 68%
        );

    filter: blur(20px);

    pointer-events: none;
}

.streamer-featured-badge {
    position: relative;
    z-index: 2;

    display: inline-flex;

    padding: 8px 13px;

    border-radius: 9px;

    font-size: 0.67rem;
    font-weight: 900;

    letter-spacing: 0.14em;

    color: #c89bff;

    background:
        rgba(132, 55, 255, 0.10);

    border:
        1px solid rgba(139, 66, 255, 0.23);
}

.streamer-featured-content {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;

    gap: 34px;

    min-height: 280px;
}

.streamer-featured-avatar {
    flex: 0 0 auto;

    width: 140px;
    height: 140px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 3.4rem;
    font-weight: 900;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #9230ff,
            #167cff,
            #00b9df
        );

    box-shadow:
        0 0 45px
        rgba(95, 57, 230, 0.28);
}

.streamer-platform {
    margin: 0 0 8px;

    font-size: 0.7rem;
    font-weight: 900;

    letter-spacing: 0.16em;

    color: #b45dff;
}

.streamer-featured-info h3 {
    margin: 0 0 14px;

    font-size:
        clamp(2rem, 4vw, 3rem);

    color: #ffffff;
}

.streamer-description {
    max-width: 560px;

    margin: 0 0 28px;

    line-height: 1.75;

    color:
        rgba(221, 226, 244, 0.68);
}


/* SMALL STREAMER CARDS */

.streamer-list {
    display: flex;

    flex-direction: column;

    gap: 28px;
}

.streamer-small {
    flex: 1;

    display: flex;

    gap: 22px;

    align-items: center;

    padding: 27px;

    border:
        1px solid rgba(119, 82, 255, 0.17);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(29, 29, 62, 0.82),
            rgba(20, 28, 50, 0.78)
        );
}

.streamer-small-avatar {
    flex: 0 0 auto;

    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 16px;

    font-size: 1.4rem;
    font-weight: 900;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #7f32ff,
            #137eff
        );
}

.streamer-small-label {
    display: block;

    margin-bottom: 7px;

    font-size: 0.61rem;
    font-weight: 900;

    letter-spacing: 0.13em;

    color:
        rgba(194, 166, 255, 0.70);
}

.streamer-small h3 {
    margin: 0 0 8px;

    font-size: 1.18rem;

    color: #ffffff;
}

.streamer-small p {
    margin: 0;

    line-height: 1.65;

    color:
        rgba(219, 224, 241, 0.62);
}

.streamer-placeholder {
    opacity: 0.82;
}


/* BOTTOM CTA */

.streamer-bottom {
    position: relative;
    z-index: 2;

    max-width: 1180px;

    margin: 30px auto 0;

    padding: 25px 28px;

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 30px;

    border:
        1px solid rgba(98, 105, 255, 0.17);

    border-radius: 17px;

    background:
        rgba(23, 27, 53, 0.56);
}

.streamer-bottom-label {
    display: block;

    margin-bottom: 6px;

    font-size: 0.62rem;
    font-weight: 900;

    letter-spacing: 0.14em;

    color: #42baff;
}

.streamer-bottom p {
    margin: 0;

    max-width: 700px;

    line-height: 1.6;

    color:
        rgba(220, 225, 242, 0.62);
}


/* RESPONSIVE */

@media (max-width: 950px) {

    .streamer-layout {
        grid-template-columns: 1fr;

        max-width: 760px;
    }

    .streamer-list {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .streamer-bottom {
        max-width: 760px;
    }

}

@media (max-width: 650px) {

    .streamer-header {
        margin-bottom: 45px;
    }

    .streamer-featured {
        padding: 25px;
    }

    .streamer-featured-content {
        flex-direction: column;

        align-items: flex-start;

        margin-top: 35px;
    }

    .streamer-featured-avatar {
        width: 105px;
        height: 105px;

        font-size: 2.5rem;
    }

    .streamer-list {
        grid-template-columns: 1fr;
    }

    .streamer-small {
        padding: 22px;
    }

    .streamer-bottom {
        flex-direction: column;

        align-items: flex-start;
    }

    .streamer-bottom .btn {
        width: 100%;
    }

}