/* =========================================================
   DEXFANS — PREMIUM DARK FRONT END
   ========================================================= */

:root {
  --bg: #050505;
  --bg-soft: #090909;
  --panel: #0d0d0f;
  --panel-light: #121214;
  --border: rgba(255, 255, 255, 0.09);
  --border-hover: rgba(255, 255, 255, 0.18);
  --text: #ffffff;
  --muted: #8b8b91;
  --muted-light: #b5b5bb;
  --accent: #ffffff;
  --danger: #ff3155;
  --success: #48e08a;
  --radius: 18px;
}


/* =========================================================
   RESET
   ========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;

  background: var(--bg);
  color: var(--text);

  font-family: "Inter", sans-serif;

  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

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


/* =========================================================
   BACKGROUND
   ========================================================= */

.background {
  position: fixed;
  inset: 0;

  z-index: -10;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 50% -20%,
      rgba(255, 255, 255, 0.055),
      transparent 38%
    ),
    #050505;
}

.grid {
  position: absolute;
  inset: 0;

  opacity: 0.16;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    );

  background-size: 60px 60px;

  mask-image:
    linear-gradient(
      to bottom,
      black,
      transparent 75%
    );
}

.orb {
  position: absolute;

  width: 500px;
  height: 500px;

  border-radius: 50%;

  filter: blur(100px);

  opacity: 0.09;

  pointer-events: none;
}

.orb-one {
  top: -220px;
  left: -160px;

  background: white;

  animation: orbFloatOne 12s ease-in-out infinite;
}

.orb-two {
  top: 30%;
  right: -300px;

  background: #777;

  animation: orbFloatTwo 15s ease-in-out infinite;
}

@keyframes orbFloatOne {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(60px, 40px, 0);
  }

}

@keyframes orbFloatTwo {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-50px, -30px, 0);
  }

}


/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
  position: relative;

  width: min(1240px, calc(100% - 40px));

  margin: 0 auto;

  height: 82px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;

  font-family: "Space Grotesk", sans-serif;

  font-size: 20px;
  font-weight: 700;

  letter-spacing: -0.6px;
}

.logo-mark {
  width: 31px;
  height: 31px;

  display: grid;
  place-items: center;

  border-radius: 9px;

  background: #fff;
  color: #050505;

  font-family: "Space Grotesk", sans-serif;

  font-weight: 800;

  box-shadow:
    0 0 30px rgba(255, 255, 255, 0.12);
}

.nav-links {
  position: absolute;
  left: 50%;

  transform: translateX(-50%);

  display: flex;
  align-items: center;

  gap: 32px;
}

.nav-links a {
  position: relative;

  color: #888;

  font-size: 13px;
  font-weight: 500;

  transition:
    color 0.25s ease;
}

.nav-links a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -8px;

  width: 100%;
  height: 1px;

  background: #fff;

  transform: scaleX(0);
  transform-origin: center;

  transition:
    transform 0.25s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;

  gap: 10px;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.primary-button,
.secondary-button,
.ghost-button {
  border-radius: 10px;

  padding: 10px 17px;

  font-size: 13px;
  font-weight: 700;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.primary-button {
  background: #fff;
  color: #050505;

  box-shadow:
    0 8px 30px rgba(255, 255, 255, 0.08);
}

.primary-button:hover {
  transform: translateY(-2px);

  box-shadow:
    0 12px 35px rgba(255, 255, 255, 0.14);
}

.secondary-button {
  background: rgba(255, 255, 255, 0.055);
  color: #fff;

  border: 1px solid var(--border);
}

.secondary-button:hover {
  transform: translateY(-2px);

  border-color: var(--border-hover);

  background: rgba(255, 255, 255, 0.085);
}

.ghost-button {
  background: transparent;
  color: #aaa;
}

.ghost-button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.large {
  padding: 14px 21px;

  border-radius: 12px;

  font-size: 14px;
}

.large span {
  margin-left: 8px;
}

.text-button {
  background: transparent;
  color: #999;

  font-size: 13px;
  font-weight: 600;

  transition: color 0.2s ease;
}

.text-button:hover {
  color: #fff;
}

.mobile-menu {
  display: none;

  width: 42px;
  height: 42px;

  border-radius: 10px;

  background: rgba(255, 255, 255, 0.06);

  color: #fff;

  font-size: 20px;
}


/* =========================================================
   MOBILE NAV
   ========================================================= */

.mobile-nav {
  display: none;

  position: fixed;

  top: 76px;
  left: 20px;
  right: 20px;

  z-index: 100;

  padding: 18px;

  border: 1px solid var(--border);

  border-radius: 16px;

  background: rgba(12, 12, 14, 0.96);

  backdrop-filter: blur(20px);

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55);
}

