@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;600;700&family=Barlow+Condensed:wght@300;400;600;700&family=Space+Mono:wght@400;700&display=swap');

/* ═══════════════════════════════════════════════════════════
   F&J GAMING — DUAL IDENTITY DESIGN SYSTEM
   Fredax: Deep Purple + Cyan eyes  (#3d0066 bg, #9b30ff, #00d4ff)
   Joshi:  Black + Neon Red         (#0d0000 bg, #cc0000, #ff3333)
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Base */
  --bg: #06040f;
  --bg2: #0a0718;
  --bg-card: #0e0b1e;
  --bg-card2: #12101e;
  --border: rgba(155, 48, 255, 0.1);
  --border-red: rgba(204, 0, 0, 0.12);

  /* Text */
  --text: #eee8ff;
  --text2: #8878b0;
  --muted: #3d3560;

  /* Fredax — Purple/Cyan */
  --fredax-bg: #3d0066;
  --fredax-1: #9b30ff;
  --fredax-2: #7b2fff;
  --fredax-cyan: #00d4ff;
  --fredax-cyan2: #0099cc;
  --fredax-glow: 0 0 25px rgba(155, 48, 255, 0.6), 0 0 80px rgba(155, 48, 255, 0.2);
  --fredax-glow2: 0 0 20px rgba(0, 212, 255, 0.5), 0 0 60px rgba(0, 212, 255, 0.15);

  /* Joshi — Black/Red */
  --joshi-bg: #1a0000;
  --joshi-1: #cc0000;
  --joshi-2: #990000;
  --joshi-red: #ff3333;
  --joshi-red2: #ff6666;
  --joshi-glow: 0 0 25px rgba(204, 0, 0, 0.7), 0 0 80px rgba(204, 0, 0, 0.25);
  --joshi-glow2: 0 0 20px rgba(255, 51, 51, 0.6), 0 0 60px rgba(255, 51, 51, 0.2);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --nav-h: 70px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: 0.3s;

  --font-d: 'Rajdhani', sans-serif;
  --font-b: 'Barlow Condensed', sans-serif;
  --font-m: 'Space Mono', monospace;
}

[data-theme="light"] {
  --bg: #f0eeff;
  --bg2: #e8e3ff;
  --bg-card: #ffffff;
  --bg-card2: #f5f2ff;
  --border: rgba(155, 48, 255, 0.12);
  --text: #0e0b1e;
  --text2: #5540a0;
  --muted: #a090d0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

::selection {
  background: rgba(155, 48, 255, 0.3);
  color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ── PRELOADER ── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: opacity .6s ease, visibility .6s ease;
}

#preloader.out {
  opacity: 0;
  visibility: hidden;
}

.pre-logos {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.pre-logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  animation: preSpin 2s ease-in-out infinite alternate;
  object-fit: cover;
}

.pre-logo.joshi {
  animation-direction: alternate-reverse;
}

.pre-sep {
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .2em;
}

@keyframes preSpin {
  from {
    transform: scale(1) rotate(-5deg);
    filter: brightness(.7);
  }

  to {
    transform: scale(1.1) rotate(5deg);
    filter: brightness(1.3);
  }
}

.pre-bar {
  width: 220px;
  height: 3px;
  background: rgba(155, 48, 255, 0.15);
  border-radius: 99px;
  overflow: hidden;
}

.pre-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--fredax-cyan), var(--fredax-1), var(--joshi-1), var(--joshi-red));
  border-radius: 99px;
  animation: preBar 2.2s ease-in-out forwards;
}

@keyframes preBar {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 clamp(1rem, 4vw, 3rem);
  z-index: 900;
  transition: background var(--t) var(--ease), box-shadow var(--t);
}

.navbar.scrolled {
  background: rgba(6, 4, 15, .92);
  backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 1px 0 rgba(155, 48, 255, .12);
}

[data-theme="light"] .navbar.scrolled {
  background: rgba(240, 238, 255, .92);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-right: auto;
  text-decoration: none;
}

.nav-brand-logos {
  display: flex;
  gap: .3rem;
}

.nav-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid transparent;
  transition: border-color var(--t), box-shadow var(--t);
}

.nav-avatar.fredax {
  border-color: rgba(155, 48, 255, .5);
}

.nav-avatar.fredax:hover {
  box-shadow: var(--fredax-glow);
}

.nav-avatar.joshi {
  border-color: rgba(204, 0, 0, .5);
}

