/* Scredixx – responsive one-page creator website */
:root {
  --bg: #050505;
  --surface: #0b0b0d;
  --surface-2: #111114;
  --text: #f7f7f8;
  --muted: #9b9ba5;
  --line: rgba(255,255,255,.1);
  --red: #ff151f;
  --red-dark: #a70008;
  --red-soft: rgba(255,21,31,.14);
  --white-soft: rgba(255,255,255,.74);
  --radius: 22px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 12%, rgba(255,21,31,.08), transparent 30rem),
    radial-gradient(circle at 10% 55%, rgba(255,21,31,.045), transparent 26rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
svg { fill: currentColor; }

.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 100;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed; z-index: 50; top: 0; left: 0; right: 0;
  min-height: 82px; padding: 14px max(24px, calc((100vw - var(--max)) / 2));
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(5,5,5,.74);
  border-bottom: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { width: 48px; height: 48px; object-fit: cover; border-radius: 12px; box-shadow: 0 0 24px rgba(255,21,31,.24); }
.brand span { display: grid; line-height: 1; gap: 5px; }
.brand strong { letter-spacing: .14em; font-size: .92rem; }
.brand small { color: var(--red); letter-spacing: .25em; font-size: .58rem; font-weight: 800; }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { color: #bbb; font-size: .86rem; font-weight: 700; transition: .2s; }
.main-nav a:hover { color: white; }
.main-nav .nav-cta {
  background: var(--red); color: white; padding: 13px 18px; border-radius: 9px;
  box-shadow: 0 10px 28px rgba(255,21,31,.2);
}
.main-nav .nav-cta:hover { background: #ff343d; transform: translateY(-1px); }

.menu-button { display: none; border: 0; background: transparent; padding: 8px; }
.menu-button span { display: block; width: 25px; height: 2px; background: white; margin: 5px 0; transition: .25s; }

.hero {
  position: relative; isolation: isolate; min-height: 100svh;
  max-width: 1500px; margin: auto; padding: 150px max(24px, calc((100vw - var(--max)) / 2)) 90px;
  display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(380px, .78fr); align-items: center; gap: clamp(46px, 5vw, 86px);
}
.hero-grid {
  position: absolute; inset: 0; z-index: -3; opacity: .17;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}
.hero-grid::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 30%, transparent 70%, var(--bg) 100%);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); z-index: -2; }
.hero-orb-one { width: 320px; height: 320px; right: 15%; top: 22%; background: rgba(255,21,31,.08); box-shadow: 0 0 180px rgba(255,21,31,.25); }
.hero-orb-two { width: 130px; height: 130px; left: 3%; bottom: 16%; background: rgba(255,255,255,.025); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--red); font-size: .76rem; font-weight: 900; letter-spacing: .24em;
}
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 6px rgba(255,21,31,.12), 0 0 18px var(--red); animation: pulse 1.7s infinite; }
@keyframes pulse { 50% { opacity: .5; transform: scale(.82); } }

.hero h1 {
  margin: 24px 0 22px; max-width: 800px;
  font-size: clamp(3.5rem, 6.3vw, 6.75rem); line-height: .86;
  letter-spacing: -.07em; text-transform: uppercase; font-weight: 950;
}
.hero h1 span { color: var(--red); text-shadow: 0 0 48px rgba(255,21,31,.2); }
.hero-copy { max-width: 650px; margin: 0; color: var(--white-soft); font-size: clamp(1rem, 1.5vw, 1.18rem); line-height: 1.75; }
.hero-copy strong { color: white; }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; margin-top: 34px; }
.button {
  min-height: 52px; padding: 0 22px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; font-weight: 900; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em;
  border: 1px solid transparent; transition: transform .2s, box-shadow .2s, background .2s;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 20px; height: 20px; }
.button-primary { background: var(--red); box-shadow: 0 15px 40px rgba(255,21,31,.2); }
.button-primary:hover { background: #ff343d; box-shadow: 0 18px 45px rgba(255,21,31,.28); }
.button-secondary { border-color: var(--line); background: rgba(255,255,255,.035); }
.button-secondary:hover { background: rgba(255,255,255,.08); }

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); max-width: 660px; margin-top: 55px;
  border-top: 1px solid var(--line);
}
.hero-stats div { padding: 21px 18px 0 0; display: grid; gap: 5px; }
.hero-stats strong { font-size: .85rem; letter-spacing: .18em; }
.hero-stats span { color: var(--muted); font-size: .72rem; }