.mobile-nav.open {
  display: flex;

  flex-direction: column;

  gap: 5px;
}

.mobile-nav a {
  padding: 13px;

  color: #aaa;

  border-radius: 9px;

  font-size: 14px;
}

.mobile-nav a:hover {
  color: #fff;

  background: rgba(255, 255, 255, 0.06);
}

.mobile-join {
  margin-top: 10px;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  width: min(1240px, calc(100% - 40px));

  min-height: 700px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(440px, 0.85fr);

  align-items: center;

  gap: 70px;

  padding: 75px 0 95px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding: 7px 11px;

  margin-bottom: 22px;

  border: 1px solid var(--border);

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.035);

  color: #aaa;

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 0.3px;
}

.pulse {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--success);

  box-shadow:
    0 0 12px rgba(72, 224, 138, 0.7);

  animation:
    greenPulse 1.5s infinite;
}

@keyframes greenPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }

}

.hero h1 {
  max-width: 700px;

  margin-bottom: 25px;

  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(52px, 7vw, 88px);

  line-height: 0.94;

  letter-spacing: -5px;

  font-weight: 700;
}

.hero h1 span {
  display: block;

  color: #777;
}

.hero-text {
  max-width: 570px;

  margin-bottom: 31px;

  color: #888;

  font-size: 16px;

  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  align-items: center;

  gap: 11px;

  margin-bottom: 50px;
}

.hero-stats {
  display: flex;
  align-items: center;

  gap: 38px;
}

.hero-stats div {
  display: flex;
  flex-direction: column;

  gap: 5px;
}

.hero-stats strong {
  font-family: "Space Grotesk", sans-serif;

  font-size: 19px;
}

.hero-stats span {
  color: #666;

  font-size: 10px;

  text-transform: uppercase;

  letter-spacing: 0.8px;
}


/* =========================================================
   HERO CARD
   ========================================================= */

.hero-visual {
  position: relative;

  display: flex;
  justify-content: center;
}

.hero-card {
  width: min(100%, 480px);

  overflow: hidden;

  border: 1px solid var(--border);

  border-radius: 24px;

  background: #0b0b0c;

  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.55);

  transform: rotate(1deg);

  transition:
    transform 0.5s ease;
}

.hero-card:hover {
  transform:
    rotate(0deg)
    translateY(-5px);
}

.hero-card-image {
  position: relative;

  height: 460px;

  overflow: hidden;

  background: #111;
}

.hero-card-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;
}

.image-gradient {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.82),
      transparent 55%
    );
}

.live-badge {
  position: absolute;

  top: 17px;
  left: 17px;

  z-index: 3;

  display: flex;
  align-items: center;

  gap: 7px;

  padding: 7px 10px;

  border-radius: 8px;

  background: rgba(220, 20, 50, 0.94);

  color: #fff;

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 0.8px;
}

.live-badge span {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #fff;

  animation:
    liveDot 1.3s infinite;
}

@keyframes liveDot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.35;
  }

}

.viewer-count {
  position: absolute;

  right: 17px;
  bottom: 17px;

  z-index: 3;

  padding: 7px 10px;

  border-radius: 8px;

  background: rgba(0, 0, 0, 0.58);

  backdrop-filter: blur(10px);

  color: #fff;

  font-size: 11px;
}

.hero-card-info {
  display: flex;

  align-items: center;
  justify-content: space-between;

  padding: 19px;
}

.hero-card-info h3 {
  margin-bottom: 5px;

  font-size: 15px;
}

.hero-card-info p {
  color: #777;

  font-size: 11px;
}

.round-button {
  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #fff;
  color: #050505;

  font-size: 18px;

  transition:
    transform 0.25s ease;
}

.round-button:hover {
  transform: translateX(3px);
}


/* =========================================================
   FLOATING CARDS
   ========================================================= */

.floating-card {
  position: absolute;

  display: flex;
  align-items: center;

  gap: 10px;

  padding: 12px 14px;

  border: 1px solid var(--border);

  border-radius: 12px;

  background: rgba(16, 16, 18, 0.88);

  backdrop-filter: blur(18px);

  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35);
}