.nav-avatar.joshi:hover {
  box-shadow: var(--joshi-glow);
}

.nav-brand-text {
  font-family: var(--font-d);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.nav-brand-text .f {
  color: var(--fredax-cyan);
}

.nav-brand-text .amp {
  color: var(--muted);
  margin: 0 .15em;
}

.nav-brand-text .j {
  color: var(--joshi-red);
}

.nav-links {
  display: flex;
  gap: .15rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-d);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text2);
  padding: .5rem .8rem;
  border-radius: var(--radius-sm);
  transition: color var(--t), background var(--t);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(155, 48, 255, .08);
}

.nav-actions {
  display: flex;
  gap: .6rem;
  align-items: center;
  margin-left: 1rem;
}

.live-pill {
  display: flex;
  align-items: center;
  gap: .35rem;
  background: rgba(204, 0, 0, .12);
  border: 1px solid rgba(204, 0, 0, .3);
  border-radius: 99px;
  padding: .25rem .7rem;
  font-family: var(--font-m);
  font-size: .65rem;
  color: #ff6060;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
  animation: lpulse 1.5s infinite;
}

@keyframes lpulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .4;
    transform: scale(.7)
  }
}

.theme-btn {
  width: 38px;
  height: 22px;
  border-radius: 99px;
  background: var(--border);
  border: 1px solid var(--border);
  cursor: pointer;
  position: relative;
  transition: background var(--t);
}

.theme-btn::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--fredax-1);
  transition: transform var(--t), background var(--t);
}

[data-theme="light"] .theme-btn::after {
  transform: translateX(17px);
  background: var(--joshi-1);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(6, 4, 15, .97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  gap: .15rem;
  padding: 1rem 1.5rem;
  z-index: 899;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text2);
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  transition: color var(--t), background var(--t);
}

.mobile-menu a:hover {
  color: var(--text);
  background: rgba(155, 48, 255, .08);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-d);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .7rem 1.6rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  transition: opacity var(--t);
}

.btn:hover::after {
  opacity: .06;
}

.btn-fredax {
  background: linear-gradient(135deg, var(--fredax-2), var(--fredax-1));
  color: #fff;
  box-shadow: 0 4px 24px rgba(155, 48, 255, .3);
}

.btn-fredax:hover {
  transform: translateY(-2px);
  box-shadow: var(--fredax-glow);
}

.btn-joshi {
  background: linear-gradient(135deg, var(--joshi-2), var(--joshi-1));
  color: #fff;
  box-shadow: 0 4px 24px rgba(204, 0, 0, .35);
}

.btn-joshi:hover {
  transform: translateY(-2px);
  box-shadow: var(--joshi-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--fredax-1);
  color: var(--fredax-cyan);
  background: rgba(155, 48, 255, .06);
}

/* ── LAYOUT ── */
.section {
  padding: 5rem clamp(1rem, 4vw, 3rem);
  max-width: 1280px;
  margin: 0 auto;
}

.section-full {
  margin: 0;
  max-width: 100%;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-m);
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: .28rem .85rem;
  border-radius: 99px;
  margin-bottom: .85rem;
}

.tag-purple {
  color: var(--fredax-cyan);
  background: rgba(0, 212, 255, .07);
  border: 1px solid rgba(0, 212, 255, .2);
}

.tag-red {
  color: var(--joshi-red);
  background: rgba(204, 0, 0, .08);
  border: 1px solid rgba(204, 0, 0, .22);
}

.section-title {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: .04em;
  line-height: 1.05;
  margin-bottom: .6rem;
}

