/* ========================================
   WUESTENIGEL.TV — Premium Media Kit
   Twitch CI Color Theme
   ======================================== */

:root {
    --bg: #0e0b1a;
    --bg-grid: rgba(145, 70, 255, 0.03);
    --glass: rgba(18, 14, 35, 0.65);
    --glass-hover: rgba(30, 22, 55, 0.75);
    --glass-border: rgba(145, 70, 255, 0.12);
    --glass-border-hover: rgba(145, 70, 255, 0.35);
    --accent: #9146ff;
    --accent-light: #bf94ff;
    --accent-dark: #772ce8;
    --accent2: #b9a3e3;
    --gradient-text: linear-gradient(135deg, #bf94ff, #9146ff, #e9d5ff);
    --gradient-accent: linear-gradient(135deg, #9146ff, #772ce8);
    --gradient-glow: linear-gradient(135deg, #9146ff, #bf94ff);
    --glow-sm: 0 0 15px rgba(145, 70, 255, 0.2);
    --glow-md: 0 0 30px rgba(145, 70, 255, 0.2), 0 0 60px rgba(145, 70, 255, 0.08);
    --glow-lg: 0 0 40px rgba(145, 70, 255, 0.25), 0 0 80px rgba(145, 70, 255, 0.1);
    --text: #e5e1ef;
    --text-secondary: #9e97b0;
    --text-muted: #6b6280;
    --win: #22c55e;
    --loss: #ef4444;
    --draw: #94a3b8;
    --valorant: #ff4654;
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(var(--bg-grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--bg-grid) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.glow-orb { position: fixed; border-radius: 50%; pointer-events: none; z-index: 0; filter: blur(80px); }
.glow-orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(145, 70, 255, 0.1), transparent 70%); top: -100px; left: 50%; transform: translateX(-50%); }
.glow-orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(191, 148, 255, 0.06), transparent 70%); top: 60%; right: -100px; }
.glow-orb-3 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(145, 70, 255, 0.07), transparent 70%); bottom: 10%; left: -150px; }

h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; line-height: 1.2; }
a { color: var(--accent-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: #fff; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 1; }

/* ── Glass Card ───────────────────────── */

.glass {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.glass:hover {
    background: var(--glass-hover);
    border-color: var(--glass-border-hover);
    box-shadow: var(--glow-sm);
}

/* ── Navigation ───────────────────────── */

.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1rem 0; transition: all var(--transition); }

.nav.scrolled {
    background: rgba(14, 11, 26, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; font-weight: 700; color: #fff; letter-spacing: 0.05em; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { color: var(--text-secondary); font-size: 0.9rem; font-weight: 500; transition: color var(--transition); }
.nav-links a:hover { color: #fff; }
.nav-cta { background: var(--gradient-accent); color: #fff !important; padding: 0.5rem 1.25rem; border-radius: 100px; font-weight: 600; box-shadow: var(--glow-sm); }
.nav-cta:hover { opacity: 0.9; box-shadow: var(--glow-md); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* ── Hero ─────────────────────────────── */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 1.5rem 4rem;
    overflow: hidden;
    z-index: 1;
}

.hero-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(145, 70, 255, 0.12), transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.hero-content { position: relative; z-index: 1; max-width: 700px; }

.hero-photo {
    width: 260px;
    height: 260px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    padding: 3px;
    background: var(--gradient-glow);
    box-shadow: var(--glow-lg);
    animation: float 4s ease-in-out infinite;
    overflow: hidden;
}

.hero-photo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.hero-photo-portrait {
    width: auto;
    height: auto;
    max-width: 320px;
    border-radius: 0;
    padding: 0;
    background: none;
    box-shadow: none;
}

.hero-photo-portrait img {
    border-radius: 0;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 30px rgba(145, 70, 255, 0.25));
}

.hero-photo-wide {
    width: auto;
    height: auto;
    max-width: 420px;
    border-radius: 0;
    padding: 0;
    background: none;
    box-shadow: none;
}

.hero-photo-wide img {
    border-radius: 0;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 30px rgba(145, 70, 255, 0.25));
}

.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem 0.4rem 0.6rem;
    background: rgba(145, 70, 255, 0.15);
    border: 1px solid rgba(145, 70, 255, 0.35);
    border-radius: 100px;
    margin-bottom: 1.25rem;
    animation: badge-glow 2s ease-in-out infinite alternate;
}

.partner-badge img { width: 24px; height: 24px; }
.partner-badge span { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-light); }

@keyframes badge-glow {
    0% { box-shadow: 0 0 10px rgba(145, 70, 255, 0.15); }
    100% { box-shadow: 0 0 25px rgba(145, 70, 255, 0.3), 0 0 50px rgba(145, 70, 255, 0.08); }
}

.hero-title {
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    letter-spacing: 0.08em;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 30px rgba(145, 70, 255, 0.25));
}

.hero-subtitle { font-size: 1.15rem; color: var(--text-secondary); margin-bottom: 1rem; font-weight: 400; letter-spacing: 0.02em; }

.hero-tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    font-style: italic;
    color: var(--accent-light);
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

.hero-bio { color: var(--text-muted); font-size: 1rem; max-width: 560px; margin: 0 auto 2rem; line-height: 1.7; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.8rem 2rem; border-radius: 100px; font-weight: 600; font-size: 0.95rem; transition: all var(--transition); cursor: pointer; border: none; font-family: inherit; }
.btn-primary { background: var(--gradient-accent); color: #fff; box-shadow: var(--glow-md); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--glow-lg); color: #fff; }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--glass-border); }
.btn-outline:hover { border-color: var(--accent); color: #fff; transform: translateY(-3px); box-shadow: var(--glow-sm); }

.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); animation: bounce 2s infinite; color: var(--text-muted); font-size: 1.2rem; z-index: 1; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ── Stats Bar ────────────────────────── */

.stats-bar {
    position: relative;
    z-index: 1;
    padding: 2.5rem 0;
    background: rgba(14, 11, 26, 0.8);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.stats-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; text-align: center; }
.stat-item { padding: 0.75rem 0.5rem; }

.stat-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.4rem;
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label { display: block; font-size: 0.8rem; color: var(--text-secondary); font-weight: 500; margin-bottom: 0.15rem; }
.stat-link { display: block; font-size: 0.65rem; color: var(--text-muted); transition: color var(--transition); }
.stat-link:hover { color: var(--accent-light); }

/* ── Sections ─────────────────────────── */

.section { padding: 5rem 0; position: relative; z-index: 1; }
.section-compact { padding-top: 1rem; }
.section-compact .section-title { margin-bottom: 2rem; }

.section-hero-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.section-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--glass-border);
    box-shadow: var(--glow-sm);
    flex-shrink: 0;
}