.floating-one {
  left: -48px;
  bottom: 100px;

  animation:
    floatOne 4s ease-in-out infinite;
}

.floating-two {
  right: -35px;
  top: 100px;

  animation:
    floatTwo 4.5s ease-in-out infinite;
}

.floating-icon {
  width: 30px;
  height: 30px;

  display: grid;
  place-items: center;

  border-radius: 8px;

  background: rgba(255, 255, 255, 0.07);

  font-size: 11px;
}

.floating-card strong {
  display: block;

  font-size: 11px;
}

.floating-card small {
  display: block;

  margin-top: 2px;

  color: #666;

  font-size: 9px;
}

.green-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--success);

  box-shadow:
    0 0 10px rgba(72, 224, 138, 0.7);
}

@keyframes floatOne {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

}

@keyframes floatTwo {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }

}


/* =========================================================
   SECTIONS
   ========================================================= */

.section {
  width: min(1240px, calc(100% - 40px));

  margin: 0 auto;

  padding: 105px 0;
}

.section-heading {
  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 30px;

  margin-bottom: 35px;
}

.section-label {
  display: inline-block;

  margin-bottom: 12px;

  color: #666;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 1.5px;
}

.section-heading h2,
.about-section h2 {
  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(32px, 4vw, 52px);

  line-height: 1;

  letter-spacing: -2px;
}


/* =========================================================
   CREATOR GRID
   ========================================================= */

.creator-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 17px;
}

.creator-card {
  position: relative;

  overflow: hidden;

  border: 1px solid var(--border);

  border-radius: var(--radius);

  background: var(--panel);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.creator-card:hover {
  transform: translateY(-8px);

  border-color: var(--border-hover);

  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.5);
}

.creator-image {
  position: relative;

  height: 310px;

  overflow: hidden;

  background: #101010;
}

.creator-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform 0.6s cubic-bezier(.2,.7,.2,1);
}

.creator-card:hover .creator-image img {
  transform: scale(1.055);
}

.creator-image::after {
  content: "";

  position: absolute;

  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.72),
      transparent 58%
    );
}

.online {
  position: absolute;

  z-index: 4;

  top: 12px;
  left: 12px;

  display: inline-flex;
  align-items: center;

  gap: 6px;

  padding: 6px 9px;

  border-radius: 7px;

  background: rgba(0,0,0,.75);

  backdrop-filter: blur(10px);

  color: #fff;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: .7px;
}

.online.live::before {
  content: "";

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--danger);

  box-shadow:
    0 0 10px rgba(255,49,85,.8);

  animation:
    creatorLivePulse 1.4s infinite;
}

@keyframes creatorLivePulse {

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

  50% {
    opacity: .45;
    transform: scale(.75);
  }

}

.creator-info {
  display: flex;

  justify-content: space-between;
  align-items: flex-start;

  gap: 12px;

  padding: 15px;
}

.creator-info h3 {
  margin: 0;

  font-size: 14px;

  font-weight: 700;
}

.creator-info p {
  margin-top: 4px;

  color: #666;

  font-size: 11px;
}

.creator-location {
  display: flex;

  align-items: center;

  gap: 5px;

  margin-top: 6px;

  color: #888;

  font-size: 10px;
}

.creator-flag {
  font-size: 14px;
}

.followers {
  flex-shrink: 0;

  padding: 5px 7px;

  border-radius: 6px;

  background: rgba(255,255,255,.055);

  color: #888;

  font-size: 10px;

  font-weight: 700;
}


/* =========================================================
   LIVE SECTION
   ========================================================= */

.live-section {
  width: min(1240px, calc(100% - 40px));

  margin: 40px auto 0;

  padding: 80px;

  display: grid;

  grid-template-columns:
    .85fr
    1.15fr;

  gap: 70px;

  align-items: center;

  border: 1px solid var(--border);

  border-radius: 28px;

  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(255,255,255,.045),
      transparent 35%
    ),
    rgba(255,255,255,.018);
}

.live-content h2 {
  margin-bottom: 20px;

  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(42px, 5vw, 65px);

  line-height: .95;

  letter-spacing: -3px;
}

.live-content h2 span {
  color: #666;
}

.live-content p {
  max-width: 450px;

  margin-bottom: 27px;

  color: #777;

  font-size: 14px;

  line-height: 1.7;
}

.live-panel {
  overflow: hidden;

  border: 1px solid var(--border);

  border-radius: 18px;

  background: rgba(0,0,0,.32);
}