.section-title .hi-purple {
  background: linear-gradient(135deg, var(--fredax-cyan), var(--fredax-1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title .hi-red {
  background: linear-gradient(135deg, var(--joshi-red), var(--joshi-1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  color: var(--text2);
  font-size: 1rem;
  max-width: 480px;
}

.section-sub.centered {
  margin: 0 auto;
  text-align: center;
}

hr.divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--nav-h) clamp(1rem, 4vw, 3rem) 4rem;
  max-width: 100%;
}

.hero-bg-left {
  position: absolute;
  inset: 0;
  right: 50%;
  background: linear-gradient(135deg, rgba(61, 0, 102, .6) 0%, transparent 70%);
  pointer-events: none;
}

.hero-bg-right {
  position: absolute;
  inset: 0;
  left: 50%;
  background: linear-gradient(225deg, rgba(26, 0, 0, .7) 0%, transparent 70%);
  pointer-events: none;
}

.hero-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 25% 50%, rgba(155, 48, 255, .15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 75% 50%, rgba(204, 0, 0, .12) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 50% 30%, rgba(0, 212, 255, .05) 0%, transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(155, 48, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(155, 48, 255, .04) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, black 40%, transparent 100%);
}

.hero-content {
  position: relative;
  max-width: 1000px;
  width: 100%;
  text-align: center;
  animation: fadeUp 1s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(35px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.hero-dual {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
}

.hero-streamer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-logo-wrap {
  position: relative;
  display: inline-block;
}

.hero-logo {
  width: clamp(120px, 18vw, 200px);
  height: clamp(120px, 18vw, 200px);
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid transparent;
  transition: transform .4s var(--ease), box-shadow .4s;
}

.hero-logo.fredax-logo {
  border-color: var(--fredax-1);
  box-shadow: 0 0 30px rgba(155, 48, 255, .4), 0 0 80px rgba(155, 48, 255, .15);
}

.hero-logo.fredax-logo:hover {
  transform: scale(1.06);
  box-shadow: var(--fredax-glow);
}

.hero-logo.joshi-logo {
  border-color: var(--joshi-1);
  box-shadow: 0 0 30px rgba(204, 0, 0, .5), 0 0 80px rgba(204, 0, 0, .2);
}

.hero-logo.joshi-logo:hover {
  transform: scale(1.06);
  box-shadow: var(--joshi-glow);
}

.hero-name {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  letter-spacing: .06em;
  line-height: 1;
}

.hero-name.fredax-name {
  background: linear-gradient(135deg, var(--fredax-cyan), var(--fredax-1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, .5));
}

.hero-name.joshi-name {
  background: linear-gradient(135deg, var(--joshi-red), var(--joshi-1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(255, 51, 51, .5));
}

.hero-role {
  font-family: var(--font-m);
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text2);
}

.hero-vs {
  font-family: var(--font-d);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .05em;
  text-shadow: 0 0 40px rgba(155, 48, 255, .2), 0 0 40px rgba(204, 0, 0, .15);
  line-height: 1;
}

.hero-subtitle {
  font-family: var(--font-d);
  font-size: clamp(.85rem, 2vw, 1.2rem);
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text2);
  margin-bottom: 1.5rem;
}

.hero-subtitle .dot {
  color: var(--muted);
  margin: 0 .4em;
}

.hero-visitor {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(155, 48, 255, .06);
  border: 1px solid rgba(155, 48, 255, .18);
  border-radius: var(--radius-md);
  padding: .5rem 1.1rem;
  font-family: var(--font-m);
  font-size: .75rem;
  color: var(--text2);
  margin-bottom: 1.75rem;
}

.hero-visitor-count {
  color: var(--fredax-cyan);
  font-weight: 700;
  font-size: .9rem;
}

.hero-actions {
  display: flex;
  gap: .85rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1.25rem 2rem;
  background: rgba(155, 48, 255, .04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: inline-flex;
}

.stat {
  text-align: center;
}

.stat-n {
  font-family: var(--font-d);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
}

.stat-n.p {
  color: var(--fredax-1);
}

.stat-n.c {
  color: var(--fredax-cyan);
}

.stat-n.r {
  color: var(--joshi-red);
}

.stat-l {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .2rem;
}

/* ── ABOUT ── */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.profile-card {
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
  border: 1px solid transparent;
}

.profile-card.fredax-card {
  background: linear-gradient(145deg, var(--bg-card), rgba(61, 0, 102, .4));
  border-color: rgba(155, 48, 255, .2);
}

.profile-card.fredax-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fredax-cyan), var(--fredax-1), transparent);
}

.profile-card.fredax-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .5), var(--fredax-glow);
  border-color: rgba(155, 48, 255, .4);
}

.profile-card.joshi-card {
  background: linear-gradient(145deg, var(--bg-card), rgba(26, 0, 0, .5));
  border-color: rgba(204, 0, 0, .2);
}

.profile-card.joshi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--joshi-red), var(--joshi-1), transparent);
}

.profile-card.joshi-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .5), var(--joshi-glow);
  border-color: rgba(204, 0, 0, .4);
}

.profile-logo {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  object-fit: cover;
  margin-bottom: 1.4rem;
}