.hero-visual { display: grid; place-items: center; }
.logo-frame {
  position: relative; width: min(470px, 90vw); aspect-ratio: 1; display: grid; place-items: center;
  background: radial-gradient(circle at 50% 45%, rgba(255,21,31,.12), transparent 57%);
}
.logo-frame::before {
  content: ""; position: absolute; inset: 8%; border-radius: 38px; transform: rotate(45deg);
  border: 1px solid rgba(255,21,31,.22);
  background: linear-gradient(135deg, rgba(255,255,255,.035), transparent 50%);
}
.logo-frame::after {
  content: ""; position: absolute; inset: 18%; border-radius: 50%;
  border: 1px dashed rgba(255,255,255,.11); animation: spin 28s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.logo-frame img {
  position: relative; z-index: 3; width: 69%; border-radius: 28px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.7)) drop-shadow(0 0 35px rgba(255,21,31,.24));
  transform: rotate(-2deg); transition: transform .35s;
}
.logo-frame:hover img { transform: rotate(0) scale(1.025); }
.logo-glow { position: absolute; width: 55%; height: 55%; border-radius: 50%; background: var(--red); opacity: .1; filter: blur(55px); }
.status-chip {
  position: absolute; z-index: 5; right: 3%; bottom: 18%; background: rgba(8,8,10,.9);
  border: 1px solid rgba(255,255,255,.12); border-radius: 999px; padding: 11px 16px;
  font-size: .72rem; font-weight: 900; letter-spacing: .14em; box-shadow: 0 15px 40px rgba(0,0,0,.4);
}
.status-chip span { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--red); margin-right: 8px; box-shadow: 0 0 12px var(--red); }
.frame-corner { position: absolute; width: 48px; height: 48px; border-color: var(--red); border-style: solid; opacity: .8; }
.corner-one { left: 4%; top: 10%; border-width: 2px 0 0 2px; }
.corner-two { right: 4%; top: 10%; border-width: 2px 2px 0 0; }
.corner-three { left: 4%; bottom: 10%; border-width: 0 0 2px 2px; }
.corner-four { right: 4%; bottom: 10%; border-width: 0 2px 2px 0; }

.scroll-hint {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  display: grid; justify-items: center; gap: 8px; color: #777; font-size: .58rem; font-weight: 900; letter-spacing: .28em;
}
.scroll-hint i { width: 1px; height: 28px; background: linear-gradient(var(--red), transparent); }

.section { max-width: var(--max); margin: auto; padding: 120px 24px; }
.section-heading { max-width: 780px; margin-bottom: 48px; }
.section-heading > span { color: var(--red); font-size: .72rem; font-weight: 900; letter-spacing: .22em; }
.section-heading h2 { margin: 14px 0; font-size: clamp(2.6rem, 6vw, 5.2rem); line-height: .98; letter-spacing: -.055em; }
.section-heading p { color: var(--muted); line-height: 1.7; max-width: 620px; }

.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-card, .role-card {
  position: relative; overflow: hidden; min-height: 400px; padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
}
.about-card::after, .role-card::after {
  content: ""; position: absolute; width: 200px; height: 200px; border-radius: 50%;
  right: -80px; top: -80px; background: rgba(255,21,31,.08); filter: blur(20px);
}
.card-label { color: var(--red); font-weight: 900; letter-spacing: .2em; font-size: .7rem; }
.about-card h3, .role-card h3 { font-size: clamp(2rem, 4vw, 3.5rem); margin: 22px 0; line-height: 1.05; letter-spacing: -.045em; }
.about-card p, .role-card p { color: var(--white-soft); line-height: 1.8; max-width: 650px; }
.role-card { display: grid; grid-template-columns: auto 1fr; gap: 28px; background: linear-gradient(145deg, rgba(255,21,31,.09), rgba(255,255,255,.02)); }
.role-icon { width: 62px; height: 62px; border-radius: 18px; display: grid; place-items: center; background: var(--red); box-shadow: 0 15px 40px rgba(255,21,31,.25); }
.role-icon svg { width: 28px; }
.role-overline { color: var(--red); font-size: .68rem; font-weight: 900; letter-spacing: .18em; }
.role-card a { display: inline-flex; gap: 8px; align-items: center; color: white; font-weight: 800; margin-top: 12px; }
.role-card a svg { width: 18px; transition: transform .2s; }
.role-card a:hover svg { transform: translateX(4px); }