.live-panel-top {
  display: flex;

  justify-content: space-between;
  align-items: center;

  padding: 16px;

  border-bottom: 1px solid var(--border);

  color: #666;

  font-size: 10px;
}

.live-indicator {
  display: flex;

  align-items: center;

  gap: 7px;

  color: #fff;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: .8px;
}

.live-indicator i {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--danger);

  box-shadow:
    0 0 10px rgba(255,49,85,.8);
}

.live-row {
  display: flex;

  align-items: center;

  gap: 13px;

  padding: 15px;

  border-bottom: 1px solid rgba(255,255,255,.055);
}

.live-row:last-child {
  border-bottom: 0;
}

.avatar {
  width: 45px;
  height: 45px;

  flex-shrink: 0;

  overflow: hidden;

  border-radius: 12px;

  background-size: cover;

  background-position: center;
}

.avatar-one {
  background-image:
    url("https://livewebcamreviews.com/wp-content/uploads/2024/06/stripchat-18.jpg");
}

.avatar-two {
  background-image:
    url("https://adultwebcams.online/wp-content/uploads/2024/04/Stripchat-Asian.jpg");
}

.avatar-three {
  background-image:
    url("https://hls.strpst.com/records/89104597/2022/12/23/b31210f2c67e1ea1ae7bb97b209cf0865278d07e.jpg");
}

.live-user {
  min-width: 0;

  flex: 1;
}

.live-user strong {
  display: block;

  color: #fff;

  font-size: 12px;
}

.live-user span {
  display: block;

  margin-top: 3px;

  color: #666;

  font-size: 10px;
}

.live-user-location {
  display: block;

  margin-top: 3px;

  color: #555;

  font-size: 9px;
}

.watch-button {
  padding: 8px 12px;

  border-radius: 8px;

  background: rgba(255,255,255,.08);

  color: #fff;

  font-size: 10px;

  font-weight: 700;

  transition:
    background .2s ease;
}

.watch-button:hover {
  background: #fff;
  color: #050505;
}


/* =========================================================
   CREATOR CTA
   ========================================================= */

.creator-cta {
  position: relative;

  width: min(1240px, calc(100% - 40px));

  margin: 100px auto;

  min-height: 500px;

  display: flex;
  align-items: center;

  overflow: hidden;

  border: 1px solid var(--border);

  border-radius: 28px;

  background:
    radial-gradient(
      circle at 75% 50%,
      rgba(255,255,255,.09),
      transparent 35%
    ),
    #090909;
}

.cta-glow {
  position: absolute;

  width: 500px;
  height: 500px;

  right: -180px;

  border-radius: 50%;

  background: rgba(255,255,255,.06);

  filter: blur(80px);
}

.cta-content {
  position: relative;

  z-index: 2;

  max-width: 650px;

  padding: 70px;
}

.cta-content h2 {
  margin-bottom: 22px;

  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(45px, 6vw, 75px);

  line-height: .92;

  letter-spacing: -4px;
}

