@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Russo+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&display=swap");

/* ============================================================
   BASE
   ============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #070a1c;
  color: #fff;
  overflow-x: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  background-attachment: fixed;
}

a {
  text-decoration: none;
}

/* mobile drawer backdrop - hidden on desktop, shown inside mobile media query */
.nav-overlay {
  display: none;
}

/* logo inside the drawer - only visible in the mobile drawer */
.site-header .nav .drawer-logo {
  display: none;
}

/* reusable section width wrapper */
.cstm_container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 10;
  height: 94px;
  display: flex;
  align-items: center;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    height 0.3s ease;
}

/* sticky state — added by JS once the page is scrolled */
.site-header.scrolled {
  position: fixed;
  top: 0;
  height: 78px;
  background: #05070f;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header .header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  background: url("../images/navbar-frame.svg") no-repeat center center;
  background-size: 100% 58px;
}

/* remove the decorative navbar frame image when sticky */
.site-header.scrolled .header-inner {
  background: none;
}

.site-header .logo img {
  height: 90px;
  width: auto;
  display: block;
  transition: height 0.3s ease;
}

.site-header.scrolled .logo img {
  height: 60px;
}

.site-header .nav {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 30px;
}

.site-header .nav a {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.25s ease;
}

.site-header .nav a:hover {
  color: #ff8a00;
}

.site-header .nav a.active {
  background: linear-gradient(117deg, #ff8a00, #ff5e00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 6px 18px rgba(255, 138, 0, 0.34);
}

.site-header .actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-header .discord-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  min-width: 150px;
  padding: 0 28px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #fff;
  background: url("../images/btn-discord.svg") no-repeat center center;
  background-size: 100% 100%;
  transition:
    filter 0.25s ease,
    transform 0.25s ease;
}

.site-header .discord-btn:hover {
  filter: brightness(1.12) drop-shadow(0 0 10px rgba(150, 230, 255, 0.45));
  transform: translateY(-1px);
}

.site-header .socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-header .soc {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}

.site-header .soc svg {
  width: 16px;
  height: 16px;
}

.site-header .soc:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
}

.site-header .soc.discord {
  background: #4f46e5;
}

.site-header .soc.youtube {
  background: #dc2626;
}

.site-header .soc.twitch {
  background: #9333ea;
}

/* hamburger - hidden on desktop */
.site-header .nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.site-header .nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: #fff;
  border-radius: 2px;
}

/* ============================================================
   HERO BANNER
   ============================================================ */
.hero-banner {
  position: relative;
  padding-top: 110px;
  /* background: #070a1c url("../images/banner-bg.png"); */
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
}

.hero-banner .hero-inner {
  position: relative;
  min-height: 600px;
  padding-bottom: 0;
  display: grid;
  grid-template-columns: 46% 54%;
  align-items: stretch;
  gap: 20px;
}

/* ---- left mascot ---- */
.hero-banner .art {
  position: relative;
  align-self: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-banner .art::before {
  content: "";
  position: absolute;
  width: 510px;
  height: 460px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #46a2d5;
  filter: blur(60px);
}

.hero-banner .art img {
  position: relative;
  width: auto;
  display: block;
  filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.55));
  height: 590px;
  animation: bannerZoom 3s ease-in-out infinite;
}

@keyframes bannerZoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

/* ---- right content ---- */
.hero-banner .content {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 75px;
  padding-bottom: 30px;
}

/* stat badge */
.hero-banner .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 280px;
  padding: 12px 36px;
  background: url("../images/stat-frame.svg") no-repeat center center;
  background-size: 100% 100%;
}

.hero-banner .stat .num {
  font-family: "Russo One", sans-serif;
  font-size: 48px;
  line-height: 1;
  background: linear-gradient(180deg, #f9eee5 44%, #fba75a 78%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-banner .stat .label {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: "Russo One", sans-serif;
  color: #fcc085;
  margin-top: 4px;
  text-align: center;
}

/* heading */
.hero-banner .title {
  text-transform: uppercase;
  line-height: 1.02;
}

.hero-banner .title span {
  display: block;
  background: linear-gradient(180deg, #f6f5f8 20%, #dbdade 76%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-banner .title .line-1 {
  font-weight: 700;
  font-size: 40px;
  letter-spacing: 0.5px;
  background: linear-gradient(
    180deg,
    rgba(246, 245, 248, 0.9) 20.83%,
    rgba(219, 218, 222, 0.9) 76.04%
  );
  background-clip: text;
  margin-left: -52px;
  display: flex;
  align-items: end;
  gap: 20px;
}

.hero-banner .title .line-2 {
  font-weight: 700;
  font-size: 65px;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* subtitle */
.hero-banner .subtitle {
  max-width: 600px;
  margin-top: 5px;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #ffffffb2;
}

/* info chips */
.hero-banner .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 2px;
}

.hero-banner .chip {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 219px;
  padding: 9px 18px;
  border-radius: 10px;
  background: rgba(8, 6, 14, 0.3);
  border: 1px solid #ff6700;
  box-shadow: 0 1px 29px rgba(255, 103, 0, 0.36);
}

.hero-banner .chip .ico {
  display: inline-flex;
  color: #ff8a00;
}

.hero-banner .chip .ico svg {
  width: 28px;
  height: 28px;
}

.hero-banner .chip .txt {
  font-size: 15px;
  line-height: 1.25;
  text-transform: uppercase;
  color: #fff;
}

.hero-banner .chip .txt b {
  display: block;
  font-weight: 700;
}

/* discord CTA */
.hero-banner .join-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 65px;
  align-self: start;
  height: 74px;
  min-width: 350px;
  padding: 0 66px 0 44px;
  background: url("../images/btn-join.svg") no-repeat center center;
  background-size: 100% 100%;
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #f3f2f6;
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
  margin-left: 40px;
}

.hero-banner .join-btn svg {
  width: 44px;
  height: 44px;
  color: #6d8ce8;
  flex-shrink: 0;
}

.hero-banner .join-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1) drop-shadow(0 12px 26px rgba(0, 0, 0, 0.5));
}

/* ---- decorative accents ---- */
.hero-banner .cstm_container {
  position: relative;
  z-index: 2;
}

.hero-banner .deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.hero-banner .streak {
  top: 115px;
  left: 28%;
  width: 600px;
  height: 112px;
  background: url("../images/accent-streak.svg") no-repeat center center / 100%
    100%;
}

.hero-banner .gold {
  top: 155px;
  left: 36%;
  width: 790px;
  height: 18px;
  background: url("../images/accent-gold.svg") no-repeat center center / 100%
    100%;
}

.hero-banner .line-mid,
.hero-banner .line-bot {
  left: 0;
  right: 0;
  height: 4px;
  background: url("../images/divider-line.svg") no-repeat center center / 100%
    100%;
}

.hero-banner .line-mid {
  bottom: 195px;
  box-shadow: 0 16px 34px -2px rgba(216, 95, 20, 0.55);
}

.hero-banner .line-bot {
  bottom: 46px;
}

/* ============================================================
   WHO WE ARE
   ============================================================ */
.about-section {
  position: relative;
  padding: 60px 0;
  /* background: #070a1c url("../images/section-bg.png") no-repeat center top; */
  background-size: cover;
}

/* section heading */
.about-section .about-head {
  text-align: center;
  margin-bottom: 54px;
}

.about-section .title {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 42px;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 6px 18px rgba(255, 138, 0, 0.34);
}

.about-section .title span {
  background: linear-gradient(132deg, #ff8a00, #ff5e00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-section .subtitle {
  margin-top: 12px;
  font-family: "Archivo", sans-serif;
  font-size: 18px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* story head: 01 + title + divider */
.about-section .story-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

.about-section .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 15px;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(106deg, #ff8a00, #ff5e00);
  box-shadow: 0 6px 9px rgba(255, 138, 0, 0.34);
}

.about-section .story-head h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

.about-section .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0)
  );
}

/* story body */
.about-section .story {
  display: grid;
  grid-template-columns: 1fr 400px;
  align-items: center;
  gap: 50px;
}

