/* =========================
   GLOBAL & TYPOGRAFIE
========================= */
:root {
  --accent: #ff8c32;
  --accent-light: #ffa85f;
  --bg-dark: #080a0d;
  --bg-card: #11141a;
  --border: #1c1f26;
  --text-light: #e6e6e6;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
}

h2 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  border-left: 4px solid var(--accent);
  padding-left: 12px;
  letter-spacing: 1px;
  font-weight: 600;
}

h3 {
  margin: 0 0 10px 0;
  font-size: 1.4rem;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-light);
}

/* =========================
   NAVIGATIE
========================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: rgba(5, 6, 9, 0.9);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 10;
  backdrop-filter: blur(6px);
}

.nav-logo {
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 1rem;
}

.nav-links a {
  margin-left: 20px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =========================
   ANIMATIES BASIS
========================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade {
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}

/* =========================
   HERO SLIDESHOW
========================= */
.hero-slideshow {
  position: relative;
  height: 100vh;
  padding-top: 60px;
  overflow: hidden;
}

.hero-slideshow .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease, transform 6s ease;
  transform: scale(1);
}

.hero-slideshow .slide.active {
  opacity: 1;
  transform: scale(1.08);
}


@keyframes slideShow {
  0%   { opacity: 0; }
  5%   { opacity: 1; }
  30%  { opacity: 1; }
  35%  { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes zoomInSlow {
  0%   { transform: scale(1); }
  100% { transform: scale(1.10); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(1.5px);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  width: 100%;
  max-width: 900px;
  padding: 20px;
}


.hero-content h1 {
  font-size: 4.4rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 6px;
  font-weight: 800;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 35px;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  padding: 18px 42px;
  background: var(--accent);
  color: #0a0c10;
  font-weight: bold;
  border-radius: 6px;
  transition: 0.25s;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.btn:hover {
  background: var(--accent-light);
  color: #0a0c10;
  transform: translateY(-3px);
}

/* =========================
   LAYOUT & SECTIONS
========================= */
main {
  max-width: 1400px;
  margin: 100px auto;
  padding: 0 20px;
}

.section {
  margin-bottom: 120px;
}

/* =========================
   SPLIT / FEATURES
========================= */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 60px;
  align-items: center;
}

.split img {
  width: 100%;
  border-radius: 12px;
  filter: brightness(0.85);
  transition: 0.3s;
  box-shadow: 0 0 40px rgba(0,0,0,0.4);
}

.split img:hover {
  filter: brightness(1);
  transform: scale(1.02);
}

.split-text {
  font-size: 1.25rem;
  line-height: 1.75;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 35px;
  border-radius: 12px;
  transition: 0.25s;
  font-size: 1.2rem;
  line-height: 1.7;
  position: relative;
  overflow: hidden;
}

.feature:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.feature::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -40%;
  width: 250px;
  height: 250px;
  background: rgba(255,140,50,0.05);
  transform: rotate(45deg);
}

.divider {
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 80px 0;
  opacity: 0.4;
}

/* =========================
   SOCIAL CARD
========================= */
.social-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.social-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
}

.social-header span {
  font-size: 0.95rem;
  color: #aaa;
}

.social-btn {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid var(--accent);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.25s;
}

.social-btn:hover {
  background: var(--accent);
  color: #0a0c10;
}

.live-badge {
  display: inline-block;
  background: #e91916;
  color: #fff;
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-left: 8px;
}

/* =========================
   FOOTER
========================= */
footer {
  text-align: center;
  padding: 40px;
  margin-top: 60px;
  border-top: 1px solid var(--border);
  color: #777;
  font-size: 0.9rem;
}

/* =========================
   MINI SLIDESHOW
========================= */
.mini-slideshow {
  position: relative;
  width: 100%;
  height: 800px;
  border-radius: 12px;
  overflow: hidden;
  margin: 40px 0;
  box-shadow: 0 0 40px rgba(0,0,0,0.4);
}

.mini-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: miniSlideFade 30s infinite;
}

.mini-slide:nth-child(1) { animation-delay: 0s; }
.mini-slide:nth-child(2) { animation-delay: 5s; }
.mini-slide:nth-child(3) { animation-delay: 10s; }
.mini-slide:nth-child(4) { animation-delay: 15s; }
.mini-slide:nth-child(5) { animation-delay: 20s; }
.mini-slide:nth-child(6) { animation-delay: 25s; }

.mini-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: miniZoom 30s ease-in-out infinite;
}