.cta-content p {
  max-width: 480px;

  margin-bottom: 27px;

  color: #777;

  line-height: 1.7;

  font-size: 14px;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about-section {
  width: min(1240px, calc(100% - 40px));

  margin: 0 auto;

  padding: 80px 0 120px;

  display: grid;

  grid-template-columns: .7fr 1.3fr;

  gap: 80px;
}

.features {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 25px;
}

.feature {
  padding-top: 17px;

  border-top: 1px solid var(--border);
}

.feature > span {
  color: #555;

  font-size: 10px;

  font-weight: 700;
}

.feature h3 {
  margin: 35px 0 11px;

  font-family: "Space Grotesk", sans-serif;

  font-size: 16px;
}

.feature p {
  color: #666;

  font-size: 12px;

  line-height: 1.7;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
  width: min(1240px, calc(100% - 40px));

  margin: 0 auto;

  padding: 28px 0 40px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  border-top: 1px solid var(--border);

  color: #555;

  font-size: 10px;
}

.footer-logo {
  display: flex;

  align-items: center;

  gap: 9px;

  color: #fff;

  font-family: "Space Grotesk", sans-serif;

  font-size: 15px;

  font-weight: 700;
}

.footer-logo .logo-mark {
  width: 25px;
  height: 25px;

  border-radius: 7px;

  font-size: 12px;
}

.footer-links {
  display: flex;

  gap: 20px;
}

.footer-links a {
  transition:
    color .2s ease;
}

.footer-links a:hover {
  color: #fff;
}


/* =========================================================
   TOAST
   ========================================================= */

.toast {
  position: fixed;

  left: 50%;
  bottom: 28px;

  z-index: 500;

  display: flex;

  align-items: center;

  gap: 10px;

  padding: 12px 15px;

  border: 1px solid var(--border);

  border-radius: 11px;

  background: rgba(15,15,17,.94);

  backdrop-filter: blur(20px);

  box-shadow:
    0 20px 60px rgba(0,0,0,.5);

  transform:
    translate(-50%, 30px);

  opacity: 0;

  pointer-events: none;

  transition:
    opacity .25s ease,
    transform .25s ease;
}

.toast.show {
  transform:
    translate(-50%, 0);

  opacity: 1;
}

.toast > span {
  color: #fff;

  font-size: 11px;
}

.toast p {
  color: #aaa;

  font-size: 11px;
}


/* =========================================================
   SCROLL REVEAL
   ========================================================= */

.reveal {
  opacity: 0;

  transform:
    translateY(25px);

  transition:
    opacity .8s ease,
    transform .8s ease;
}

.reveal.visible {
  opacity: 1;

  transform:
    translateY(0);
}


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

@media (max-width: 1100px) {

  .hero {
    grid-template-columns:
      1fr
      430px;

    gap: 40px;
  }

  .hero h1 {
    font-size: 66px;
  }

  .creator-grid {
    grid-template-columns:
      repeat(3, minmax(0,1fr));
  }

  .live-section {
    padding: 55px;

    gap: 45px;
  }

}


@media (max-width: 850px) {

  .navbar {
    height: 70px;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-menu {
    display: grid;

    place-items: center;
  }

  .hero {
    display: block;

    padding-top: 65px;
  }

  .hero-content {
    margin-bottom: 60px;
  }

  .hero h1 {
    font-size: clamp(50px, 12vw, 75px);

    letter-spacing: -4px;
  }

  .hero-visual {
    max-width: 550px;

    margin: 0 auto;
  }

  .live-section {
    grid-template-columns: 1fr;

    padding: 45px;

    gap: 40px;
  }

  .about-section {
    grid-template-columns: 1fr;

    gap: 45px;
  }

}


@media (max-width: 650px) {

  .navbar,
  .hero,
  .section,
  .live-section,
  .creator-cta,
  .about-section,
  footer {
    width: min(100% - 28px, 1240px);
  }

  .hero {
    padding-top: 50px;
    padding-bottom: 65px;
  }

  .hero h1 {
    font-size: 50px;

    letter-spacing: -3px;
  }

  .hero-text {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;

    align-items: stretch;
  }

  .hero-stats {
    gap: 20px;

    flex-wrap: wrap;
  }

  .hero-card-image {
    height: 390px;
  }

  .floating-one {
    left: -5px;
    bottom: 80px;
  }

  .floating-two {
    right: -5px;
    top: 70px;
  }

  .section {
    padding: 75px 0;
  }

  .section-heading {
    align-items: flex-start;

    flex-direction: column;

    gap: 15px;
  }

  .section-heading h2,
  .about-section h2 {
    font-size: 38px;
  }

  .creator-grid {
    grid-template-columns:
      repeat(2, minmax(0,1fr));

    gap: 10px;
  }

  .creator-image {
    height: 250px;
  }

  .creator-info {
    padding: 12px;
  }

  .creator-info h3 {
    font-size: 13px;
  }

  .creator-location {
    font-size: 9px;
  }

  .followers {
    display: none;
  }

  .live-section {
    width: calc(100% - 28px);

    padding: 30px 20px;

    border-radius: 20px;
  }

  .live-content h2 {
    font-size: 46px;
  }

  .creator-cta {
    min-height: 430px;

    margin: 70px auto;

    border-radius: 20px;
  }

  .cta-content {
    padding: 40px 25px;
  }

  .cta-content h2 {
    font-size: 50px;

    letter-spacing: -3px;
  }

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

  footer {
    flex-direction: column;

    align-items: flex-start;

    gap: 20px;
  }

}


@media (max-width: 430px) {

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

  .creator-image {
    height: 350px;
  }

  .hero-card-image {
    height: 350px;
  }

  .hero-stats {
    justify-content: space-between;
  }

  .hero-stats strong {
    font-size: 16px;
  }

  .hero-stats span {
    font-size: 8px;
  }

}