.about-section .quote {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.6;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 6px 18px rgba(255, 138, 0, 0.34);
}

.about-section .quote span {
  background: linear-gradient(170deg, #ff8a00, #ff5e00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-section .desc {
  margin-top: 14px;
  font-size: 14.5px;
  line-height: 1.7;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* feature cards */
.about-section .cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.about-section .card {
  display: flex;
  gap: 16px;
  padding: 19px 21px;
  border-radius: 18px;
  border: 1px solid rgba(255, 138, 0, 0.22);
  background: linear-gradient(
    160deg,
    rgba(13, 19, 36, 0.94),
    rgba(8, 13, 26, 0.95)
  );
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.45),
    0 0 22px rgba(255, 138, 0, 0.08);
  backdrop-filter: blur(5px);
  flex-direction: row;
}

.about-section .card:first-child {
  border-color: #ff8a00;
}

.about-section .card .ico {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  border: 1px solid rgba(255, 138, 0, 0.45);
  background: linear-gradient(
    135deg,
    rgba(255, 138, 0, 0.22),
    rgba(59, 130, 246, 0.1)
  );
  box-shadow: inset 0 0 26px rgba(255, 138, 0, 0.3);
  color: #ff8a00;
}

.about-section .card .ico svg {
  width: 22px;
  height: 22px;
}

.about-section .card h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #fff;
}

.about-section .learn-btn i {
  -webkit-text-stroke: 0.5px;
  margin-left: 6px;
}

.about-section .card .info p {
  margin-top: 3px;
  font-size: 14px;
  line-height: 1.5;
  color: #9fb4d4;
  margin-bottom: 0;
}

/* learn more button */
.about-section .learn-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 26px;
  padding: 9px 18px;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(127deg, #ff8a00, #ff5e00);
  box-shadow: 0 6px 9px rgba(255, 138, 0, 0.34);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.about-section .learn-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(255, 138, 0, 0.45);
}

/* mascot */
.about-section .story-art {
  display: flex;
  justify-content: center;
}

.about-section .story-art img {
  width: 100%;
  max-width: 370px;
  height: auto;
  animation: bgZoom 2s ease-in-out infinite;
}

@keyframes bgZoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* ============================================================
   MEET THE CREW
   ============================================================ */
.crew-section {
  position: relative;
  padding: 30px 0;
  /* background: #070a1c url("../images/section-bg.png") no-repeat center top; */
  background-size: cover;
}

/* section head: 02 + title + divider */
.crew-section .sec-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

.crew-section .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 15px;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(106deg, #ff8a00, #ff5e00);
  box-shadow: 0 6px 9px rgba(255, 138, 0, 0.34);
}

.crew-section .sec-head h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

.crew-section .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0)
  );
}

/* founder cards row */
.crew-section .founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* community crew label */
.crew-section .crew-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 30px 0 20px;
}

.crew-section .crew-label span:first-child {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

.crew-section .crew-label .line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.09);
}

/* community crew row */
.crew-section .members {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* "View All" reveal button - only used on mobile */
.crew-section .crew-viewall {
  display: none;
}

/* ---- shared card base (founder + member) ---- */
.crew-section .tcard {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: #0c1d3a;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.42);
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.crew-section .crew-card {
  height: 290px;
}

.crew-section .member-card {
  height: 360px;
}

.crew-section .tcard .photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.crew-section .tcard .grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 11, 22, 0.94) 6%,
    rgba(6, 11, 22, 0.25) 44%,
    rgba(6, 11, 22, 0) 72%
  );
}

/* status dot (members) */
.crew-section .member-card .dot {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: #ff8a00;
  opacity: 0.85;
  box-shadow: 0 0 10px #ff8a00;
}

.crew-section .member-card.member-blue .dot {
  background: #3b82f6;
  box-shadow: 0 0 10px #3b82f6;
}

/* default content at bottom */
.crew-section .tcard .base {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 18px 16px;
  transition: opacity 0.3s ease;
}

/* hover overlay */
.crew-section .tcard .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: end;
  gap: 9px;
  padding: 24px 18px;
  background: linear-gradient(
    to top,
    rgba(5, 10, 20, 0.97),
    rgba(7, 13, 28, 0.95)
  );
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.crew-section .tcard:hover {
  border-color: rgba(255, 138, 0, 0.5);
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.5),
    0 0 28px rgba(255, 138, 0, 0.16);
}

.crew-section .tcard:hover .overlay {
  opacity: 1;
  visibility: visible;
}

.crew-section .tcard:hover .base {
  opacity: 0;
}

/* card text */
.crew-section .tcard .tier {
  padding: 4px 11px;
  border-radius: 20px;
  background: rgba(255, 138, 0, 0.15);
  border: 1px solid rgba(255, 138, 0, 0.4);
  color: #ff8a00;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 9.5px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.crew-section .tcard .name {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.2px;
  color: #fff;
  margin-bottom: 0;
}

.crew-section .tcard .role {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #9fb4d4;
  margin-bottom: 0;
}

.crew-section .tcard .bio {
  max-width: 430px;
  font-size: 12.5px;
  line-height: 1.55;
  color: #c9d4e6;
  margin-bottom: 0;
}

.crew-section .tcard .read {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 6px;
  padding: 9px 15px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ff8a00, #ff5e00);
  box-shadow: 0 6px 9px rgba(255, 138, 0, 0.34);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  text-decoration: underline;
  transition: transform 0.25s ease;
}

.crew-section .tcard .read:hover {
  transform: translateY(-2px);
}

/* ============================================================
   LIVE FROM THE COMMUNITY
   ============================================================ */
.community-section {
  position: relative;
  padding: 50px 0;
  /* background: #070a1c url("../images/section-bg.png") no-repeat center top; */
  background-size: cover;
}

/* heading */
.community-section .comm-head {
  text-align: center;
  margin-bottom: 50px;
}

.community-section .title {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 38px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 6px 18px rgba(255, 138, 0, 0.34);
}

.community-section .title span {
  background: linear-gradient(162deg, #ff8a00, #ff5e00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.community-section .subtitle {
  margin-top: 10px;
  font-family: "Archivo", sans-serif;
  font-size: 18px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* feeds grid */
.community-section .feeds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

/* feed card */
.community-section .feed {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 19px 21px;
  border-radius: 18px;
  border: 1px solid rgba(255, 138, 0, 0.22);
  background: linear-gradient(
    143deg,
    rgba(13, 19, 36, 0.94),
    rgba(8, 13, 26, 0.95)
  );
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.45),
    0 0 22px rgba(255, 138, 0, 0.08);
  backdrop-filter: blur(5px);
  overflow: hidden;
}

/* subtle blue corner glow */
.community-section .feed::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -40px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.22),
    transparent 70%
  );
  pointer-events: none;
}

/* feed header */
.community-section .feed-head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.community-section .ico {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border-radius: 15px;
  border: 1px solid rgba(255, 138, 0, 0.25);
  background: rgba(255, 138, 0, 0.06);
  box-shadow: 0 0 18px rgba(255, 138, 0, 0.25);
}

.community-section .feed-title {
  flex: 1;
  min-width: 0;
}

.community-section .feed-title h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: #fff;
}

.community-section .feed-title .hash {
  color: #5b7299;
  font-weight: 600;
}

.community-section .feed-title p {
  margin: 2px 0 0;
  font-size: 13px;
  line-height: 1.6;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* status badge */
.community-section .status {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 11px;
  border-radius: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #fff;
}

.community-section .status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: #fff;
}

.community-section .status.live {
  background: #22c55e;
  border: 1px solid rgba(255, 255, 255, 0.73);
}

.community-section .status.live::before {
  box-shadow: 0 0 8px #22c55e;
}

.community-section .status.idle {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #9fb4d4;
}

.community-section .status.idle::before {
  background: #9fb4d4;
}

/* messages */
.community-section .messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.community-section .msg {
  padding: 12px 15px;
  border-radius: 5px 14px 14px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.07);
}

