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

:root {
  --red:      #e8000d;
  --red-dim:  #7a0008;
  --black:    #080808;
  --surface:  #111111;
  --surface2: #1a1a1a;
  --border:   #222222;
  --white:    #ffffff;
  --grey:     #666666;
  --discord:  #5865f2;
  --radius:   4px;
}

/* ── LIGHT MODE ── */
body.light {
  --black:    #f5f5f5;
  --surface:  #ebebeb;
  --surface2: #e0e0e0;
  --border:   #d0d0d0;
  --white:    #0a0a0a;
  --grey:     #555555;
  --red-dim:  #f5a0a4;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 32px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  padding: 8px 16px;
  transition: color 0.15s;
  border-left: 1px solid var(--border);
}
.nav-links a:first-child { border-left: none; }
.nav-links a:hover { color: var(--white); }
.nav-cta {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white) !important;
  background: var(--red);
  padding: 8px 18px !important;
  border-left: none !important;
  transition: background 0.15s !important;
}
.nav-cta:hover { background: #c5000b !important; color: var(--white) !important; }

/* ── THEME TOGGLE ── */
.theme-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  cursor: pointer;
  background: none;
  border-top: none;
  border-right: none;
  border-bottom: none;
  border-left: 1px solid var(--border);
  height: 56px;
}
.theme-toggle-icon {
  font-size: 0.9rem;
  line-height: 1;
  transition: transform 0.3s ease;
}
.theme-toggle:hover .theme-toggle-icon { transform: rotate(20deg); }
.theme-switch {
  width: 32px;
  height: 18px;
  background: var(--border);
  border-radius: 9px;
  position: relative;
  transition: background 0.2s;
  flex-shrink: 0;
}
body.light .theme-switch { background: var(--red); }
.theme-switch::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--grey);
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.2s, background 0.2s;
}
body.light .theme-switch::after {
  transform: translateX(14px);
  background: white;
}

/* ── HERO ── */
.hero {
  padding-top: 56px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  gap: 60px;
}
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 100px; padding-bottom: 60px; }
  .hero-visual { display: none; }
}

.hero-left { position: relative; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.hero-eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--red);
}
.hero-eyebrow span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}
.live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero h1 .outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}
.hero h1 .red { color: var(--red); }

.hero-desc {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: background 0.15s, transform 0.15s;
}
.btn-primary:hover { background: #c5000b; transform: translateY(-1px); }
.btn-primary svg { width: 18px; height: 18px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.15s, transform 0.15s;
}
.btn-ghost:hover { border-color: var(--white); transform: translateY(-1px); }
.btn-ghost svg { width: 18px; height: 18px; }

/* ── HERO VISUAL ── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-screen {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.hero-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,0,13,0.15) 0%, transparent 60%);
}
.screen-bar {
  height: 32px;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
}
.screen-dot { width: 8px; height: 8px; border-radius: 50%; }
.screen-dot-r { background: var(--red); }
.screen-dot-g { background: #333; }
.screen-dot-b { background: #333; }
.screen-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.screen-line {
  height: 8px;
  background: var(--border);
  border-radius: 2px;
}
.screen-line.red { background: var(--red-dim); width: 40%; }
.screen-line.w60 { width: 60%; }
.screen-line.w80 { width: 80%; }
.screen-line.w45 { width: 45%; }
.screen-line.w70 { width: 70%; }
.screen-thumb {
  width: 100%;
  height: 80px;
  background: var(--border);
  border-radius: 4px;
  margin: 8px 0;
  position: relative;
  overflow: hidden;
}
.hero-yt-link { text-decoration: none; display: block; }
.hero-yt-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.hero-yt-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.hero-yt-link:hover .hero-yt-img { transform: scale(1.03); }
.hero-yt-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: background 0.3s;
}
.hero-yt-link:hover .hero-yt-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
}
.hero-yt-play {
  width: 56px; height: 56px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
}
.hero-yt-play svg { width: 24px; height: 24px; margin-left: 3px; }
.hero-yt-link:hover .hero-yt-play { transform: scale(1.1); background: #c5000b; }
.hero-yt-label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
}
.screen-url {
  font-size: 0.65rem;
  color: var(--grey);
  margin-left: 8px;
  font-family: monospace;
}

/* ── DIVIDER ── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── TICKER ── */
.ticker-wrap {
  background: var(--red);
  overflow: hidden;
  padding: 10px 0;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 32px;
  color: white;
  display: flex;
  align-items: center;
  gap: 16px;
}
.ticker-item::after {
  content: '◆';
  font-size: 0.5rem;
  opacity: 0.6;
}

/* ── SECTIONS ── */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
}
.section-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 48px;
}
.section-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1;
}
.section-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .about-grid { grid-template-columns: 1fr; }
}
.about-item {
  background: var(--black);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s;
}
.about-item:hover { background: var(--surface); }
.about-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--red);
  line-height: 1;
  opacity: 0.3;
}
.about-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.about-item p {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.6;
}