.socials { padding-top: 70px; }
.social-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.social-card {
  position: relative; min-height: 230px; padding: 30px; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); transition: transform .25s, border-color .25s, box-shadow .25s;
  display: flex; flex-direction: column; align-items: flex-start;
}
.social-card::after {
  content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%;
  right: -100px; bottom: -130px; background: var(--card-glow, rgba(255,21,31,.17)); filter: blur(14px);
}
.social-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.2); box-shadow: 0 22px 55px rgba(0,0,0,.35); }
.social-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 15px; background: rgba(255,255,255,.075); }
.social-icon svg { width: 26px; height: 26px; }
.social-card > span { color: var(--muted); font-size: .72rem; margin-top: 28px; }
.social-card > strong { margin-top: 5px; font-size: 2.2rem; letter-spacing: -.045em; }
.social-card > em { color: var(--muted); font-style: normal; font-size: .8rem; margin-top: 6px; }
.social-card > i { position: absolute; right: 30px; top: 30px; font-style: normal; font-size: 1.6rem; color: var(--muted); }
.twitch { --card-glow: rgba(145,70,255,.32); }
.youtube { --card-glow: rgba(255,0,0,.28); }
.instagram { --card-glow: rgba(255,45,123,.26); }
.tiktok { --card-glow: rgba(0,242,234,.2); }
.discord { --card-glow: rgba(88,101,242,.32); }
.social-card.full { grid-column: 1 / -1; min-height: auto; flex-direction: row; align-items: center; justify-content: space-between; padding: 25px 30px; }
.discord-copy { display: flex; align-items: center; gap: 18px; }
.discord-copy span { color: var(--muted); font-size: .72rem; }
.discord-copy strong { display: block; font-size: 1.5rem; margin-top: 4px; }
.discord-button { position: relative; z-index: 2; padding: 14px 18px; border-radius: 10px; background: white; color: #070707; font-weight: 900; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }

.cta-section { max-width: var(--max); margin: auto; padding: 20px 24px 110px; }
.cta-panel {
  min-height: 320px; padding: clamp(34px, 6vw, 70px); border-radius: 28px;
  border: 1px solid rgba(255,21,31,.35);
  background:
    linear-gradient(100deg, rgba(255,21,31,.13), rgba(255,21,31,.02)),
    linear-gradient(135deg, var(--surface-2), #070707);
  display: flex; align-items: center; justify-content: space-between; gap: 40px; overflow: hidden; position: relative;
}
.cta-panel::after { content: "SCREDIXX"; position: absolute; right: -20px; bottom: -35px; font-size: clamp(5rem, 12vw, 10rem); font-weight: 950; letter-spacing: -.08em; color: rgba(255,255,255,.025); }
.cta-panel h2 { margin: 14px 0 10px; font-size: clamp(2.5rem, 6vw, 5rem); letter-spacing: -.055em; }
.cta-panel p { color: var(--muted); }

footer {
  max-width: var(--max); margin: auto; padding: 35px 24px 45px; border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 20px; color: #777; font-size: .74rem;
}
.footer-brand { display: flex; align-items: center; gap: 12px; color: white; }
.footer-brand img { width: 42px; height: 42px; border-radius: 10px; }
.footer-brand div { display: grid; gap: 3px; }
.footer-brand strong { letter-spacing: .14em; }
.footer-brand span { color: #777; font-size: .65rem; }
footer p { text-align: right; margin: 0; }
footer p a { color: white; }
footer small { grid-column: 1 / -1; color: #555; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-one { transition-delay: .12s; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; gap: 30px; padding-top: 135px; text-align: center; }
  .hero-content { display: grid; justify-items: center; }
  .hero h1 { font-size: clamp(3.4rem, 13vw, 6.4rem); }
  .hero-visual { order: -1; }
  .logo-frame { width: min(390px, 88vw); }
  .hero-stats { width: 100%; }
  .about-layout { grid-template-columns: 1fr; }
  .role-card { min-height: unset; }
  .scroll-hint { display: none; }
}

@media (max-width: 760px) {
  .site-header { min-height: 72px; padding: 10px 18px; }
  .brand img { width: 44px; height: 44px; }
  .menu-button { display: block; position: relative; z-index: 2; }
  .main-nav {
    position: fixed; inset: 0; padding: 110px 26px 35px; background: rgba(5,5,5,.98);
    flex-direction: column; justify-content: flex-start; align-items: stretch; gap: 8px;
    transform: translateX(100%); transition: transform .3s ease;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { padding: 16px; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .main-nav .nav-cta { text-align: center; margin-top: 15px; border: none; }
  .menu-button.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button.active span:nth-child(2) { opacity: 0; }
  .menu-button.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding-left: 18px; padding-right: 18px; min-height: auto; padding-bottom: 70px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 5rem); }
  .hero-copy { font-size: .96rem; }
  .hero-actions { width: 100%; }
  .button { flex: 1 1 100%; }
  .hero-stats { grid-template-columns: 1fr; gap: 0; margin-top: 36px; }
  .hero-stats div { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .logo-frame { width: min(330px, 93vw); }
  .status-chip { right: 1%; bottom: 12%; }

  .section { padding: 85px 18px; }
  .section-heading h2 { font-size: clamp(2.6rem, 13vw, 4.1rem); }
  .about-card, .role-card { padding: 27px 23px; border-radius: 18px; }
  .role-card { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; }
  .social-card.full { grid-column: auto; flex-direction: column; align-items: stretch; gap: 22px; }
  .discord-button { text-align: center; }
  .cta-section { padding: 0 18px 80px; }
  .cta-panel { min-height: 390px; flex-direction: column; align-items: flex-start; justify-content: center; padding: 35px 26px; }
  .cta-panel .button { width: 100%; }
  footer { grid-template-columns: 1fr; text-align: left; padding-left: 18px; padding-right: 18px; }
  footer p { text-align: left; line-height: 1.6; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}


/* Visual refinements */
.hero-content {
  position: relative;
  z-index: 4;
  padding-left: clamp(0px, 1.4vw, 22px);
  min-width: 0;
}

.hero-visual {
  position: relative;
  z-index: 3;
  min-width: 0;
}

.hero h1 {
  overflow-wrap: normal;
  word-break: keep-all;
}

.logo-frame img {
  image-rendering: auto;
}

.role-card h3 {
  max-width: 560px;
  font-size: clamp(2rem, 3.45vw, 3.35rem);
  text-wrap: balance;
}

.role-card h3 span {
  color: var(--text);
}

.cta-panel > * {
  position: relative;
  z-index: 3;
}

.cta-panel::after {
  pointer-events: none;
  z-index: 1;
}

.cta-copy {
  max-width: 720px;
}

.cta-action {
  position: relative;
  z-index: 5;
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 220px;
}

.cta-action .button {
  position: relative;
  z-index: 6;
  pointer-events: auto;
  white-space: nowrap;
}

@media (max-width: 1180px) and (min-width: 981px) {
  .hero {
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, .72fr);
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 6vw, 5.75rem);
  }

  .logo-frame {
    width: min(410px, 38vw);
  }
}

@media (max-width: 760px) {
  .hero-content {
    padding-left: 0;
  }

  .role-card h3 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .cta-action {
    width: 100%;
    min-width: 0;
  }
}


/* Final hero and management-card layout refinements */
@media (min-width: 981px) {
  .hero {
    max-width: 1380px;
    grid-template-columns: minmax(620px, 1.15fr) minmax(390px, .85fr);
    gap: clamp(70px, 7vw, 120px);
    padding-left: max(48px, calc((100vw - 1320px) / 2));
    padding-right: max(48px, calc((100vw - 1320px) / 2));
  }

  .hero-content {
    padding-left: 0;
    justify-self: start;
    width: 100%;
    max-width: 760px;
  }

  .hero h1 {
    font-size: clamp(4rem, 5.4vw, 6.35rem);
    max-width: 760px;
    margin-right: 0;
  }

  .hero-copy {
    max-width: 580px;
  }

  .hero-visual {
    justify-self: end;
    width: 100%;
  }

  .logo-frame {
    width: min(430px, 34vw);
  }

  .logo-frame img {
    width: 74%;
  }

  .hero-stats {
    grid-template-columns: .8fr .95fr 1.35fr;
    max-width: 700px;
  }

  .hero-stats .focus-stat strong {
    white-space: nowrap;
    font-size: .78rem;
    letter-spacing: .12em;
  }

  .hero-stats .focus-stat span {
    white-space: nowrap;
  }
}

.role-card {
  display: flex;
  flex-direction: column;
  gap: 28px;
  justify-content: flex-start;
  background:
    radial-gradient(circle at 90% 5%, rgba(255, 21, 31, .13), transparent 45%),
    linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
}

.role-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--red), transparent 82%);
}