.community-section .msg-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.community-section .avatar {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.community-section .user {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
}

.community-section .user.green {
  color: #22c55e;
}

.community-section .user.blue {
  color: #3b82f6;
}

.community-section .user.purple {
  color: #a855f7;
}

.community-section .user.orange {
  color: #ff8a00;
}

.community-section .time {
  font-size: 12px;
  text-transform: uppercase;
  color: #5b7299;
}

.community-section .text {
  font-size: 13px;
  line-height: 1.45;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* footer */
.community-section .feed-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.community-section .feed-foot p {
  font-size: 12px;
  text-transform: uppercase;
  color: #9fb4d4;
}

.community-section .feed-foot b {
  color: #fff;
  font-weight: 700;
}

.community-section .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 16px;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.community-section .arrow:hover {
  background: rgba(255, 138, 0, 0.2);
  transform: translateX(2px);
}

/* ============================================================
   MEET THE CREATORS
   ============================================================ */
.creators-section {
  position: relative;
  padding: 30px 0 50px;
  /* background: #070a1c url("../images/section-bg.png") no-repeat center top; */
  background-size: cover;
}

/* heading */
.creators-section .creators-head {
  text-align: center;
  margin-bottom: 24px;
}

.creators-section .title {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 38px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 6px 18px rgba(255, 138, 0, 0.34);
}

.creators-section .title span {
  background: linear-gradient(162deg, #ff8a00, #ff5e00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.creators-section .subtitle {
  margin-top: 10px;
  font-family: "Archivo", sans-serif;
  font-size: 18px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* shared live badge */
.creators-section .badge-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 17px;
  border-radius: 20px;
  background: #e40000;
  border: 1px solid rgba(255, 255, 255, 0.73);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.creators-section .badge-live .dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: #fff;
}

.creators-section .badge-live.offline {
  background: #4e4e4e;
  border-color: rgba(255, 255, 255, 0.4);
}

/* ---- featured creator ---- */
.creators-section .featured {
  position: relative;
  display: grid;
  grid-template-columns: 300px 1fr 210px;
  min-height: 262px;
  margin-bottom: 26px;
  border-radius: 18px;
  border: 1px solid rgba(255, 138, 0, 0.22);
  background: linear-gradient(
    159deg,
    rgba(13, 19, 36, 0.94),
    rgba(8, 13, 26, 0.95)
  );
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.45),
    0 0 22px rgba(255, 138, 0, 0.08);
  backdrop-filter: blur(5px);
  overflow: hidden;
}

.creators-section .feat-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.creators-section .feat-body {
  display: flex;
  flex-direction: column;
  padding: 28px 32px;
}

.creators-section .badge-tier {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 7px;
  background: linear-gradient(130deg, #ff8a00, #ff5e00);
  border: 1px solid rgba(232, 130, 12, 0.36);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.creators-section .badge-tier .badge-star {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.creators-section .feat-body h3 {
  margin-top: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 30px;
  letter-spacing: 1px;
  color: #fff;
  text-transform: uppercase;
}

.creators-section .feat-body .bio {
  max-width: 490px;
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
}

.creators-section .feat-meta {
  display: flex;
  gap: 80px;
  margin-top: 22px;
}

.creators-section .feat-meta .lbl {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ff8a00;
}

.creators-section .feat-meta .tags {
  display: flex;
  gap: 5px;
  margin-top: 7px;
}

.creators-section .feat-meta .tags span {
  padding: 7px 10px;
  border-radius: 7px;
  border: 1px solid rgba(255, 138, 0, 0.22);
  background: linear-gradient(
    150deg,
    rgba(13, 19, 36, 0.94),
    rgba(8, 13, 26, 0.95)
  );
  font-family: "Poppins", sans-serif;
  font-size: 10.5px;
  color: #fff;
  white-space: nowrap;
}

.creators-section .feat-meta .sched p {
  margin-top: 7px;
  font-size: 13px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.creators-section .feat-side {
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 16px;
  padding: 28px 30px;
}

.featured-slider .feat-side {
  justify-content: center;
}

.creators-section .feat-thumb {
  height: 112px;
  border: 1px solid #e8820c;
  border-radius: 4px;
  overflow: hidden;
}

.creators-section .feat-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.creators-section .watch-live {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  border-radius: 15px;
  background: linear-gradient(134deg, #ff8a00, #ff5e00);
  color: #fff;
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.creators-section .watch-live:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 138, 0, 0.4);
}

.creators-section .featured > .badge-live {
  position: absolute;
  top: 36px;
  right: 24px;
}

/* ---- creator grid ---- */
.creators-section .creators {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* "View All Creators" reveal button - only used on mobile */
.creators-section .creators-viewall {
  display: none;
}

.creators-section .creator-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 138, 0, 0.22);
  background: linear-gradient(
    122deg,
    rgba(13, 19, 36, 0.94),
    rgba(8, 13, 26, 0.95)
  );
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.45),
    0 0 22px rgba(255, 138, 0, 0.08);
}

.creators-section .cc-img {
  position: relative;
  height: 180px;
}

.creators-section .cc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.creators-section .cc-img .badge-live {
  position: absolute;
  top: 12px;
  left: 12px;
}

.creators-section .cc-body {
  padding: 16px 18px 18px;
}

.creators-section .cc-body h4 {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #fff;
}

.creators-section .cc-body .games {
  margin-top: 4px;
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.creators-section .cc-body .sched {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  color: #ff8a00;
  font-weight: 500;
}

.creators-section .watch-stream {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 138, 0, 0.36);
  color: #ff8a00;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.25s ease;
}

.creators-section .watch-stream:hover {
  background: rgba(255, 138, 0, 0.12);
  background: #ff8a00;
  color: #fff;
}

/* ============================================================
   JOIN THE COMMUNITY
   ============================================================ */
.join-section {
  position: relative;
  padding: 30px 0 50px;
  /* background: #070a1c url("../images/section-bg.png") no-repeat center top; */
  background-size: cover;
}

.join-section .join-card {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 44px 60px;
  border-radius: 15px;
  border: 1px solid rgba(255, 138, 0, 0.22);
  background: linear-gradient(
    157deg,
    rgba(13, 19, 36, 0.94),
    rgba(8, 13, 26, 0.95)
  );
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.45),
    0 0 22px rgba(255, 138, 0, 0.08);
  backdrop-filter: blur(5px);
}

.join-section .join-logo {
  flex-shrink: 0;
  width: 270px;
}

.join-section .join-logo img {
  width: 100%;
  height: auto;
  display: block;
  animation: bgZoom 2s ease-in-out infinite;
}

.join-section .join-content {
  flex: 1;
  text-align: center;
}

.join-section .join-content h2 {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 38px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  background: linear-gradient(180deg, #f6f5f8 20%, #dbdade 76%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.join-section .join-content .est {
  margin-top: 16px;
  font-family: "Archivo", sans-serif;
  font-size: 20px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #ff7b00;
}

.join-section .join-content .desc {
  max-width: 640px;
  margin: 14px auto 0;
  font-family: "Archivo", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.join-section .join-btns {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.join-section .join-btns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 320px;
  width: 100%;
  height: 55px;
  border-radius: 15px;
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #fff;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.join-section .join-btns .btn-outline {
  background: rgba(8, 6, 14, 0.3);
  border: 1px solid #ff6700;
  box-shadow: 0 1px 29px rgba(255, 103, 0, 0.36);
}

.join-section .join-btns .btn-fill {
  background: linear-gradient(144deg, #ff8a00, #ff5e00);
  box-shadow: 0 6px 18px rgba(255, 138, 0, 0.34);
}

.join-section .join-btns a:hover {
  transform: translateY(-2px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #050d1c;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 55px 0 26px;
}

.site-footer .footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 30px;
  padding-bottom: 30px;
}

/* brand column */
.site-footer .f-logo {
  height: 54px;
  width: auto;
  display: block;
}

.site-footer .f-tag {
  max-width: 296px;
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.6;
  text-transform: uppercase;
  color: #5b7299;
}

.site-footer .f-socials {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.site-footer .f-socials a {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}

.site-footer .f-socials a svg {
  width: 16px;
  height: 16px;
}

.site-footer .f-socials a:hover {
  transform: translateY(-2px);
  filter: brightness(1.12);
}

.site-footer .f-socials .discord {
  background: #5865f2;
}
.site-footer .f-socials .youtube {
  background: #ff0000;
}
.site-footer .f-socials .instagram {
  background: linear-gradient(45deg, #f09433, #dc2743 50%, #bc1888);
}
.site-footer .f-socials .facebook {
  background: #1877f2;
}

/* link columns */
.site-footer .f-col h4 {
  margin-bottom: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #fff;
}

.site-footer .f-col a {
  display: block;
  padding: 5px 0;
  font-size: 14px;
  text-transform: uppercase;
  color: #5b7299;
  transition: color 0.2s ease;
}

.site-footer .f-col a:hover {
  color: #ff8a00;
}

/* discord column */
.site-footer .f-discord p {
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.6;
  text-transform: uppercase;
  color: #5b7299;
}

.site-footer .f-discord .f-discord-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 18px;
  border-radius: 12px;
  background: #5865f2;
  box-shadow: 0 8px 18px rgba(88, 101, 242, 0.4);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.site-footer .f-discord .f-discord-btn svg {
  width: 22px;
  height: 22px;
  margin-top: 3px;
}

.site-footer .f-discord .f-discord-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(88, 101, 242, 0.5);
  color: #fff;
}

/* bottom bar */
.site-footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.site-footer .footer-bottom p {
  font-size: 13px;
  text-transform: uppercase;
  color: #5b7299;
  margin: 0;
}

/* ============================================================
   COMING SOON
   ============================================================ */
.coming-soon {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 28px 0 26px;
  background: #070a1c url("../images/banner-bg.png") no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

/* dark vignette so content stays readable over the bg */
.coming-soon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    120% 90% at 50% 40%,
    rgba(7, 10, 28, 0.45),
    rgba(7, 10, 28, 0.9) 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* orange glow behind the countdown */
.coming-soon::after {
  content: "";
  position: absolute;
  top: 42%;
  left: 50%;
  width: 720px;
  height: 360px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 138, 0, 0.18), transparent 68%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}

.coming-soon .cstm_container {
  position: relative;
  z-index: 2;
}

/* ---- top bar ---- */
.coming-soon .cs-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.coming-soon .cs-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.coming-soon .cs-logo img {
  height: 74px;
  width: auto;
  display: block;
}

.coming-soon .cs-tag {
  padding: 7px 16px;
  border-radius: 20px;
  background: rgba(255, 138, 0, 0.12);
  border: 1px solid rgba(255, 138, 0, 0.4);
  color: #ff8a00;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.coming-soon .cs-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.coming-soon .cs-socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}

.coming-soon .cs-socials a svg {
  width: 17px;
  height: 17px;
}

.coming-soon .cs-socials a:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
}

.coming-soon .cs-socials .discord {
  background: #5865f2;
}
.coming-soon .cs-socials .youtube {
  background: #ff0000;
}
.coming-soon .cs-socials .twitch {
  background: #9333ea;
}
.coming-soon .cs-socials .instagram {
  background: linear-gradient(45deg, #f09433, #dc2743 50%, #bc1888);
}

/* ---- center content ---- */
.coming-soon .cs-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 0;
}

.coming-soon .cs-eyebrow {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ff7b00;
}

.coming-soon .cs-title {
  margin-top: 14px;
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 60px;
  letter-spacing: 6px;
  text-transform: uppercase;
  background: linear-gradient(180deg, #f6f5f8 28%, #dbdade 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 6px 24px rgba(255, 138, 0, 0.28);
}

/* ---- countdown ---- */
.coming-soon .cs-countdown {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 18px;
  margin-top: 24px;
  width: 100%;
}

.coming-soon .cs-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  padding: 22px 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 138, 0, 0.3);
  background: linear-gradient(
    160deg,
    rgba(13, 19, 36, 0.94),
    rgba(8, 13, 26, 0.95)
  );
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.45),
    0 0 22px rgba(255, 138, 0, 0.1);
  backdrop-filter: blur(5px);
}

.coming-soon .cs-unit .num {
  font-family: "Russo One", sans-serif;
  font-size: 58px;
  line-height: 1;
  background: linear-gradient(180deg, #f9eee5 40%, #fba75a 82%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.coming-soon .cs-unit .label {
  margin-top: 10px;
  font-family: "Russo One", sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fcc085;
}

.coming-soon .cs-colon {
  display: flex;
  align-items: center;
  font-family: "Russo One", sans-serif;
  font-size: 44px;
  color: rgba(255, 138, 0, 0.5);
}

/* ---- supporting text + CTA ---- */
.coming-soon .cs-text {
  max-width: 700px;
  margin-top: 40px;
  font-family: "Archivo", sans-serif;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.coming-soon .cs-discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  padding: 15px 34px;
  border-radius: 14px;
  background: linear-gradient(134deg, #ff8a00, #ff5e00);
  box-shadow: 0 8px 22px rgba(255, 138, 0, 0.35);
  color: #fff;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.coming-soon .cs-discord-btn svg {
  width: 24px;
  height: 24px;
}

.coming-soon .cs-discord-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 138, 0, 0.5);
  color: #fff;
}

/* ---- footer ---- */
.coming-soon .cs-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.coming-soon .cs-foot p {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #5b7299;
}

/* ---- decorative divider ---- */
.coming-soon .cs-deco.line-mid {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 92px;
  height: 4px;
  background: url("../images/divider-line.svg") no-repeat center center / 100%
    100%;
  box-shadow: 0 16px 34px -2px rgba(216, 95, 20, 0.45);
  pointer-events: none;
  z-index: 1;
}

/* ============================================================
   COMING SOON POPUP / MODAL
   ============================================================ */
.cs-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(3, 5, 16, 0.72);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.32s ease,
    visibility 0.32s ease;
}

.cs-modal.open {
  opacity: 1;
  visibility: visible;
}

.cs-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 44px 34px 38px;
  text-align: center;
  border-radius: 22px;
  border: 1px solid rgba(255, 138, 0, 0.3);
  background: linear-gradient(
    160deg,
    rgba(15, 21, 40, 0.98),
    rgba(8, 12, 26, 0.98)
  );
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(255, 138, 0, 0.12);
  transform: translateY(24px) scale(0.94);
  opacity: 0;
  transition:
    transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.3s ease;
}

.cs-modal.open .cs-modal-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.cs-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.cs-modal-close svg {
  width: 18px;
  height: 18px;
}

.cs-modal-close:hover {
  background: rgba(255, 138, 0, 0.18);
  transform: rotate(90deg);
}

.cs-modal-badge {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 20px;
  background: rgba(255, 138, 0, 0.12);
  border: 1px solid rgba(255, 138, 0, 0.4);
  color: #ff8a00;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.cs-modal-title {
  margin-top: 18px;
  font-family: "Russo One", sans-serif;
  font-size: 36px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: linear-gradient(180deg, #f9eee5 40%, #fba75a 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cs-modal-text {
  margin-top: 14px;
  font-family: "Archivo", sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
}

.cs-modal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  padding: 14px 32px;
  border-radius: 12px;
  background: linear-gradient(134deg, #ff8a00, #ff5e00);
  box-shadow: 0 8px 22px rgba(255, 138, 0, 0.35);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.cs-modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 138, 0, 0.5);
  color: #fff;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 900;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: linear-gradient(145deg, #ff8a00, #ff5e00);
  box-shadow:
    0 10px 26px rgba(255, 138, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  color: #fff;
  cursor: pointer;
  /* hidden state */
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px) scale(0.7);
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  box-shadow:
    0 14px 32px rgba(255, 138, 0, 0.6),
    inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

/* pulsing ring */
.back-to-top .btt-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 138, 0, 0.55);
  animation: btt-pulse 2s ease-out infinite;
}

.back-to-top .btt-arrow {
  position: relative;
  width: 21px;
  height: 21px;
  animation: btt-bob 1.8s ease-in-out infinite;
}

/* arrow nudges up on hover */
.back-to-top:hover .btt-arrow {
  animation-play-state: paused;
  transform: translateY(-3px);
  transition: transform 0.25s ease;
}

@keyframes btt-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.45);
    opacity: 0;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

@keyframes btt-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

/* respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .back-to-top .btt-ring,
  .back-to-top .btt-arrow {
    animation: none;
  }
}

/* ============================================================
   FEATURED CREATORS SLIDER
   reuses .featured card styling inside sliding panels
   ============================================================ */
.featured-slider {
  position: relative;
}

.featured-slider .feat-photo {
  position: relative;
  padding-bottom: 112%;
}

.featured-slider .feat-photo img {
  position: absolute;
  top: 0;
  left: 0;
  left: 0;
}

.featured-slider .fs-viewport {
  overflow: hidden;
  border-radius: 18px;
}

.featured-slider .fs-track {
  display: flex;
  align-items: stretch; /* every slide takes the height of the tallest one */
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-slider .fs-slide {
  flex: 0 0 100%;
  width: 100%;
  display: flex; /* let the card stretch to the slide height */
}

/* card already styled by .creators-section .featured — make every card equal height */
.featured-slider .fs-slide .featured {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
}

/* extra bottom room in the body column so the dots sit in empty space (photo stays full-height) */
.featured-slider .fs-slide .feat-body {
  padding-bottom: 40px;
}

/* dots - centered inside the card's bottom strip */
.featured-slider .fs-dots {
  position: absolute;
  left: 50%;
  bottom: 25px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  z-index: 5;
}

.featured-slider .fs-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition:
    width 0.3s ease,
    background 0.3s ease;
}

.featured-slider .fs-dot.active {
  width: 24px;
  border-radius: 50px;
  background: #ff8a00;
}

/* ============================================================
   ALL CREATORS - FILTERS (platform tabs / game dropdown / search)
   ============================================================ */
.all-creators .creators-filters {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin: 36px 0 30px;
}

.all-creators .filter-lbl {
  display: block;
  margin-bottom: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
}

/* platform tabs */
.all-creators .platform-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.all-creators .ptab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 7px;
  border: 1px solid #ff8a0099;
  box-shadow: 0px 8px 30px 0px #00000073;
  backdrop-filter: blur(10px);
  background: rgba(13, 19, 36, 0.8);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.all-creators .ptab svg {
  height: 14px;
  width: 14px;
}

.all-creators .ptab i,
.all-creators .ptab .ptab-k {
  font-size: 15px;
  line-height: 1;
}

.all-creators .ptab .ptab-k {
  font-weight: 800;
}

.all-creators .ptab:hover {
  color: #fff;
  border-color: rgba(255, 138, 0, 0.5);
}

.all-creators .ptab.active {
  background: linear-gradient(134deg, #ff8a00, #ff5e00);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 18px rgba(255, 138, 0, 0.35);
}

/* game dropdown + search */
.all-creators .filter-game-controls {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.all-creators .game-select {
  min-width: 150px;
  padding: 10px 16px;
  border-radius: 7px;
  border: 1px solid #fff;
  background: rgba(13, 19, 36, 0.8);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M6 9l6 7 6-7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 38px;
  background-size: 24px;
}

.all-creators .game-select option {
  background: #0c1230;
  color: #fff;
}

.all-creators .creator-search {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 250px;
  padding: 0 14px;
  border-radius: 7px;
  border: 1px solid #fff;
  background: rgba(13, 19, 36, 0.8);
  transition: border-color 0.25s ease;
  color: #fff;
}

.all-creators .creator-search:focus-within {
  border-color: rgba(255, 138, 0, 0.6);
}

.all-creators .creator-search i {
  color: #fff;
  font-size: 14px;
}

.all-creators .creator-search input {
  flex: 1;
  padding: 12px 0;
  border: none;
  background: transparent;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  outline: none;
  font-weight: 400;
}

.all-creators .creator-search input::placeholder {
  color: #fff;
}

.all-creators .creators-no-results {
  margin-top: 10px;
  padding: 30px 0;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
}

/* ============================================================
   LIVE NOW - CAROUSEL
   ============================================================ */
.live-carousel {
  position: relative;
}

.live-track {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  padding: 4px 4px 8px;
  cursor: grab;
  --cards: 5.3; /* how many cards are visible at once (the .3 makes the next one peek) */
}

.live-track::-webkit-scrollbar {
  display: none; /* Chrome / Safari / Edge */
}

/* while dragging with the mouse */
.live-track.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.live-track.dragging img {
  pointer-events: none;
}

.live-card {
  /* width derived from how many cards should fit (var --cards) minus the gaps */
  flex: 0 0 calc((100% - (var(--cards) - 1) * 15px) / var(--cards));
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #fff;
  background: rgba(13, 19, 36, 0.9);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.live-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 138, 0, 0.45);
}

.live-card .lc-img {
  position: relative;
  height: 230px;
}

.live-card .lc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* red LIVE badge */
.live-card .lc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  background: #e8132b;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(232, 19, 43, 0.45);
}

.live-card .lc-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: lc-pulse 1.4s ease-in-out infinite;
}