@keyframes miniSlideFade {
  0%   { opacity: 0; }
  5%   { opacity: 1; }
  25%  { opacity: 1; }
  30%  { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes miniZoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.mini-slideshow-text {
  font-size: 1.25rem;
  opacity: 0.85;
  margin-top: 20px;
  text-align: center;
}

/* =========================
   MODAL
========================= */
.tfo-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease forwards;
}

.tfo-modal-inner {
  background: #0d0f14;
  border: 1px solid #1c1f26;
  border-radius: 14px;
  padding: 30px 34px;
  width: 90%;
  max-width: 520px;
  box-shadow: 0 0 50px rgba(0,0,0,0.6);
  animation: slideUp 0.35s ease forwards;
}

.tfo-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tfo-modal-header h2 {
  margin: 0;
  font-size: 1.6rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tfo-close {
  font-size: 1.8rem;
  cursor: pointer;
  color: #aaa;
  transition: 0.2s;
}

.tfo-close:hover {
  color: #fff;
}

.tfo-subtitle {
  margin: 12px 0 22px;
  color: #b8b8b8;
  font-size: 1rem;
  line-height: 1.6;
}

.tfo-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 26px;
}

.tfo-step {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tfo-step-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ff8c32;
  color: #0d0f14;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.tfo-step-text {
  font-size: 1.05rem;
  color: #e6e6e6;
}

.tfo-btn {
  width: 100%;
  padding: 14px 20px;
  background: #ff8c32;
  color: #0d0f14;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tfo-btn:hover {
  background: #ffa85f;
  transform: translateY(-2px);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

/* =========================
   SPLIT-TEXT + BM FRAME
========================= */
.split-text {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 20px;
}

.split-text .left {
  flex: 1.2;
}

.split-text .right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.bm-frame {
  border: 0;
  max-width: 100%;
  border-radius: 10px;
  background: #222222;
}

/* =========================
   TIKTOK SLIDER
========================= */
.tiktok-container {
  position: relative;
  margin: 40px 0;
}

.slider-window {
  overflow: hidden;
  border-radius: 16px;
}

.tiktok-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  flex-wrap: nowrap;
}

.tiktok-card {
  min-width: calc(33.333% - 14px);
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border);
  display: flex;
  justify-content: center;
  padding-top: 15px;
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.nav-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.nav-btn:hover {
  background: var(--accent);
  color: #000;
}

/* =========================
   TWITCH GRID & CARDS
========================= */
.twitch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.twitch-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  background: #0c0e13;
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: 0.25s;
  min-height: 110px;
}

.twitch-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.avatar-wrapper {
  position: relative;
}

.avatar-wrapper img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.live-badge.tfo {
  background: #e91916;
  color: #fff;
}

.live-badge.grey {
  background: #777;
  color: #fff;
}

.live-badge {
  position: absolute;
  bottom: -6px;
  right: -6px;
  padding: 4px 8px;
  font-size: 0.75rem;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 0 10px rgba(233, 25, 22, 0.6);
}

.twitch-info h3 {
  margin: 0;
  font-size: 1.25rem;
}

.stream-title {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: var(--accent);
}

.offline {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: #777;
}

.twitch-card.live-tfo {
  min-height: 160px;
  border-color: #e91916;
  box-shadow: 0 0 22px rgba(233, 25, 22, 0.45);
  background: linear-gradient(90deg, rgba(233,25,22,0.10), rgba(0,0,0,0.25));
  transform: scale(1.02);
}

.twitch-card.live-grey {
  border-color: #555;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

/* =========================
   TIKTOK CTA
========================= */
.tiktok-cta {
  background: linear-gradient(135deg, rgba(255,140,50,0.12), rgba(0,0,0,0.4));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 60px 40px;
  margin: 80px 0;
  text-align: center;
  box-shadow: 0 0 40px rgba(0,0,0,0.35);
}

.tiktok-cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.tiktok-cta h2 {
  font-size: 2.6rem;
  margin-bottom: 12px;
  border-left: none;
  padding-left: 0;
}

.cta-subtitle {
  font-size: 1.25rem;
  opacity: 0.85;
  margin-bottom: 30px;
}

.cta-btn {
  display: inline-block;
  padding: 16px 36px;
  background: var(--accent);
  color: #0a0c10;
  font-weight: 700;
  border-radius: 8px;
  font-size: 1.2rem;
  letter-spacing: 1px;
  transition: 0.25s;
  text-transform: uppercase;
}

.cta-btn:hover {
  background: var(--accent-light);
  color: #0a0c10;
  transform: translateY(-3px);
}

/* =========================
   FAQ
========================= */
.faq-section {
  margin: 80px 0;
  padding: 40px;
  background: #0c0e13;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(0,0,0,0.35);
}

.faq-section h2 {
  font-size: 2.4rem;
  margin-bottom: 30px;
}

.faq-item {
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 12px;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.25rem;
  padding: 12px 0;
  cursor: pointer;
  transition: 0.25s;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  opacity: 0.8;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 8px;
}

.faq-question::after {
  content: "›";
  float: right;
  transition: transform 0.3s;
  opacity: 0.6;
}

.faq-item.active .faq-question::after {
  transform: rotate(90deg);
  opacity: 1;
}

/* =========================
   REVIEWS SLIDER
========================= */
.reviews-slider-section {
  margin: 80px 0;
  padding: 40px;
  background: #0c0e13;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(0,0,0,0.35);
}

.reviews-slider-section h2 {
  font-size: 2.4rem;
  margin-bottom: 30px;
}

.reviews-slider-window {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  cursor: grab;
  user-select: none;
}

.reviews-track:active {
  cursor: grabbing;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  width: 280px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 20px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: auto;
  overflow: visible;
  transition: none !important;
  animation: none !important;
}

.review-card p {
  line-height: 1.4;
  white-space: normal;
  overflow: visible;
  animation: none !important;
  transition: none !important;
}

.stars {
  color: var(--accent);
  margin-bottom: 6px;
}

.hours {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 10px;
}

/* =========================
   STAFF SECTION
========================= */
.staff-section {
  margin: 80px 0;
  padding: 40px;
  background: #0c0e13;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(0,0,0,0.35);
}

.staff-section h2 {
  font-size: 2.4rem;
  margin-bottom: 30px;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.staff-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 24px;
  border-radius: 14px;
  text-align: center;
  transition: 0.25s;
}

.staff-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(255,140,50,0.25);
  transform: translateY(-3px);
}