.role-topline {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.role-topline .role-overline {
  margin: 0;
}

.role-content {
  position: relative;
  z-index: 2;
}

.role-card h3 {
  max-width: 100%;
  margin: 0 0 24px;
  font-size: clamp(2.15rem, 3.5vw, 3.65rem);
  line-height: 1.02;
  letter-spacing: -.05em;
  text-wrap: balance;
}

.role-card p {
  max-width: 600px;
  margin-bottom: 25px;
}

.role-link {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  background: rgba(255,255,255,.035);
  transition: background .2s, border-color .2s, transform .2s;
}

.role-link:hover {
  background: rgba(255,21,31,.1);
  border-color: rgba(255,21,31,.35);
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .hero-content {
    padding-left: 0;
  }

  .hero h1 {
    max-width: 760px;
  }

  .hero-stats .focus-stat strong,
  .hero-stats .focus-stat span {
    white-space: normal;
  }
}

@media (max-width: 760px) {
  .role-card {
    gap: 22px;
  }

  .role-card h3 {
    font-size: clamp(2rem, 10.5vw, 3rem);
  }

  .role-topline {
    align-items: center;
  }
}


/* Hero final alignment fix: text starts farther left and never overlaps the logo */
@media (min-width: 981px) {
  .hero {
    width: 100%;
    max-width: none;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 440px);
    column-gap: clamp(52px, 5vw, 90px);
    padding-left: clamp(42px, 4.5vw, 82px);
    padding-right: clamp(42px, 4.5vw, 82px);
  }

  .hero-content {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    padding-left: 0;
  }

  .hero h1 {
    width: 100%;
    max-width: 900px;
    font-size: clamp(4rem, 5.55vw, 5.85rem);
    line-height: .9;
    letter-spacing: -.065em;
    margin-right: 0;
  }

  .hero-copy {
    max-width: 650px;
  }

  .hero-visual {
    width: 100%;
    justify-self: end;
    align-self: center;
  }

  .logo-frame {
    width: min(430px, 30vw);
    min-width: 370px;
  }
}