@keyframes lc-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

/* bottom overlay: platform icon + name + game */
.live-card .lc-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 30px 14px 14px;
  background: linear-gradient(transparent, rgba(4, 7, 18, 0.92));
}

.live-card .lc-ico {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 16px;
}

.live-card .lc-ico.twitch {
  background: #9333ea;
}
.live-card .lc-ico.youtube {
  background: #ff0000;
}
.live-card .lc-ico.kick {
  background: #53fc18;
  color: #000;
}
.live-card .lc-ico .k {
  font-weight: 800;
  font-size: 15px;
}

.live-card .lc-meta h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0;
}

.live-card .lc-meta p {
  margin-top: 2px;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0;
}

.Partners_sec .chips {
  gap: 10px;
}

.Partners_sec .subtitle {
  max-width: 560px;
}

.Partners_sec .chips .chip {
  min-width: fit-content;
}

/* ============================================================
   FEATURE PARTNERS (reuses the .featured card frame)
   ============================================================ */
.partners-section .featured.partner-card {
  grid-template-columns: 280px 1fr 250px;
  align-items: center;
  gap: 6px;
  padding: 22px;
}

.partners-section .pf-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 10px;
}

.partners-section .pf-logo img {
  max-width: 210px;
  width: 100%;
  height: auto;
  display: block;
}