.section-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gaming-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.gaming-hero {
    text-align: center;
    position: relative;
}

.gaming-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 30px;
    background: radial-gradient(ellipse, rgba(145, 70, 255, 0.3), transparent 70%);
    border-radius: 50%;
    filter: blur(12px);
}

.gaming-hero img {
    width: 100%;
    max-width: 320px;
    height: auto;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 20px rgba(145, 70, 255, 0.25)) drop-shadow(0 15px 35px rgba(0, 0, 0, 0.5));
}
.section-dark { background: rgba(14, 11, 26, 0.5); }

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title i { -webkit-text-fill-color: var(--accent); }
.section-subtitle { text-align: center; color: var(--text-secondary); margin-bottom: 3rem; font-size: 1rem; }
.section-subtitle a { color: var(--accent-light); border-bottom: 1px solid transparent; }
.section-subtitle a:hover { border-bottom-color: var(--accent-light); }

.section-image {
    max-width: 420px;
    margin: 0 auto 2.5rem;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glow-md);
}

.section-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ── About ────────────────────────────── */

.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: start; }

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

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.82rem;
    color: var(--text);
    font-weight: 500;
    transition: all var(--transition);
}

.highlight:hover { border-color: var(--glass-border-hover); box-shadow: var(--glow-sm); }
.highlight i { color: var(--accent-light); font-size: 0.85rem; }

.about-platforms h3 { font-size: 1.1rem; margin-bottom: 1rem; color: var(--text); }
.platform-list { display: flex; flex-direction: column; gap: 0.5rem; }

.platform-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.7rem 1rem;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.platform-item:hover { background: var(--glass-hover); border-color: var(--glass-border-hover); transform: translateX(6px); box-shadow: var(--glow-sm); color: #fff; }
.platform-item i { font-size: 1.2rem; width: 22px; text-align: center; color: var(--accent-light); }
.platform-item div { display: flex; flex-direction: column; }
.platform-item strong { font-size: 0.88rem; color: var(--text); }
.platform-item span { font-size: 0.78rem; color: var(--text-muted); }

/* ── Chess + Valorant ─────────────────── */

.chess-ratings { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 2rem; }

.rating-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.rating-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient-glow); opacity: 0; transition: opacity var(--transition); }
.rating-card:hover { transform: translateY(-6px); border-color: var(--glass-border-hover); box-shadow: var(--glow-md); }
.rating-card:hover::before { opacity: 1; }