@media (min-width: 981px) and (max-width: 1250px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 380px);
    column-gap: 38px;
    padding-left: 38px;
    padding-right: 38px;
  }

  .hero h1 {
    font-size: clamp(3.65rem, 5.4vw, 4.8rem);
    max-width: 760px;
  }

  .logo-frame {
    width: min(370px, 31vw);
    min-width: 320px;
  }
}


/* ===== Final hero positioning ===== */
@media (min-width: 981px) {
  .hero {
    width: 100%;
    max-width: none;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 430px);
    column-gap: clamp(54px, 5vw, 88px);
    padding-left: 14px;
    padding-right: clamp(42px, 4.5vw, 82px);
  }

  .hero-content {
    justify-self: stretch;
    width: 100%;
    max-width: none;
    padding-left: clamp(0px, 18vw, 280px);
    min-width: 0;
  }

  .hero h1 {
    width: min(100%, 790px);
    max-width: 790px;
    font-size: clamp(3.8rem, 5.15vw, 5.55rem);
    line-height: .91;
    letter-spacing: -.064em;
    margin-right: 0;
  }

  .hero-copy {
    width: min(100%, 640px);
    max-width: 640px;
  }

  .hero-actions,
  .hero-stats {
    width: min(100%, 640px);
  }

  .hero-visual {
    justify-self: end;
    align-self: center;
    width: 100%;
    min-width: 0;
  }

  .logo-frame {
    width: min(420px, 29vw);
    min-width: 360px;
  }
}

@media (min-width: 981px) and (max-width: 1320px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 370px);
    column-gap: 34px;
    padding-right: 34px;
  }

  .hero-content {
    padding-left: clamp(34px, 6vw, 90px);
  }

  .hero h1 {
    max-width: 690px;
    font-size: clamp(3.45rem, 5vw, 4.65rem);
  }

  .logo-frame {
    width: min(365px, 29vw);
    min-width: 315px;
  }
}

/* ===== Complete About section redesign ===== */
.about-layout-redesign {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 24px;
}

.about-profile-card,
.management-feature-card {
  position: relative;
  min-height: 470px;
  padding: clamp(30px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
    #09090b;
  box-shadow:
    0 24px 70px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.035);
}

.about-profile-card::before {
  content: "";
  position: absolute;
  inset: auto -90px -120px auto;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: rgba(255,21,31,.13);
  filter: blur(10px);
}

.about-profile-card::after {
  content: "SCREDIXX";
  position: absolute;
  right: -14px;
  bottom: -28px;
  color: rgba(255,255,255,.025);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 950;
  letter-spacing: -.08em;
  pointer-events: none;
}

.about-profile-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 34px;
}