.profile-logo.fredax-pl {
  box-shadow: 0 0 20px rgba(155, 48, 255, .4);
}

.profile-logo.joshi-pl {
  box-shadow: 0 0 20px rgba(204, 0, 0, .4);
}

.profile-name {
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: .2rem;
}

.profile-name.pn-fredax {
  color: var(--fredax-cyan);
}

.profile-name.pn-joshi {
  color: var(--joshi-red);
}

.profile-role-text {
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .9rem;
}

.profile-desc {
  color: var(--text2);
  font-size: .92rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.5rem;
}

.ptag {
  font-family: var(--font-m);
  font-size: .65rem;
  letter-spacing: .07em;
  padding: .22rem .6rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(155, 48, 255, .2);
  color: var(--text2);
  background: rgba(155, 48, 255, .05);
  transition: all var(--t);
}

.ptag:hover {
  color: var(--fredax-cyan);
  border-color: rgba(0, 212, 255, .4);
}

.ptag.jtag {
  border-color: rgba(204, 0, 0, .2);
  background: rgba(204, 0, 0, .05);
}

.ptag.jtag:hover {
  color: var(--joshi-red);
  border-color: rgba(204, 0, 0, .45);
}

.profile-socials {
  display: flex;
  gap: .6rem;
}

.soc-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text2);
  font-size: .95rem;
  transition: all var(--t);
}

.soc-icon:hover {
  color: var(--fredax-cyan);
  border-color: rgba(0, 212, 255, .4);
  background: rgba(0, 212, 255, .08);
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(0, 212, 255, .2);
}

.joshi-card .soc-icon:hover {
  color: var(--joshi-red);
  border-color: rgba(204, 0, 0, .4);
  background: rgba(204, 0, 0, .08);
  box-shadow: 0 0 10px rgba(204, 0, 0, .2);
}

/* ── STREAMS ── */
.stream-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}

.stream-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .4);
}

.stream-embed {
  aspect-ratio: 16/9;
  background: var(--bg2);
  position: relative;
}

.stream-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
}

.stream-ph.fredax-ph {
  background: linear-gradient(135deg, rgba(61, 0, 102, .3), rgba(0, 212, 255, .05));
}

.stream-ph.joshi-ph {
  background: linear-gradient(135deg, rgba(26, 0, 0, .4), rgba(204, 0, 0, .06));
}

.stream-ph-icon {
  font-size: 2.8rem;
  opacity: .5;
}

.stream-tag {
  font-family: var(--font-m);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 99px;
}

.tag-offline {
  background: rgba(71, 85, 105, .25);
  border: 1px solid rgba(71, 85, 105, .4);
  color: var(--muted);
}

.tag-live {
  background: rgba(239, 68, 68, .15);
  border: 1px solid rgba(239, 68, 68, .3);
  color: #f87171;
}

.stream-info {
  padding: 1.1rem 1.4rem;
}

.stream-name {
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .05em;
}

.stream-game-f {
  font-size: .82rem;
  color: var(--fredax-cyan);
  margin: .2rem 0 .4rem;
}

.stream-game-j {
  font-size: .82rem;
  color: var(--joshi-red);
  margin: .2rem 0 .4rem;
}

.stream-meta {
  display: flex;
  gap: 1rem;
  font-size: .75rem;
  color: var(--muted);
}

/* Highlights */
.hl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.1rem;
}

.hl-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}

.hl-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .4);
}

.hl-thumb {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--muted);
  position: relative;
  overflow: hidden;
}

.hl-thumb.ht-p {
  background: linear-gradient(135deg, rgba(61, 0, 102, .4), var(--bg-card));
}

.hl-thumb.ht-r {
  background: linear-gradient(135deg, rgba(26, 0, 0, .5), var(--bg-card));
}

.hl-thumb::after {
  content: '▶';
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: #fff;
  opacity: 0;
  transition: opacity var(--t);
}

.hl-thumb.ht-p::after {
  background: rgba(155, 48, 255, .85);
}

.hl-thumb.ht-r::after {
  background: rgba(204, 0, 0, .9);
}

.hl-card:hover .hl-thumb::after {
  opacity: 1;
}

.hl-info {
  padding: .9rem 1.1rem;
}

.hl-title {
  font-family: var(--font-d);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: .25rem;
}

.hl-meta {
  display: flex;
  gap: .9rem;
  font-size: .75rem;
  color: var(--muted);
}