.rating-icon { font-size: 1.5rem; color: #f59e0b; margin-bottom: 0.75rem; filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.3)); }
.rating-icon.valorant-icon { color: var(--valorant); filter: drop-shadow(0 0 8px rgba(255, 70, 84, 0.3)); }

.rating-card h3 { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.08em; }

.rating-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-best { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.rating-record { font-size: 0.8rem; display: flex; justify-content: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.rating-record .win { color: var(--win); font-weight: 600; }
.rating-record .loss { color: var(--loss); font-weight: 600; }
.rating-record .draw { color: var(--draw); font-weight: 600; }
.rating-record .stat-extra { color: var(--text-muted); }

.rating-bar { height: 3px; background: rgba(255, 255, 255, 0.04); border-radius: 2px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: var(--gradient-glow); border-radius: 2px; transition: width 1.5s ease-out; box-shadow: 0 0 8px rgba(145, 70, 255, 0.4); }

/* ── Recent Games ─────────────────────── */

.recent-games { max-width: 700px; margin: 0 auto; }
.recent-games h3 { font-size: 1.1rem; margin-bottom: 1rem; text-align: center; }
.games-list { display: flex; flex-direction: column; gap: 0.5rem; }

.game-row {
    display: grid;
    grid-template-columns: 55px 1fr auto auto;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    transition: all var(--transition);
}

.game-row:hover { background: var(--glass-hover); border-color: var(--glass-border-hover); box-shadow: var(--glow-sm); }

.game-result { font-weight: 700; font-family: 'Space Grotesk', sans-serif; font-size: 0.8rem; padding: 0.25rem 0.6rem; border-radius: 6px; text-align: center; }
.game-result.win { background: rgba(34, 197, 94, 0.12); color: var(--win); }
.game-result.loss { background: rgba(239, 68, 68, 0.12); color: var(--loss); }
.game-result.draw { background: rgba(148, 163, 184, 0.12); color: var(--draw); }

.game-opponent { color: var(--text); font-weight: 500; }
.game-opponent small { color: var(--text-muted); font-weight: 400; }
.game-mode { color: var(--text-muted); font-size: 0.8rem; }
.game-date { color: var(--text-muted); font-size: 0.8rem; text-align: right; }
.loading-spinner { text-align: center; color: var(--text-muted); padding: 2rem; }

/* ── Streaming ────────────────────────── */

.streaming-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 2.5rem; }

.stream-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition);
}

.stream-card:hover { transform: translateY(-6px); border-color: rgba(145, 70, 255, 0.35); box-shadow: var(--glow-md); }
.stream-icon { font-size: 1.5rem; color: var(--accent); margin-bottom: 0.75rem; filter: drop-shadow(0 0 8px rgba(145, 70, 255, 0.35)); }

.stream-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stream-label { font-size: 0.85rem; color: var(--text-secondary); }

.streaming-source { text-align: center; color: var(--text-muted); font-size: 0.75rem; margin-top: 1.5rem; letter-spacing: 0.05em; }

/* ── Charts ───────────────────────────── */

.charts-row { display: grid; grid-template-columns: 1.5fr 1fr; gap: 1.5rem; }

.chart-container {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all var(--transition);
}

.chart-container:hover { border-color: var(--glass-border-hover); box-shadow: var(--glow-sm); }
.chart-container h3 { font-size: 0.9rem; margin-bottom: 1rem; color: var(--text-secondary); text-align: center; font-weight: 500; }
.chart-wrap { position: relative; height: 260px; }
.chart-wrap-pie { height: 300px; }

/* ── Clips ────────────────────────────── */

.clips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.clip-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.clip-card:hover {
    transform: translateY(-6px);
    border-color: var(--glass-border-hover);
    box-shadow: var(--glow-md);
}

.clip-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.clip-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.clip-card:hover .clip-thumb img {
    transform: scale(1.05);
}

.clip-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity var(--transition);
}

.clip-card:hover .clip-play { opacity: 1; }