/* ── PODCAST ── */
.podcast-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) {
  .podcast-layout { grid-template-columns: 1fr; }
}
.podcast-meta {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.podcast-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--red-dim);
  padding: 4px 10px;
  border-radius: 2px;
  width: fit-content;
}
.podcast-meta h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  text-transform: uppercase;
  line-height: 1;
}
.podcast-meta p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.7;
}
.listen-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}
.listen-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  transition: border-color 0.15s, background 0.15s;
}
.listen-link:hover { border-color: var(--grey); background: var(--surface2); }
.listen-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.listen-link span { margin-left: auto; font-size: 0.72rem; color: var(--grey); }

.spotify-wrap {
  border: 1px solid var(--border);
  overflow: hidden;
}

/* ── DEALS ── */
.deals-scroll-wrap {
  overflow-x: auto;
  margin: 0 -24px;
  padding: 0 24px;
  scrollbar-width: thin;
  scrollbar-color: var(--red) var(--black);
}
.deals-track {
  display: flex;
  gap: 12px;
  padding-bottom: 16px;
  min-width: max-content;
}
.deal-card {
  width: 240px;
  background: var(--surface);
  border: 1px solid var(--border);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.deal-card:hover { border-color: var(--red); transform: translateY(-3px); }
.deal-card a { text-decoration: none; color: inherit; display: flex; flex-direction: column; height: 100%; }
.deal-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  background: var(--surface2);
}
.deal-img-placeholder {
  width: 100%;
  height: 140px;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--border);
}
.deal-body {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.deal-title {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.deal-desc {
  font-size: 0.78rem;
  color: var(--grey);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.deal-date {
  font-size: 0.7rem;
  color: var(--grey);
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.deal-corner {
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 24px 24px 0;
  border-color: transparent var(--red) transparent transparent;
}
.deals-empty {
  color: var(--grey);
  font-size: 0.88rem;
  padding: 40px 0;
}
.deals-footer {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
}
.deals-footer a {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s;
}
.deals-footer a:hover { color: var(--white); }

/* ── YOUTUBE ── */
.yt-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (max-width: 640px) { .yt-block { grid-template-columns: 1fr; } }
.yt-info {
  background: var(--black);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.yt-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  text-transform: uppercase;
  line-height: 1;
}
.yt-info p { font-size: 0.88rem; color: var(--grey); line-height: 1.7; }
.yt-visual {
  background: var(--surface);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.yt-visual-link {
  display: block;
  position: absolute;
  inset: 0;
}
.yt-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.yt-visual-link:hover .yt-visual-img { transform: scale(1.04); }
.yt-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.yt-visual-link:hover .yt-visual-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
}
.yt-play {
  width: 64px; height: 64px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: transform 0.2s, background 0.2s;
}
.yt-visual-link:hover .yt-play { transform: scale(1.1); background: #c5000b; }
.yt-play svg { width: 28px; height: 28px; margin-left: 4px; }

/* ── HOSTS ── */
.hosts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (max-width: 480px) { .hosts-grid { grid-template-columns: 1fr; } }
.host-card {
  background: var(--black);
  padding: 36px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: var(--white);
  transition: background 0.2s;
}
.host-card:hover { background: var(--surface); }
.host-avatar {
  width: 56px; height: 56px;
  background: var(--red);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.host-info h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  text-transform: uppercase;
  line-height: 1;
}
.host-info p { font-size: 0.78rem; color: var(--grey); margin-top: 4px; }
.host-arrow {
  margin-left: auto;
  font-size: 1.2rem;
  color: var(--grey);
  transition: transform 0.2s, color 0.2s;
}
.host-card:hover .host-arrow { transform: translateX(4px); color: var(--white); }

/* ── COMMUNITY ── */
.community-block {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 64px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 640px) {
  .community-block { flex-direction: column; padding: 40px 28px; text-align: center; }
}
.community-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 12px;
}
.community-text p { font-size: 0.9rem; color: var(--grey); max-width: 400px; line-height: 1.7; }

/* ── SOCIAL ── */
.social-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (max-width: 900px) { .social-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .social-grid { grid-template-columns: repeat(2, 1fr); } }
.social-card {
  background: var(--black);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  transition: background 0.2s;
  text-align: center;
}
.social-card:hover { background: var(--surface2); }
.social-card .s-icon { width: 36px; height: 36px; }
.social-card .s-icon svg { width: 36px; height: 36px; }
.social-card strong { font-size: 0.8rem; font-weight: 700; }
.social-card span { font-size: 0.7rem; color: var(--grey); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-logo img { height: 24px; opacity: 0.5; }
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--white); }
.footer-copy {
  font-size: 0.72rem;
  color: var(--grey);
}

/* ── EMAIL ── */
.email-obf::before { content: "kontakt"; }
.email-obf::after  { content: "@cloudplay.show"; }