.hl-views-p {
  color: var(--fredax-1);
}

.hl-views-r {
  color: var(--joshi-red);
}

/* ── SCHEDULE ── */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: .65rem;
}

.sday {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: var(--radius-md);
  padding: .85rem .65rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t);
}

.sday.has-p {
  border-color: rgba(155, 48, 255, .2);
}

.sday.has-p::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--fredax-cyan), var(--fredax-1));
}

.sday.has-r {
  border-color: rgba(204, 0, 0, .2);
}

.sday.has-r::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--joshi-red), var(--joshi-1));
}

.sday.has-both {
  border-color: rgba(155, 100, 255, .3);
}

.sday.has-both::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--fredax-cyan), var(--fredax-1), var(--joshi-red));
}

.sday.today {
  box-shadow: inset 0 0 0 1px rgba(155, 48, 255, .3);
  background: rgba(155, 48, 255, .04);
}

.sday-name {
  font-family: var(--font-m);
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.today-pip {
  background: var(--fredax-1);
  color: #fff;
  font-size: .5rem;
  padding: .1rem .35rem;
  border-radius: 99px;
  font-weight: 700;
}

.sentry {
  padding: .5rem .6rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: .55rem;
}

.sentry.ep {
  background: rgba(0, 212, 255, .07);
  border-left: 2px solid var(--fredax-cyan);
}

.sentry.er {
  background: rgba(204, 0, 0, .07);
  border-left: 2px solid var(--joshi-red);
}

.sentry.eb {
  background: rgba(155, 48, 255, .08);
  border-left: 2px solid var(--fredax-1);
}

.etime {
  font-family: var(--font-m);
  font-size: .62rem;
  display: block;
  margin-bottom: .1rem;
}

.etime.ep {
  color: var(--fredax-cyan);
}

.etime.er {
  color: var(--joshi-red);
}

.etime.eb {
  color: var(--fredax-1);
}

.ename {
  font-family: var(--font-d);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  display: block;
}

.egame {
  font-size: .65rem;
  color: var(--muted);
  display: block;
  margin-top: .1rem;
}

.no-stream {
  text-align: center;
  color: var(--muted);
  font-size: .7rem;
  opacity: .5;
  padding: .75rem 0;
}

/* ── COMMUNITY ── */
#community {
  background: var(--bg2);
}

.comm-title {
  font-family: var(--font-d);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: .8rem;
  text-align: center;
}

.comm-title .cf {
  color: var(--fredax-cyan);
}

.comm-title .cj {
  color: var(--joshi-red);
}

.soc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: .85rem;
}

.soc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: 1.75rem 1rem;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius-lg);
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}

.soc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--t);
}

.soc-card:hover {
  transform: translateY(-6px);
}

.soc-card.sc-twitch::before {
  background: rgba(145, 70, 255, .08);
}

.soc-card.sc-youtube::before {
  background: rgba(255, 0, 0, .07);
}

.soc-card.sc-discord::before {
  background: rgba(88, 101, 242, .08);
}

.soc-card.sc-instagram::before {
  background: rgba(225, 48, 108, .07);
}

.soc-card.sc-tiktok::before {
  background: rgba(255, 255, 255, .04);
}

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

.soc-card.sc-twitch:hover {
  box-shadow: 0 14px 40px rgba(145, 70, 255, .25);
}

.soc-card.sc-youtube:hover {
  box-shadow: 0 14px 40px rgba(255, 0, 0, .2);
}

.soc-card.sc-discord:hover {
  box-shadow: 0 14px 40px rgba(88, 101, 242, .25);
}

.soc-card.sc-instagram:hover {
  box-shadow: 0 14px 40px rgba(225, 48, 108, .2);
}

.soc-card.sc-tiktok:hover {
  box-shadow: 0 14px 40px rgba(150, 150, 150, .2);
}

.soc-icon-big {
  font-size: 2rem;
  position: relative;
}

.soc-name {
  font-family: var(--font-d);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text2);
  position: relative;
}

.soc-card:hover .soc-name {
  color: var(--text);
}

.soc-count {
  font-family: var(--font-m);
  font-size: .65rem;
  color: var(--muted);
  position: relative;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-d);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: .75rem;
}

.contact-info p {
  color: var(--text2);
  font-size: .92rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}

.form-row {
  margin-bottom: 1.1rem;
}