.clip-play i {
    font-size: 2.5rem;
    color: #fff;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.clip-info {
    padding: 0.75rem 1rem;
}

.clip-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.clip-views {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.clip-card-short .clip-thumb {
    aspect-ratio: 9/16;
}

.clip-card-short .clip-thumb img {
    object-position: center top;
}

.clip-views i { margin-right: 0.25rem; }

.clip-thumb-more {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--glass);
    aspect-ratio: 16/9;
    color: var(--accent-light);
}

.clip-thumb-more i { font-size: 2rem; }
.clip-thumb-more span { font-size: 0.9rem; font-weight: 600; }

/* ── Partners ─────────────────────────── */

.partners-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; }

.partner-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all var(--transition);
}

.partner-card:hover { transform: translateY(-6px); border-color: var(--glass-border-hover); box-shadow: var(--glow-md); }
.partner-name { font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 0.25rem; }
.partner-type { font-size: 0.75rem; color: var(--text-muted); }

/* ── Services ─────────────────────────── */

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.service-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    transition: all var(--transition);
}

.service-card:hover { transform: translateY(-6px); border-color: var(--glass-border-hover); box-shadow: var(--glow-md); }
.service-icon { font-size: 1.75rem; margin-bottom: 1rem; color: var(--accent); filter: drop-shadow(0 0 10px rgba(145, 70, 255, 0.3)); }
.service-card h3 { font-size: 1rem; margin-bottom: 0.5rem; color: #fff; }
.service-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ── Contact ──────────────────────────── */

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; max-width: 700px; margin: 0 auto 2rem; }

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem 1rem;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: all var(--transition);
    text-align: center;
}

.contact-card:hover { border-color: var(--glass-border-hover); transform: translateY(-6px); box-shadow: var(--glow-md); color: #fff; }
.contact-card i { font-size: 1.5rem; color: var(--accent); }
.contact-card strong { color: var(--text); font-size: 0.95rem; }
.contact-card span { color: var(--text-muted); font-size: 0.85rem; }

/* ── Footer ───────────────────────────── */

.footer { border-top: 1px solid var(--glass-border); padding: 2rem 0; position: relative; z-index: 1; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-logo { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1rem; color: var(--text-secondary); }
.footer-logo span { color: var(--accent); }
.footer-social { display: flex; gap: 1.25rem; }
.footer-social a { color: var(--text-muted); font-size: 1.1rem; transition: all var(--transition); }
.footer-social a:hover { color: var(--accent-light); filter: drop-shadow(0 0 8px rgba(145, 70, 255, 0.4)); }
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }

/* ── Animations ───────────────────────── */

.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ───────────────────────── */

@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .streaming-stats { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .charts-row { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: repeat(3, 1fr); }
    .clips-grid { grid-template-columns: repeat(2, 1fr); }
    .gaming-layout { grid-template-columns: 1fr 1fr; }
    .gaming-hero img { max-width: 260px; }
}

@media (max-width: 768px) {
    .section-hero-row { flex-direction: column; text-align: center; }
    .section-hero-row .section-title, .section-hero-row .section-subtitle { justify-content: center !important; text-align: center !important; }
    .nav-links { display: none; position: fixed; inset: 0; background: rgba(14, 11, 26, 0.98); backdrop-filter: blur(20px); flex-direction: column; align-items: center; justify-content: center; gap: 2rem; z-index: 999; }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 1.25rem; }
    .nav-toggle { display: flex; z-index: 1001; }
    .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
    .stat-number { font-size: 1.75rem; }
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .gaming-layout { grid-template-columns: 1fr; }
    .gaming-hero img { max-width: 240px; }
    .chess-ratings { grid-template-columns: 1fr 1fr; }
    .streaming-stats { grid-template-columns: 1fr 1fr; }
    .contact-grid, .services-grid { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .clips-grid { grid-template-columns: 1fr; }
    .game-row { grid-template-columns: 55px 1fr auto; }
    .game-date { display: none; }
    .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .hero-photo { width: 180px; height: 180px; }
    .hero-photo-portrait { max-width: 240px; width: auto; height: auto; }
    .hero-photo-wide { max-width: 300px; width: auto; height: auto; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-number { font-size: 1.5rem; }
    .rating-value { font-size: 1.75rem; }
    .chess-ratings { grid-template-columns: 1fr 1fr; }
    .streaming-stats { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: 1fr 1fr; }
    .chart-wrap, .chart-wrap-pie { height: 220px; }
}