/* outlined "Top Partner" badge */
.partners-section .badge-partner {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 15px;
  border-radius: 20px;
  background: rgba(255, 138, 0, 0.08);
  border: 1px solid rgba(255, 138, 0, 0.45);
  color: #ff8a00;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.partners-section .badge-partner .badge-star {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

/* feature list */
.partners-section .pf-features {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 14px 50px;
  margin-top: 22px;
}

.partners-section .pf-feature {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ff8a00;
}

.partners-section .pf-feature svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #ff8a00;
}

/* right side: logo box + visit button */
.partners-section .pf-side {
  justify-content: center;
  gap: 14px;
  padding: 22px;
}

.partners-section .pf-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 18px;
  border: 1px solid rgba(255, 138, 0, 0.45);
  border-radius: 12px;
  background: rgba(255, 138, 0, 0.04);
}

.partners-section .pf-thumb img {
  max-width: 130px;
  width: 100%;
  height: auto;
  display: block;
}

.partners-section .pf-visit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 10px;
  background: #fc58008c;
  box-shadow: 0 8px 18px rgba(255, 138, 0, 0.3);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 5 00;
  font-size: 14px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.partners-section .pf-visit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 138, 0, 0.45);
  color: #fff;
}

/* ============================================================
   OUR PARTNERS (grid of partner tiles)
   ============================================================ */
.our-partners .partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.partner-tile {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(13, 19, 36, 0.6);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.partner-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 138, 0, 0.4);
}

.partner-tile .pt-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  padding: 20px;
  background: linear-gradient(112.59deg, #1a2238 8.91%, #0b1120 94.66%);
}