.form-label {
  display: block;
  font-family: var(--font-m);
  font-size: .62rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .4rem;
}

.form-input,
.form-textarea {
  width: 100%;
  background: var(--bg2);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--radius-sm);
  padding: .7rem .95rem;
  color: var(--text);
  font-family: var(--font-b);
  font-size: .92rem;
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
}

.form-input:focus,
.form-textarea:focus {
  border-color: rgba(155, 48, 255, .45);
  box-shadow: 0 0 0 3px rgba(155, 48, 255, .08);
}

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

.form-submit-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.25rem;
}

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.5rem clamp(1rem, 4vw, 3rem) 1.75rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  margin-bottom: 1.5rem;
}

.footer-brand-name {
  font-family: var(--font-d);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: .6rem;
}

.footer-brand-name .f {
  color: var(--fredax-cyan);
}

.footer-brand-name .j {
  color: var(--joshi-red);
}

.footer-brand-name .amp {
  color: var(--muted);
}

.footer-desc {
  color: var(--text2);
  font-size: .85rem;
  line-height: 1.6;
  max-width: 230px;
}

.footer-col h4 {
  font-family: var(--font-d);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .85rem;
}

.footer-col ul li {
  margin-bottom: .4rem;
}

.footer-col ul li a {
  color: var(--text2);
  font-size: .85rem;
  transition: color var(--t);
}

.footer-col ul li a:hover {
  color: var(--fredax-cyan);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}

.footer-copy {
  color: var(--muted);
  font-size: .75rem;
}

.footer-copy .f {
  color: var(--fredax-1);
}

.footer-copy .j {
  color: var(--joshi-1);
}

.footer-legal {
  display: flex;
  gap: 1.25rem;
}

.footer-legal a {
  color: var(--muted);
  font-size: .75rem;
  transition: color var(--t);
}

.footer-legal a:hover {
  color: var(--text2);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.rv1 {
  transition-delay: .08s
}

.rv2 {
  transition-delay: .16s
}

.rv3 {
  transition-delay: .24s
}

.rv4 {
  transition-delay: .32s
}

/* ── TOAST ── */
#toast {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  background: var(--bg-card);
  border: 1px solid rgba(155, 48, 255, .35);
  border-radius: var(--radius-md);
  padding: .85rem 1.35rem;
  color: var(--text);
  font-size: .88rem;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .45);
  z-index: 3000;
  transform: translateY(16px);
  opacity: 0;
  transition: all var(--t);
  max-width: 290px;
}

#toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ── SCROLL INDICATOR ── */
.scroll-ind {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: var(--muted);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  animation: sbounce 2.2s ease-in-out infinite;
}

.scroll-ind::after {
  content: '';
  width: 1px;
  height: 35px;
  background: linear-gradient(to bottom, var(--muted), transparent);
}

@keyframes sbounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(6px)
  }
}

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .schedule-grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .footer-top {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:768px) {

  .nav-links,
  .live-pill {
    display: none
  }

  .burger {
    display: flex
  }

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

  .hero-vs {
    font-size: 2rem
  }

  .schedule-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .profiles-grid {
    grid-template-columns: 1fr
  }

  .soc-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.5rem
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center
  }

  .hero-logo {
    width: 120px;
    height: 120px
  }
}

@media(max-width:480px) {
  .schedule-grid {
    grid-template-columns: 1fr
  }

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

  .gal-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

/* ── FEHLENDE KLASSEN (PHP-Version) ────────────────────────── */

/* Hero wrapper */
.hero-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--nav-h) clamp(1rem, 4vw, 3rem) 4rem;
  max-width: 100%;
}

/* Section header */
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

/* Highlights section title */
.hl-section-title {
  font-family: var(--font-d);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .06em;
  margin: 2.5rem 0 1.25rem;
  color: var(--text2);
}

.hl-section-title span {
  color: var(--text);
}

/* Contact form elements (PHP version uses these class names) */
.form-row {
  margin-bottom: 1.1rem;
}

/* ── ADMIN NAV BUTTON ────────────────────────────────────────── */
.nav-admin-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .9rem;
  border-radius: var(--radius-sm);
  background: rgba(155, 48, 255, .12);
  border: 1px solid rgba(155, 48, 255, .35);
  color: var(--fredax-1);
  font-family: var(--font-d);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .3s;
  white-space: nowrap;
}