.about-profile-badge {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: white;
  background:
    linear-gradient(145deg, #ff323b, #b40009);
  box-shadow: 0 18px 42px rgba(255,21,31,.24);
  font-weight: 950;
  font-size: 1.3rem;
  letter-spacing: -.04em;
}

.about-profile-top h3 {
  margin: 8px 0 0;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: .95;
  letter-spacing: -.055em;
}

.about-profile-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.about-profile-copy p {
  color: var(--white-soft);
  line-height: 1.82;
  margin: 0 0 18px;
}

.about-tags {
  position: absolute;
  z-index: 2;
  left: clamp(30px, 4vw, 48px);
  right: clamp(30px, 4vw, 48px);
  bottom: clamp(30px, 4vw, 44px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-tags span {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: #d7d7dc;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.management-feature-card {
  background:
    radial-gradient(circle at 92% 6%, rgba(255,21,31,.18), transparent 42%),
    linear-gradient(145deg, rgba(255,21,31,.075), rgba(255,255,255,.02)),
    #09090b;
}

.management-accent {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(to bottom, var(--red), rgba(255,21,31,.08));
  box-shadow: 0 0 24px rgba(255,21,31,.25);
}

.management-feature-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 24px;
}

.management-mark {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: white;
  background: var(--red);
  box-shadow: 0 18px 42px rgba(255,21,31,.23);
}

.management-mark svg {
  width: 29px;
}

.management-feature-head h3 {
  margin: 12px 0 0;
  max-width: 700px;
  font-size: clamp(2.25rem, 4.1vw, 4rem);
  line-height: 1;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.management-feature-card > p {
  position: relative;
  z-index: 2;
  max-width: 690px;
  margin: 34px 0 38px 92px;
  color: var(--white-soft);
  line-height: 1.82;
}

.management-footer {
  position: relative;
  z-index: 2;
  margin-left: 92px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.management-mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.management-mini-stats span {
  min-width: 150px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.085);
  border-radius: 14px;
  background: rgba(255,255,255,.026);
  display: grid;
  gap: 4px;
}

.management-mini-stats strong {
  color: white;
  font-size: .7rem;
  letter-spacing: .13em;
}

.management-mini-stats small {
  color: var(--muted);
  font-size: .68rem;
}

.management-feature-card .role-link {
  flex: 0 0 auto;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .about-layout-redesign {
    grid-template-columns: 1fr;
  }

  .about-profile-card,
  .management-feature-card {
    min-height: auto;
  }

  .about-tags {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 32px;
  }

  .management-feature-card > p,
  .management-footer {
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .about-profile-card,
  .management-feature-card {
    padding: 26px 22px;
    border-radius: 20px;
  }

  .about-profile-top {
    align-items: flex-start;
  }

  .about-profile-badge,
  .management-mark {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
    border-radius: 17px;
  }

  .management-feature-head {
    grid-template-columns: 1fr;
  }

  .management-feature-card > p {
    margin-top: 24px;
  }

  .management-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .management-mini-stats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .management-feature-card .role-link {
    justify-content: center;
    width: 100%;
  }
}


/* =========================================================
   ÜBER MICH – FINALER CONTAINER-REDESIGN MIT FONT AWESOME
   ========================================================= */
.about-showcase {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.creator-panel,
.management-panel {
  position: relative;
  min-height: 610px;
  padding: clamp(28px, 3.3vw, 46px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.105);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.012)),
    #09090b;
  box-shadow:
    0 28px 80px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.04);
  display: flex;
  flex-direction: column;
}

.creator-panel::before,
.management-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: .4;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

.creator-panel::after {
  content: "\f11b";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: -28px;
  bottom: -48px;
  font-size: 14rem;
  color: rgba(255,255,255,.018);
  transform: rotate(-10deg);
  pointer-events: none;
}

.management-panel {
  border-color: rgba(255,21,31,.22);
  background:
    radial-gradient(circle at 95% 2%, rgba(255,21,31,.17), transparent 40%),
    linear-gradient(145deg, rgba(255,21,31,.07), rgba(255,255,255,.014)),
    #09090b;
}

.management-panel::after {
  content: "";
  position: absolute;
  left: 0;
  top: 34px;
  bottom: 34px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(to bottom, var(--red), rgba(255,21,31,.08));
  box-shadow: 0 0 28px rgba(255,21,31,.34);
}

.management-panel-glow {
  position: absolute;
  right: -90px;
  top: -90px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,21,31,.14);
  filter: blur(40px);
  pointer-events: none;
}

.panel-header {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.panel-icon {
  width: 64px;
  height: 64px;
  border-radius: 19px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: rgba(255,21,31,.09);
  border: 1px solid rgba(255,21,31,.18);
  font-size: 1.45rem;
}

.panel-icon-red {
  color: white;
  background: linear-gradient(145deg, #ff313b, #c30009);
  border-color: rgba(255,255,255,.1);
  box-shadow: 0 16px 38px rgba(255,21,31,.22);
}

.panel-heading {
  min-width: 0;
}

.panel-heading > span {
  display: block;
  color: var(--red);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .2em;
  margin: 3px 0 10px;
}

.panel-heading h3 {
  margin: 0;
  max-width: 680px;
  color: white;
  font-size: clamp(2rem, 3.15vw, 3.45rem);
  line-height: 1.02;
  letter-spacing: -.05em;
  text-wrap: balance;
}

.panel-number {
  color: rgba(255,255,255,.18);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .12em;
  padding-top: 5px;
}

.panel-copy {
  position: relative;
  z-index: 2;
  margin: 30px 0 26px;
}

.panel-copy p {
  margin: 0;
  color: #c3c3ca;
  font-size: 1rem;
  line-height: 1.75;
}

.feature-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
}

.feature-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 15px;
  background: rgba(255,255,255,.025);
  transition: border-color .2s, background .2s, transform .2s;
}

.feature-item:hover {
  transform: translateX(4px);
  border-color: rgba(255,21,31,.24);
  background: rgba(255,21,31,.045);
}

.feature-item > i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--red);
  background: rgba(255,21,31,.095);
}