.partner-tile .pt-logo img {
  width: auto;
  height: 90px;
  display: block;
}

.partner-tile .pt-body {
  display: flex;
  flex-direction: column;
  padding: 18px;
  border: 1px solid #ff8a0038;
  border-top: 0;
}

.partner-tile .pt-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  border-radius: 20px;
  background: linear-gradient(134deg, #ff8a00, #ff5e00);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.partner-tile .pt-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

.partner-tile .pt-desc {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #fff;
}

.partner-tile .pt-visit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px;
  border-radius: 9px;
  border: 1px solid rgba(255, 138, 0, 0.5);
  color: #e8820c;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.partner-tile .pt-visit:hover {
  background: linear-gradient(134deg, #ff8a00, #ff5e00);
  border-color: transparent;
  color: #fff;
}

/* ============================================================
   WHY PARTNER WITH US (reason cards)
   ============================================================ */
.why-partners .why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.why-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 34px 26px;
  border-radius: 16px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
  background: linear-gradient(
    127.04deg,
    rgba(13, 19, 36, 0.94) 0%,
    rgba(8, 13, 26, 0.95) 100%
  );
  border: 1px solid #ff8a0038;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 138, 0, 0.4);
}

.why-card .why-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
  border-radius: 14px;
  border: 1px solid rgba(255, 138, 0, 0.4);
  background: rgba(255, 138, 0, 0.08);
  color: #ff8a00;
  font-size: 26px;
}

.why-card .why-ico img {
  width: 28px;
  height: 28px;
  display: block;
}

.why-card h4 {
  margin-bottom: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
}

.why-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

/* ///////--RESPONSIVE--////////// */