.nav-admin-btn i {
  font-size: .8rem;
}

.nav-admin-btn:hover {
  background: rgba(155, 48, 255, .25);
  border-color: var(--fredax-1);
  color: var(--fredax-cyan);
  transform: translateY(-1px);
  box-shadow: 0 0 14px rgba(155, 48, 255, .35);
}

/* Auf Mobile: nur Icon zeigen */
@media (max-width: 768px) {
  .nav-admin-btn span {
    display: none;
  }

  .nav-admin-btn {
    padding: .4rem .6rem;
  }
}

/* ── YOUTUBE STATS SEKTION ──────────────────────────────────── */
.yt-stats-wrap {
  margin-top: 2.5rem;
  width: 100%;
}

.yt-stats-title {
  font-family: var(--font-d);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

.yt-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.yt-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  transition: transform var(--t), box-shadow var(--t);
  position: relative;
  overflow: hidden;
}

.yt-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.yt-fredax::before {
  background: linear-gradient(90deg, var(--fredax-cyan), var(--fredax-1));
}

.yt-joshi::before {
  background: linear-gradient(90deg, var(--joshi-red), var(--joshi-1));
}

.yt-stat-card:hover {
  transform: translateY(-4px);
}

.yt-fredax:hover {
  box-shadow: 0 14px 40px rgba(155, 48, 255, .25);
}

.yt-joshi:hover {
  box-shadow: 0 14px 40px rgba(204, 0, 0, .25);
}

.yt-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 0, 0, .4);
  box-shadow: 0 0 16px rgba(255, 0, 0, .25);
}

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

.yt-name {
  font-family: var(--font-d);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--text);
}

.yt-nums {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.yt-num {
  text-align: center;
}

.yt-val {
  display: block;
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #ff4444;
}

.yt-fredax .yt-val {
  color: var(--fredax-cyan);
}

.yt-joshi .yt-val {
  color: var(--joshi-red);
}

.yt-lbl {
  display: block;
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .2rem;
}

.yt-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 0, 0, .12);
  border: 1px solid rgba(255, 0, 0, .3);
  color: #ff4444;
  font-family: var(--font-d);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--t);
  margin-top: .25rem;
}

.yt-btn:hover {
  background: rgba(255, 0, 0, .25);
  transform: translateY(-1px);
  box-shadow: 0 0 12px rgba(255, 0, 0, .3);
}

@media (max-width: 600px) {
  .yt-stats-grid {
    grid-template-columns: 1fr;
  }

  .yt-nums {
    gap: 1rem;
  }
}

/* ── LIVE PILL ACTIVE ────────────────────────────────────────── */
.live-pill.live-active {
  background: rgba(239, 68, 68, .2);
  border-color: rgba(239, 68, 68, .5);
  color: #f87171;
  box-shadow: 0 0 12px rgba(239, 68, 68, .3);
  font-weight: 700;
}

/* ── STREAM THUMBNAIL ────────────────────────────────────────── */
.stream-embed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── CUSTOM CURSOR ───────────────────────────────────────────── */
*,
*::before,
*::after {
  cursor: none !important;
}

.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--fredax-cyan);
  border-radius: 50%;
  pointer-events: none !important;
  z-index: 999997;
  transform: translate(-50%, -50%);
  transition: background .2s, transform .1s;
  box-shadow: 0 0 10px var(--fredax-cyan), 0 0 20px rgba(0, 212, 255, .4);
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(0, 212, 255, .5);
  border-radius: 50%;
  pointer-events: none !important;
  z-index: 999996;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, border-color .2s, transform .08s;
}

.cursor-dot.clicking {
  transform: translate(-50%, -50%) scale(1.8);
  background: var(--fredax-1);
}

.cursor-ring.clicking {
  width: 20px;
  height: 20px;
  border-color: var(--fredax-1);
}

.cursor-dot.hovering {
  background: var(--joshi-red);
  box-shadow: 0 0 12px var(--joshi-red), 0 0 24px rgba(204, 0, 0, .4);
}

.cursor-ring.hovering {
  width: 50px;
  height: 50px;
  border-color: rgba(204, 0, 0, .6);
}

/* ── YOUTUBE LATEST VIDEOS ───────────────────────────────────── */
.yt-latest-wrap {
  margin-top: 2.5rem;
}

.yt-latest-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}

.yt-latest-title {
  font-family: var(--font-d);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.yt-latest-more {
  font-family: var(--font-d);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text2);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .35rem;
  transition: color var(--t);
}