.feature-item div {
  display: grid;
  gap: 4px;
}

.feature-item strong,
.responsibility-card strong {
  color: white;
  font-size: .9rem;
}

.feature-item span,
.responsibility-card span {
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.55;
}

.panel-footer {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.panel-footer span {
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.08);
  color: #d7d7db;
  font-size: .7rem;
  font-weight: 800;
}

.panel-footer i {
  color: var(--red);
  margin-right: 7px;
}

.responsibility-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.responsibility-card {
  min-height: 175px;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.085);
  background: rgba(255,255,255,.026);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  transition: transform .2s, border-color .2s, background .2s;
}

.responsibility-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,21,31,.25);
  background: rgba(255,21,31,.045);
}

.responsibility-card > i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 5px;
  border-radius: 14px;
  color: white;
  background: linear-gradient(145deg, #ff313b, #ba0008);
  box-shadow: 0 12px 30px rgba(255,21,31,.16);
}

.management-cta {
  position: relative;
  z-index: 3;
  margin-top: auto;
  min-height: 76px;
  padding: 14px 17px 14px 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 17px;
  border: 1px solid rgba(255,21,31,.28);
  background:
    linear-gradient(100deg, rgba(255,21,31,.14), rgba(255,21,31,.035));
  transition: transform .2s, border-color .2s, background .2s;
}

.management-cta:hover {
  transform: translateY(-3px);
  border-color: rgba(255,21,31,.55);
  background:
    linear-gradient(100deg, rgba(255,21,31,.21), rgba(255,21,31,.055));
}

.management-cta span {
  display: grid;
  gap: 4px;
  color: white;
  font-size: .88rem;
  font-weight: 900;
}

.management-cta small {
  color: var(--muted);
  font-size: .67rem;
  font-weight: 700;
}

.management-cta > i {
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: white;
  background: var(--red);
  box-shadow: 0 12px 30px rgba(255,21,31,.2);
}

@media (max-width: 980px) {
  .about-showcase {
    grid-template-columns: 1fr;
  }

  .creator-panel,
  .management-panel {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .creator-panel,
  .management-panel {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .panel-header {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .panel-number {
    display: none;
  }

  .panel-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    font-size: 1.2rem;
  }

  .panel-heading h3 {
    font-size: clamp(1.85rem, 9vw, 2.7rem);
  }

  .responsibility-grid {
    grid-template-columns: 1fr;
  }

  .responsibility-card {
    min-height: auto;
  }
}


/* =========================================================
   LIVESTREAM-BEREICH
   ========================================================= */
.stream-section {
  padding-top: 80px;
}

.stream-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  gap: 22px;
  align-items: stretch;
}

.stream-player-shell,
.stream-info-card {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
}

.stream-player-top {
  min-height: 62px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,.085);
  background: rgba(255,255,255,.02);
}

.stream-live-label {
  color: white;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.stream-live-label span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 14px var(--red);
}

.stream-player-top a {
  color: var(--muted);
  font-size: .74rem;
  font-weight: 800;
}

.stream-player-top a:hover {
  color: white;
}

.stream-player-ratio {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.stream-player-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.stream-info-card {
  position: relative;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 90% 5%, rgba(145,70,255,.2), transparent 40%),
    linear-gradient(145deg, rgba(145,70,255,.08), rgba(255,255,255,.015));
}

.stream-info-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 18px;
  color: white;
  background: #9146ff;
  font-size: 1.6rem;
  box-shadow: 0 18px 42px rgba(145,70,255,.25);
}

.stream-info-kicker {
  color: #b991ff;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .18em;
}