@media (max-width: 1199.98px) {
  .why-partners .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .our-partners .partner-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .partners-section .pf-logo img {
    max-width: 150px;
  }

  .partners-section .featured.partner-card {
    grid-template-columns: 200px 1fr 200px;
  }

  /* fewer visible cards on smaller screens (keeps the peek/carousel feel) */
  .live-track {
    --cards: 4.3;
  }

  .join-section .join-content .est {
    margin-top: 10px;
    font-size: 18px;
    margin-bottom: 0;
  }

  .join-section .join-content h2 {
    font-size: 32px;
  }

  .community-section .comm-head {
    margin-bottom: 30px;
  }

  .community-section {
    padding: 30px 0;
  }

  .creators-section {
    padding: 30px 0 30px;
  }

  .creators-section .creators {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .creators-section .feat-side {
    padding: 20px 16px;
  }

  .creators-section .feat-body {
    padding: 20px 16px;
  }

  .creators-section .feat-body .bio {
    margin-top: 0;
    margin-bottom: 0;
  }

  .creators-section .feat-meta {
    gap: 15px;
    margin-top: 20px;
    flex-direction: column;
  }

  .crew-section .members {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .about-section .story {
    grid-template-columns: 1fr 320px;
    gap: 20px;
  }

  .about-section {
    padding: 40px 0;
  }

  .hero-banner .content {
    padding-top: 55px;
    padding-bottom: 10px;
  }

  .site-header {
    top: 12px;
  }

  .hero-banner {
    padding-top: 90px;
  }

  .hero-banner .subtitle {
    font-size: 16px;
  }

  .hero-banner .line-bot {
    bottom: 22px;
  }

  .hero-banner .line-mid {
    bottom: 155px;
  }

  .hero-banner .gold {
    left: 17%;
    top: 128px;
  }

  .hero-banner .streak {
    left: 8%;
    width: 530px;
    height: 80px;
    top: 110px;
  }

  .hero-banner .hero-inner {
    grid-template-columns: 40% 60%;
    min-height: 510px;
  }

  .hero-banner .art::before {
    width: 430px;
    height: 380px;
  }

  .hero-banner .art img {
    height: 450px;
  }

  .site-header .discord-btn {
    padding: 0 18px;
  }

  .join-section .join-btns {
    gap: 12px;
    margin-top: 24px;
  }

  .join-section .join-card {
    gap: 24px;
    padding: 30px 20px;
  }

  .site-header .nav {
    gap: 20px;
  }

  .hero-banner .title .line-1 {
    font-size: 32px;
    margin-left: -24px;
  }

  .hero-banner .title .line-2 {
    font-size: 48px;
  }

  .hero-banner .stat .num {
    font-size: 38px;
  }

  .hero-banner .stat .label {
    font-size: 15px;
    margin-top: 6px;
  }

  .hero-banner .join-btn {
    padding: 18px 44px;
    margin-top: 45px;
  }

  .hero-banner .join-btn svg {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 991.98px) {
  .Partners_sec .chips {
    justify-content: start !important;
  }

  .Partners_sec .chips .chip {
    min-width: 200px;
  }

  .Partners_sec .stat {
    padding: 12px 12px !important;
  }

  .live-track {
    --cards: 3.3;
  }

  .all-creators .creators-filters {
    margin: 16px 0 20px;
    gap: 16px;
  }

  .creators-section .featured > .badge-live {
    top: 14px;
    right: 14px;
  }

  .featured-slider .feat-photo {
    padding-bottom: 60%;
  }

  .site-footer .f-tag {
    max-width: 500px;
  }

  .site-footer .f-brand {
    grid-column: 1 / -1;
  }

  .site-footer .f-logo {
    height: 74px;
  }
  .site-footer {
    padding: 30px 0 20px;
  }

  .join-section .join-btns a {
    font-size: 14px;
  }

  .join-section .join-btns {
    gap: 10px;
    margin-top: 16px;
  }

  .join-section .join-content .desc {
    margin: 10px auto 0;
    font-size: 15px;
  }

  .join-section .join-content .est {
    font-size: 16px;
  }

  .join-section .join-content h2 {
    font-size: 24px;
  }

  .join-section .join-card {
    padding: 24px 16px;
    gap: 18px;
  }

  .join-section {
    padding: 10px 0 30px;
  }

  .creators-section .creators {
    grid-template-columns: repeat(2, 1fr);
  }

  .creators-section .watch-live {
    height: 50px;
    border-radius: 8px;
    font-size: 15px;
  }

  .creators-section .feat-side {
    padding-top: 0;
  }

  .creators-section .feat-thumb {
    height: 100%;
  }

  .creators-section .featured {
    grid-template-columns: 1fr;
    margin-bottom: 20px;
  }

  /* feature partner card stacks too */
  .partners-section .featured.partner-card {
    grid-template-columns: 1fr;
    gap: 18px;
    border: 1px solid #fff;
  }

  /* our partners grid -> 2 columns */
  .our-partners .partner-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-partners .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .partners-section .pf-thumb {
    display: none;
  }

  .partners-section .pf-logo img {
    max-width: 180px;
  }

  /* stacked card: move dots below the card so they don't overlap the buttons */
  .featured-slider .fs-dots {
    position: static;
    transform: none;
    margin-top: 16px;
  }

  .creators-section .subtitle {
    font-size: 15px;
  }

  .creators-section .title {
    font-size: 32px;
  }

  .crew-section {
    padding: 10px 0 30px;
  }

  .community-section {
    padding: 10px 0 30px;
  }

  .creators-section {
    padding: 10px 0 30px;
  }

  .community-section .comm-head {
    margin-bottom: 20px;
  }

  .community-section .subtitle {
    font-size: 15px;
    margin-bottom: 0;
  }

  .community-section .title {
    font-size: 32px;
  }

  .crew-section .members {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-section {
    padding: 30px 0;
  }

  .about-section .story-head h3 {
    font-size: 20px;
  }
  .about-section .about-head {
    margin-bottom: 34px;
  }

  .about-section .subtitle {
    font-size: 15px;
  }

  .about-section .title {
    font-size: 32px;
  }

  .site-header .logo img {
    height: 70px;
  }

  .site-header .header-inner {
    background: initial;
  }

  .site-header {
    position: sticky;
    top: 0;
    background: #03070d;
    height: auto;
    padding: 10px 0;
  }

  .hero-banner {
    padding: 30px 0;
  }

  .hero-banner .chip .ico svg {
    width: 26px;
    height: 26px;
  }

  .hero-banner .chip {
    gap: 10px;
    min-width: 200px;
    padding: 9px 14px;
  }

  .hero-banner .chip .txt {
    font-size: 14px;
  }

  .hero-banner .subtitle {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .hero-banner .title .line-2 {
    font-size: 45px;
  }

  .hero-banner .title .line-1 {
    font-size: 20px;
    margin-left: 0;
    gap: 10px;
  }

  .site-header .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  /* lift header above the overlay so the drawer paints on top of it */
  .site-header {
    z-index: 40;
  }

  .site-header .nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 280px;
    max-width: 82vw;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 0 0 30px;
    background: #0c1230;
    box-shadow: 6px 0 30px rgba(0, 0, 0, 0.5);
    transform: translateX(-100%);
    transition: transform 0.32s ease;
    overflow-y: auto;
    z-index: 30;
  }

  .site-header .nav.open {
    transform: translateX(0);
  }

  /* logo header inside the drawer */
  .site-header .nav .drawer-logo {
    display: flex;
    align-items: center;
    padding: 22px 24px;
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-header .nav .drawer-logo img {
    height: 60px;
    width: auto;
    display: block;
  }

  .site-header .nav a {
    width: 100%;
    padding: 16px 28px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  /* drawer backdrop */
  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(3, 5, 16, 0.6);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.32s ease;
    z-index: 25;
  }

  .nav-overlay.open {
    opacity: 1;
    visibility: visible;
  }

  .site-header .discord-btn span,
  .site-header .discord-btn {
    display: none;
  }

  .site-header .nav-toggle {
    display: flex;
  }

  .hero-banner .content {
    align-items: start;
    padding: 0;
  }

  .hero-banner .hero-inner {
    min-height: initial;
    gap: 10px;
  }

  .hero-banner .join-btn {
    align-self: center;
    margin-left: 0;
    margin-top: 20px;
    font-size: 16px;
    padding: 14px 30px;
    height: 64px;
    min-width: 320px;
    gap: 10px;
  }

  .hero-banner .join-btn svg {
    width: 32px;
    height: 32px;
  }

  .hero-banner .art {
    order: -1;
  }

  .hero-banner .art img {
    height: 300px;
  }

  .hero-banner .art::before {
    width: 290px;
    height: 220px;
    filter: blur(50px);
  }

  .hero-banner .stat .label {
    font-size: 14px;
  }

  .hero-banner .stat .num {
    font-size: 28px;
  }

  .hero-banner .stat {
    position: static;
    align-items: center;
    margin: 0 auto 0px;
    min-width: 0;
    padding: 12px 26px;
  }

  .hero-banner .deco {
    display: none;
  }

  .hero-banner .title span {
    margin: 0 auto;
  }

  .hero-banner .subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-banner .chips {
    justify-content: center;
    gap: 10px;
  }

  .hero-banner::before {
    top: 80px;
  }

  .about-section .story {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-section .story-art {
    order: -1;
  }

  .about-section .story-art img {
    max-width: 280px;
  }

  .community-section .feeds {
    grid-template-columns: 1fr;
  }

  .join-section .join-card {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
    gap: 26px;
  }

  .join-section .join-logo {
    width: 210px;
  }

  .site-footer .footer-top {
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 22px 14px;
    padding-bottom: 20px;
  }

  .site-footer .footer-bottom {
    padding-top: 15px;
  }

  .coming-soon .cs-title {
    font-size: 44px;
    letter-spacing: 4px;
  }

  .coming-soon .cs-unit {
    min-width: 104px;
    padding: 18px 12px 12px;
  }

  .coming-soon .cs-unit .num {
    font-size: 46px;
  }
}

@media (max-width: 767.98px) {
  .why-card {
    padding: 20px 12px;
  }

  .partner-tile .pt-body {
    padding: 15px 12px;
  }

  .partner-tile .pt-logo img {
    height: 70px;
  }

  .partner-tile .pt-logo {
    height: 120px;
    padding: 10px;
  }
  .Partners_sec .chips {
    justify-content: center !important;
  }

  .Partners_sec .stat {
    padding: 12px 26px !important;
  }

  .live-track {
    --cards: 2.3;
  }

  .cstm_container {
    padding: 0 20px;
  }

  .join-section .join-content .desc {
    font-size: 14px;
  }
  .join-section .join-content .est {
    font-size: 14px;
  }

  .join-section .join-content h2 {
    font-size: 20px;
  }

  .creators-section .feat-body .bio {
    font-size: 15px;
  }

  .creators-section .feat-body h3 {
    font-size: 24px;
    text-transform: uppercase;
    font-family: "Rajdhani", sans-serif;
  }

  .creators-section .subtitle {
    font-size: 14px;
  }

  .creators-section .title {
    font-size: 26px;
  }

  .community-section .subtitle {
    font-size: 14px;
  }

  .community-section .title {
    font-size: 24px;
  }

  .crew-section .sec-head {
    margin-bottom: 20px;
    gap: 10px;
  }

  .crew-section .num {
    font-size: 14px;
  }

  .crew-section .sec-head h3 {
    font-size: 18px;
  }
  .about-section .learn-btn {
    margin-top: 16px;
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
  }

  .about-section .title {
    font-size: 24px;
  }

  .hero-banner .title .line-2 {
    font-size: 48px;
  }

  .hero-banner .stat .label {
    font-size: 16px;
  }
  .hero-banner .stat .num {
    font-size: 38px;
  }

  .hero-banner .stat {
    min-width: 300px;
  }

  .hero-banner .title {
    width: 100%;
    text-align: center;
  }
  .hero-banner .title .line-1 {
    flex-direction: column-reverse;
    justify-content: center;
    text-align: center;
    align-items: unset;
    font-size: 26px;
    gap: 14px;
    font-weight: 600;
    color: #fff;
    background: initial;
    -webkit-text-fill-color: inherit;
  }

  .hero-banner .art::before {
    width: 310px;
    height: 310px;
    filter: blur(70px);
  }

  .hero-banner .art img {
    height: 400px;
  }

  .hero-banner .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-banner .title .line-2 {
    font-size: 42px;
  }

  .hero-banner .subtitle {
    font-size: 15px;
    text-align: center;
    font-weight: 400;
    margin-top: 6px;
  }

  .hero-banner .chip .txt b {
    display: inline-block;
  }

  .hero-banner .chip .txt {
    font-size: 15px;
  }

  .hero-banner .chips {
    width: 100%;
    gap: 12px;
  }

  .hero-banner .chip {
    min-width: 0;
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 12px 14px;
  }

  .hero-banner .join-btn {
    font-size: 18px;
    padding: 16px 34px;
    gap: 12px;
    font-weight: 600;
    margin-top: 14px;
  }

  .hero-banner .join-btn svg {
    width: 32px;
    height: 32px;
  }

  .about-section .title {
    font-size: 30px;
  }

  .about-section .card {
    padding: 17px 16px;
  }

  .about-section .card h4 {
    font-size: 15px;
    margin-bottom: 4px;
  }

  .about-section .desc {
    margin-top: 6px;
    font-size: 14px;
  }

  .about-section .quote {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 0;
  }

  .about-section .subtitle {
    font-size: 14px;
  }

  .about-section .cards {
    grid-template-columns: 1fr;
  }

  .crew-section .founders {
    grid-template-columns: 1fr;
  }

  .crew-section .members {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575.98px) {
  .why-partners {
    background: #0a1220db;
    border-top: 1px solid #7a9bc421;
    border-radius: 18px;
    margin: 10px 16px 30px;
    padding: 20px 0;
  }

  .partner-tile .pt-logo {
    height: 140px;
  }

  .partner-tile .pt-logo img {
    height: 80px;
  }

  .live-track {
    --cards: 1.3;
  }

  /* our partners grid -> single column */
  .our-partners .partner-grid {
    grid-template-columns: 1fr;
  }

  .why-partners .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 20px;
  }

  /* mobile: cards become horizontal — icon left, text right (left-aligned) */
  .why-card {
    flex-direction: row;
    align-items: start;
    text-align: left;
    gap: 16px;
    padding: 18px 16px;
  }

  .why-card .why-ico {
    margin-bottom: 0;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .why-card h4 {
    margin-bottom: 6px;
    font-size: 15px;
  }

  .why-card p {
    font-size: 13px;
  }

  /* show first 2 partner tiles; reveal the rest with "View All Partners" */
  .our-partners .partner-tile:nth-child(n + 3) {
    display: none;
  }

  .our-partners.partners-open .partner-tile:nth-child(n + 3) {
    display: flex;
  }

  .our-partners.partners-open .creators-viewall {
    display: none;
  }

  /* feature partner: single-column feature list + tighter padding */
  .partners-section .pf-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .partners-section .featured.partner-card {
    padding: 16px;
  }

  .partners-section .pf-side {
    padding: 4px;
  }

  /* platform tabs scroll horizontally instead of wrapping */
  .all-creators .filter-platform {
    width: 100%;
  }

  .all-creators .platform-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    padding-bottom: 4px;
  }

  .all-creators .platform-tabs::-webkit-scrollbar {
    display: none; /* Chrome / Safari / Edge */
  }

  .all-creators .ptab {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .all-creators .creators-filters .filter-game {
    width: 100%;
  }

  .all-creators .filter-game-controls {
    flex-direction: column;
    width: 100%;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }

  .back-to-top .btt-arrow {
    width: 20px;
    height: 20px;
  }

  .site-footer .f-discord .f-discord-btn {
    box-shadow: none;
  }
  .cstm_container {
    padding: 0 16px;
  }

  .join-section .join-card {
    padding: 20px 16px;
    gap: 16px;
  }

  .join-section .join-btns a {
    width: 100%;
    max-width: 100%;
  }

  .join-section .join-btns {
    flex-direction: column;
    width: 100%;
  }

  .join-section .join-logo img {
    width: auto;
    height: 120px;
    display: block;
    margin: auto;
  }

  .creators-section .watch-stream {
    padding: 13px 10px;
    font-size: 13px;
  }

  .creators-section .cc-body {
    padding: 16px 14px;
  }

  .creators-section .cc-img {
    height: 250px;
  }

  .creators-section .creators {
    grid-template-columns: 1fr;
  }

  /* show first 2 creator cards; hide the rest until "View All Creators" is tapped
     (home grid only — the All Creators page shows every card and filters instead) */
  .creators-section:not(.all-creators) .creator-card:nth-child(n + 3) {
    display: none;
  }

  .creators-section:not(.all-creators).creators-open
    .creator-card:nth-child(n + 3) {
    display: block;
  }
  .creators-section .creators-viewall {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    margin-top: 10px;
    padding: 14px 24px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(134deg, #ff8a00, #ff5e00);
    box-shadow: 0 10px 24px rgba(255, 138, 0, 0.35);
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    cursor: pointer;
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease;
  }

  .creators-section .creators-viewall svg {
    width: 18px;
    height: 18px;
  }

  .creators-section .creators-viewall:active {
    transform: translateY(1px);
  }

  .creators-section.creators-open .creators-viewall {
    display: none;
  }

  .community-section .feed-title h3 {
    font-size: 16px;
  }

  .community-section .feed {
    gap: 14px;
    padding: 20px 16px;
  }

  .crew-section .tcard .role {
    font-weight: 500;
    font-size: 13px;
  }

  .crew-section .tcard .name {
    font-weight: 600;
  }

  .about-section .story-head {
    margin-bottom: 20px;
  }

  .about-section .story-art img {
    max-width: 210px;
  }

  .hero-banner .join-btn svg {
    width: 28px;
    height: 28px;
  }

  .hero-banner .join-btn {
    font-size: 16px;
    min-width: 100%;
  }

  .hero-banner .chip {
    max-width: 100%;
  }

  .hero-banner .title .line-2 {
    font-size: 34px;
    margin-top: 8px;
  }
  .hero-banner .title .line-1 {
    font-size: 20px;
  }
  .hero-banner .stat .label {
    font-size: 14px;
  }

  .hero-banner .stat .num {
    font-size: 30px;
  }

  .hero-banner .art::before {
    width: 260px;
    height: 250px;
    filter: blur(60px);
  }

  .site-header .logo img {
    height: 65px;
  }

  .hero-banner .art img {
    height: 320px;
  }

  .hero-banner .stat .num {
    font-size: 40px;
  }

  .hero-banner .title .line-2 {
    font-size: 36px;
  }

  .crew-section .members {
    grid-template-columns: 1fr;
  }

  /* community crew (label + members) hidden until "View All" is tapped */
  .crew-section .crew-label {
    display: none;
  }

  .crew-section.crew-open .crew-label {
    display: flex;
  }

  .crew-section .members {
    display: none;
  }

  .crew-section.crew-open .members {
    display: grid;
  }

  .crew-section .crew-viewall {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 14px 24px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(134deg, #ff8a00, #ff5e00);
    box-shadow: 0 10px 24px rgba(255, 138, 0, 0.35);
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease;
  }

  .crew-section .crew-viewall svg {
    width: 18px;
    height: 18px;
  }

  .crew-section .crew-viewall:active {
    transform: translateY(1px);
  }

  /* hide the button once the crew is revealed */
  .crew-section.crew-open .crew-viewall {
    display: none;
  }

  .site-footer .footer-top {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 0;
  }

  .site-footer .f-brand {
    margin-bottom: 20px;
  }

  /* footer menu columns -> collapsible accordions */
  .site-footer .f-col {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-footer .f-col .f-col-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    padding: 14px 2px;
    cursor: pointer;
    user-select: none;
    font-size: 15px;
    text-transform: capitalize;
  }

  .site-footer .f-col .f-col-head::after {
    content: "+";
    font-size: 26px;
    font-weight: 400;
    line-height: 1;
    color: #ff8a00;
    transition: transform 0.3s ease;
  }

  .site-footer .f-col.open .f-col-head::after {
    content: "\2212"; /* minus sign */
  }

  .site-footer .f-col .f-col-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition:
      max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.35s ease,
      transform 0.35s ease,
      padding-bottom 0.4s ease;
  }

  .site-footer .f-col.open .f-col-body {
    max-height: 360px;
    opacity: 1;
    transform: translateY(0);
    padding-bottom: 16px;
  }

  .site-footer .footer-bottom {
    justify-content: center;
    text-align: center;
    gap: 4px;
  }

  .coming-soon .cs-topbar {
    flex-direction: column;
    gap: 16px;
  }

  .coming-soon .cs-title {
    font-size: 32px;
    letter-spacing: 2px;
  }

  .coming-soon .cs-countdown {
    gap: 8px;
  }

  .coming-soon .cs-colon {
    display: none;
  }

  .coming-soon .cs-unit {
    min-width: 0;
    flex: 1;
    padding: 14px 6px 10px;
  }

  .coming-soon .cs-unit .num {
    font-size: 34px;
  }

  .coming-soon .cs-unit .label {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .coming-soon .cs-text {
    font-size: 15px;
  }

  .coming-soon .cs-foot {
    justify-content: center;
    text-align: center;
  }
}

/* ============================================================
   PLATFORM BADGES — featured creator card (Figma fix)
   ============================================================ */
.creators-section .feat-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}

.plat-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.plat-twitch  { background: rgba(145, 70, 255, 0.15); color: #b07eff; border: 1px solid rgba(145, 70, 255, 0.3); }
.plat-youtube { background: rgba(255, 70, 70, 0.12);  color: #ff7070; border: 1px solid rgba(255, 70, 70, 0.28); }
.plat-kick    { background: rgba(83, 252, 24, 0.10);  color: #53fc18; border: 1px solid rgba(83, 252, 24, 0.25); }

/* ── Partner tile: partner name ─────────────────────────────── */
.partner-tile .pt-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: 0.2px;
  font-family: "Poppins", sans-serif;
}