.yt-latest-more:hover {
  color: #ff4444;
}

.yt-latest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.yt-latest-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.yt-latest-card:hover {
  transform: translateY(-5px);
}

.ytc-fredax:hover {
  box-shadow: 0 14px 40px rgba(155, 48, 255, .25);
  border-color: rgba(0, 212, 255, .25);
}

.ytc-joshi:hover {
  box-shadow: 0 14px 40px rgba(204, 0, 0, .25);
  border-color: rgba(204, 0, 0, .25);
}

.ytc-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg2);
}

.ytc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}

.yt-latest-card:hover .ytc-thumb img {
  transform: scale(1.06);
}

.ytc-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .45);
  opacity: 0;
  transition: opacity var(--t);
  font-size: 2.5rem;
  color: #ff0000;
}

.yt-latest-card:hover .ytc-play {
  opacity: 1;
}

.ytc-badge {
  position: absolute;
  top: .5rem;
  left: .5rem;
  font-family: var(--font-m);
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2rem .55rem;
  border-radius: 99px;
  font-weight: 700;
}

.ytc-fredax .ytc-badge {
  background: rgba(0, 212, 255, .2);
  color: var(--fredax-cyan);
  border: 1px solid rgba(0, 212, 255, .4);
}

.ytc-joshi .ytc-badge {
  background: rgba(204, 0, 0, .2);
  color: var(--joshi-red);
  border: 1px solid rgba(204, 0, 0, .4);
}

.ytc-info {
  padding: .85rem 1rem;
}

.ytc-title {
  font-family: var(--font-d);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  margin-bottom: .35rem;
}

.ytc-date {
  font-size: .72rem;
  color: var(--muted);
}

@media(max-width:600px) {
  .yt-latest-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .6rem;
  }

  .ytc-info {
    padding: .65rem .75rem;
  }

  .ytc-title {
    font-size: .82rem;
  }
}

/* ── LIVE PILL OFFLINE ───────────────────────────────────────── */
.live-pill.live-offline {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .1);
  color: var(--muted);
}

.live-dot-off {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted);
  flex-shrink: 0;
}

/* ── COMING SOON SOCIAL CARDS ────────────────────────────────── */
.soc-coming-soon {
  opacity: .5;
  cursor: default;
  pointer-events: none;
  position: relative;
}

.soc-coming-soon::after {
  content: 'Bald';
  position: absolute;
  top: .5rem;
  right: .5rem;
  font-family: var(--font-m);
  font-size: .55rem;
  letter-spacing: .1em;
  background: rgba(255, 255, 255, .08);
  color: var(--muted);
  padding: .15rem .4rem;
  border-radius: 99px;
}

/* ── SOCIAL CARD DUAL BUTTONS ────────────────────────────────── */
.soc-dual {
  cursor: default;
}

.soc-card {
  pointer-events: auto !important;
}

.soc-dual-btn,
.soc-card a {
  pointer-events: auto !important;
  cursor: pointer !important;
}

.soc-dual a,
.soc-dual-btn {
  pointer-events: auto !important;
  cursor: pointer !important;
}

.soc-dual-btns {
  display: flex;
  gap: .4rem;
  margin-top: .75rem;
  width: 100%;
  justify-content: center;
}

.soc-dual-btn {
  flex: 1;
  text-align: center;
  padding: .35rem .5rem;
  border-radius: 7px;
  font-family: var(--font-d);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-decoration: none;
  transition: all .2s;
}

.sd-p {
  background: rgba(155, 48, 255, .12);
  border: 1px solid rgba(155, 48, 255, .3);
  color: #9b30ff;
  pointer-events: auto !important;
  cursor: pointer !important;
  position: relative;
  z-index: 999998;
}

.sd-p:hover {
  background: rgba(155, 48, 255, .22);
  border-color: rgba(155, 48, 255, .6);
  transform: translateY(-1px);
}

.sd-r {
  background: rgba(155, 48, 255, .12);
  border: 1px solid rgba(155, 48, 255, .3);
  color: #9b30ff;
  pointer-events: auto !important;
  cursor: pointer !important;
  position: relative;
  z-index: 999998;
}

.sd-r:hover {
  background: rgba(155, 48, 255, .22);
  border-color: rgba(155, 48, 255, .6);
  transform: translateY(-1px);
}