.stream-info-card h3 {
  margin: 12px 0 16px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.stream-info-card p {
  margin: 0 0 26px;
  color: var(--white-soft);
  line-height: 1.72;
}

/* =========================================================
   MOBILE-DARSTELLUNG – FINALER FIX
   ========================================================= */
@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    width: 100%;
    min-height: 68px;
    padding: 10px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: .8rem;
  }

  .brand small {
    font-size: .5rem;
  }

  .main-nav {
    inset: 68px 0 0 0;
    width: 100%;
    height: calc(100dvh - 68px);
    padding: 18px;
    background: rgba(5,5,5,.985);
    overflow-y: auto;
  }

  .main-nav a {
    display: block;
    width: 100%;
    padding: 15px 10px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .main-nav .nav-cta {
    margin-top: 12px;
    padding: 15px;
    border-radius: 10px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: auto;
    padding: 102px 18px 70px;
    gap: 26px;
    text-align: left;
  }

  .hero-visual {
    order: 0;
    width: 100%;
    display: grid;
    place-items: center;
  }

  .hero-content {
    order: 1;
    width: 100%;
    padding: 0;
    display: block;
    text-align: left;
  }

  .logo-frame {
    width: min(300px, 88vw);
    min-width: 0;
  }

  .logo-frame img {
    width: 72%;
  }

  .status-chip {
    right: 2%;
    bottom: 10%;
    padding: 9px 12px;
    font-size: .62rem;
  }

  .hero .eyebrow {
    justify-content: flex-start;
  }

  .hero h1 {
    width: 100%;
    max-width: none;
    margin: 20px 0 18px;
    font-size: clamp(2.8rem, 15vw, 4.25rem);
    line-height: .88;
    letter-spacing: -.065em;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
    font-size: .96rem;
    line-height: 1.65;
  }

  .hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 26px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-stats {
    width: 100%;
    margin-top: 34px;
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    padding: 14px 0;
    text-align: left;
  }

  .section {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading h2 {
    font-size: clamp(2.45rem, 12vw, 3.75rem);
  }

  .about-showcase,
  .social-grid,
  .stream-layout {
    grid-template-columns: 1fr;
  }

  .creator-panel,
  .management-panel,
  .social-card,
  .stream-player-shell,
  .stream-info-card {
    width: 100%;
    min-width: 0;
  }

  .panel-heading h3 {
    overflow-wrap: anywhere;
  }

  .stream-player-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .stream-player-ratio {
    aspect-ratio: 16 / 9;
  }

  .stream-info-card {
    padding: 25px 22px;
  }

  .cta-panel {
    width: 100%;
  }
}


/* =========================================================
   TWITCH PLAYER + LIVE-CHAT
   ========================================================= */
.stream-embed {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 18px;
  align-items: stretch;
}

.stream-player-shell,
.stream-chat-shell {
  min-width: 0;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  overflow: hidden;
  background: #08080a;
  box-shadow: 0 28px 80px rgba(0,0,0,.3);
}

.stream-chat-shell {
  display: flex;
  flex-direction: column;
}

.stream-chat-top {
  min-height: 62px;
  padding: 14px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,.085);
  background:
    linear-gradient(90deg, rgba(145,70,255,.12), transparent),
    rgba(255,255,255,.02);
  color: white;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.stream-chat-top i {
  margin-right: 8px;
  color: #a970ff;
}

.stream-chat-top > span {
  color: #a970ff;
  font-size: .62rem;
}

.stream-chat-frame {
  position: relative;
  flex: 1;
  min-height: 430px;
  background: #18181b;
}

.stream-chat-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.stream-mobile-note {
  margin-top: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(145,70,255,.18);
  border-radius: 15px;
  background: rgba(145,70,255,.055);
  display: flex;
  align-items: center;
  gap: 14px;
}

.stream-mobile-note > i {
  color: #a970ff;
  font-size: 1.35rem;
}

.stream-mobile-note p {
  flex: 1;
  margin: 0;
  color: var(--muted);
  font-size: .77rem;
  line-height: 1.55;
}

.stream-mobile-note a {
  flex: 0 0 auto;
  color: white;
  font-size: .72rem;
  font-weight: 900;
}

@media (max-width: 1050px) {
  .stream-embed {
    grid-template-columns: minmax(0, 1fr) 310px;
  }
}

@media (max-width: 860px) {
  .stream-embed {
    grid-template-columns: 1fr;
  }

  .stream-chat-frame {
    min-height: 480px;
  }
}

@media (max-width: 760px) {
  .stream-section {
    padding-top: 70px;
  }

  .stream-player-shell,
  .stream-chat-shell {
    border-radius: 17px;
  }

  .stream-player-top,
  .stream-chat-top {
    min-height: 56px;
    padding: 12px 14px;
  }

  .stream-player-top {
    flex-direction: row;
    align-items: center;
  }

  .stream-player-top a {
    font-size: .65rem;
  }

  .stream-live-label {
    font-size: .62rem;
    letter-spacing: .1em;
  }

  .stream-chat-frame {
    min-height: 500px;
  }

  .stream-mobile-note {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .stream-mobile-note p {
    flex-basis: calc(100% - 42px);
  }

  .stream-mobile-note a {
    width: 100%;
    padding-left: 38px;
  }
}

@media (max-width: 430px) {
  .stream-player-top a {
    max-width: 110px;
    text-align: right;
  }

  .stream-chat-frame {
    min-height: 520px;
  }
}