.staff-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
  border: 2px solid rgba(255,255,255,0.15);
}

.staff-card h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.staff-card .role {
  font-size: 0.95rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.staff-card .desc {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.4;
}

/* =========================
   RESPONSIVE BREAKPOINTS
========================= */

/* Hero & nav */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 3.6rem;
    letter-spacing: 4px;
  }
  .hero-content p {
    font-size: 1.3rem;
  }
}

@media (max-width: 900px) {
  .hero-slideshow {
    height: 80vh;
  }
  .hero-content h1 {
    font-size: 2.8rem;
    letter-spacing: 3px;
  }
  .hero-content p {
    font-size: 1.15rem;
  }
  .btn {
    padding: 16px 32px;
    font-size: 1rem;
  }
  .nav-links,
  .nav-toggle {
    display: none !important;
  }
  .nav-direct {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .hero-slideshow {
    height: 70vh;
  }
  .hero-content h1 {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }
  .hero-content p {
    font-size: 1rem;
  }
}

/* Split-text */
@media (max-width: 900px) {
  .split-text {
    flex-direction: column;
  }
  .split-text .right {
    justify-content: flex-start;
  }
}

/* TikTok cards */
@media (max-width: 1100px) {
  .tiktok-card {
    min-width: calc(50% - 10px);
  }
}

@media (max-width: 750px) {
  .tiktok-card {
    min-width: 100%;
  }
}

/* Staff grid responsive */
@media (max-width: 1200px) {
  .staff-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .staff-grid {
    grid-template-columns: 1fr;
  }
}
/* SPECIAL THANKS SECTION */
/* SPECIAL THANKS SECTION — COMPACT VERSION */
.thanks-section {
  margin: 60px 0;
  padding: 30px;
  background: #0c0e13;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 0 30px rgba(0,0,0,0.3);
}

.thanks-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* GRID — kleiner & compacter */
.thanks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD — kleiner, subtieler */
.thanks-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 18px;
  border-radius: 12px;
  text-align: center;
  transition: 0.25s;
}

.thanks-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 14px rgba(255,140,50,0.2);
  transform: translateY(-2px);
}

.thanks-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.thanks-card p {
  font-size: 0.85rem;
  opacity: 0.8;
  line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .thanks-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .thanks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .thanks-grid {
    grid-template-columns: 1fr;
  }
}
/* TOOLTIP (verstopt standaard) */
.staff-card {
  position: relative;
}

.staff-card .tooltip {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(0,0,0,0.85);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--accent-light);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 12px rgba(255,140,50,0.25);
}

/* Pijltje onder tooltip */
.staff-card .tooltip::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent rgba(0,0,0,0.85) transparent;
}

/* HOVER — tooltip verschijnt */
.staff-card:hover .tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
@keyframes glowPulse {
  0% { box-shadow: 0 0 0px rgba(255,140,50,0.0); }
  50% { box-shadow: 0 0 12px rgba(255,140,50,0.25); }
  100% { box-shadow: 0 0 0px rgba(255,140,50,0.0); }
}

.btn,
.live-badge.tfo {
  animation: glowPulse 2.8s ease-in-out infinite;
}
.card-hover {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-hover:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}
.social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.si {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.25s ease;
}

.si svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

.si:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 12px rgba(255,140,50,0.35);
  border-color: var(--accent);
}


.tfo-live-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 16px;
  margin-bottom: 25px;
}

.tfo-live-container .twitch-card {
  width: 100%; 
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .tfo-live-container {
    grid-template-columns: 1fr; 
  }
}
