@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

html,
body {
  margin: 0;
  padding: 0;
  background: #080808;
  color: #f4f4f5;
  font-family: "Manrope", "Segoe UI", sans-serif;
}

body.landing {
  min-height: 100dvh;
  background: #0b0b0b;
  overflow-y: auto;
  position: relative;
}

body.landing,
body.landing .landing-shell {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

body.landing::-webkit-scrollbar {
  width: 8px;
}

body.landing::-webkit-scrollbar-track {
  background: transparent;
}

body.landing::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.landing-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 64px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.landing-shell::before {
  content: "";
  position: absolute;
  left: -20vw;
  right: -20vw;
  top: -120px;
  height: 260px;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    ellipse at top,
    rgba(255, 255, 255, 0.16) 0%,
    rgba(255, 255, 255, 0.08) 40%,
    rgba(255, 255, 255, 0) 70%
  );
}

.landing-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.nav-actions {
  display: flex;
  gap: 12px;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }
}

.btn {
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 160ms ease;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary {
  background: #ffffff;
  color: #0d0d0d;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
  background: #f1f1f1;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.16);
  color: #e4e4e7;
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #f4f4f5;
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: #f4f4f5;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  color: #f4f4f5;
}

.hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  margin: 12px 0;
  line-height: 1.1;
}

.hero-text h1 span {
  color: #24fbcf;
}

.hero-text p {
  font-size: 1.05rem;
  color: rgba(244, 244, 245, 0.75);
  line-height: 1.6;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.85rem;
}

.stat-chip img {
  width: 16px;
  height: 16px;
}

.feature-icon {
  display: inline-flex;
  width: 2.25rem;
  height: 2.25rem;
  min-width: 2.25rem;
  border-radius: 0.9rem;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.icon-dot::before,
.icon-bolt::before,
.icon-eye::before,
.icon-like::before,
.icon-scan::before,
.icon-chat::before,
.icon-shield::before {
  content: "";
  width: 14px;
  height: 14px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.2));
}

.icon-dot::before {
  background-image: radial-gradient(circle, #22c55e 45%, rgba(34, 197, 94, 0.2) 46%);
  border-radius: 50%;
}

.icon-bolt::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M13.2 2 5 14h6l-0.2 8L19 10h-6l0.2-8Z' fill='%23fbbf24'/%3E%3C/svg%3E");
}

.icon-eye::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M2 12s3.8-6 10-6 10 6 10 6-3.8 6-10 6-10-6-10-6Z' stroke='%23e5e7eb' stroke-width='1.6'/%3E%3Ccircle cx='12' cy='12' r='3' fill='%23e5e7eb'/%3E%3C/svg%3E");
}

.icon-like::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 20s-7-4.4-7-10a4.1 4.1 0 0 1 7-2.6A4.1 4.1 0 0 1 19 10c0 5.6-7 10-7 10Z' fill='%23f472b6'/%3E%3C/svg%3E");
}

.icon-scan::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M4 8V5a1 1 0 0 1 1-1h3M20 8V5a1 1 0 0 0-1-1h-3M4 16v3a1 1 0 0 0 1 1h3M20 16v3a1 1 0 0 1-1 1h-3' stroke='%23e5e7eb' stroke-width='1.6' stroke-linecap='round'/%3E%3Cpath d='M6 12h12' stroke='%23e5e7eb' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
}

.icon-chat::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 6h14a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H9l-4 4v-4H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2Z' stroke='%23e5e7eb' stroke-width='1.6'/%3E%3C/svg%3E");
}

.icon-shield::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 3 20 6v6c0 5-4 8-8 9-4-1-8-4-8-9V6l8-3Z' stroke='%23e5e7eb' stroke-width='1.6'/%3E%3C/svg%3E");
}

.hero-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 24px;
}

.app-card,
.app-chat {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(17, 17, 17, 0.92);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.app-card,
.app-chat {
  padding: 16px;
}

.app-card-banner {
  height: 140px;
  border-radius: 18px;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.2), transparent 60%),
    linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(10, 10, 10, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.app-card-body {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.app-card-header,
.app-chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.app-card-header .avatar,
.app-chat-header .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2f2f2f, #1c1c1c);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.app-card-header .meta .name,
.app-chat-header .meta .name {
  font-weight: 700;
}

.app-card-header .meta .status,
.app-chat-header .meta .status {
  font-size: 0.8rem;
  color: #a1a1aa;
}

.app-card-header .pill,
.app-chat-header .pill {
  margin-left: auto;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
}

.app-card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.app-card-tags span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.75rem;
}

.app-card-stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tags span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.75rem;
}

.about {
  color: rgba(244, 244, 245, 0.7);
  font-size: 0.92rem;
}

.stats {
  display: flex;
  gap: 10px;
}

.app-chat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}

.app-chat-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-row {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.chat-row.right {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.14);
}

.chat-composer {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 12px;
  font-size: 0.82rem;
  color: rgba(244, 244, 245, 0.7);
}

.chat-composer button {
  margin-left: auto;
  background: #ffffff;
  color: #0d0d0d;
  border: none;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.75rem;
}

.showcase-actions {
  margin-top: 18px;
}

.games-marquee {
  position: relative;
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  padding: 0.65rem 0;
}

.games-marquee::before,
.games-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4rem;
  z-index: 2;
  pointer-events: none;
}

.games-marquee::before {
  left: 0;
  /* background: linear-gradient(90deg, #0b0b0b 0%, rgba(11, 11, 11, 0) 100%); */
}

.games-marquee::after {
  right: 0;
  /* background: linear-gradient(270deg, #0b0b0b 0%, rgba(11, 11, 11, 0) 100%); */
}

.games-marquee-row {
  display: flex;
  overflow: hidden;
  width: calc(100% + 2rem);
  margin-left: -1rem;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.games-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-left 34s linear infinite;
  will-change: transform;
}

.games-marquee-segment {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-right: 0.75rem;
}

.games-marquee-row-reverse .games-marquee-track {
  animation-name: marquee-right;
  animation-duration: 38s;
}

.marquee-game {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex: 0 0 auto;
  width: clamp(7.25rem, 10vw, 8.5rem);
  aspect-ratio: 0.85;
  padding: 0.65rem;
  border-radius: 1rem;
  color: #fff;
  background: rgba(148, 148, 148, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.marquee-game span {
  position: relative;
  z-index: 2;
  max-width: 70%;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.marquee-game-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.96;
}

.marquee-game-blur {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.74) 0%,
    rgba(0, 0, 0, 0.34) 55%,
    rgba(0, 0, 0, 0.06) 100%
  );
  /* backdrop-filter: blur(8px); */
  /* -webkit-backdrop-filter: blur(8px); */
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.landing .finder-card-shell .card-container {
  width: fit-content;
  max-width: 22rem;
  aspect-ratio: 3 / 4;
  border-radius: 2.1rem;
  /* box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45) ; */
}

.landing .finder-card-shell .card {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 18.5rem;
}

.landing .finder-card-shell #banner-card {
  margin-bottom: 0.9rem;
}

.landing .finder-card-shell .about-text {
  max-height: none;
  overflow: hidden;
  -webkit-mask-image: none;
  mask-image: none;
}

.landing .finder-card-shell .games-container {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.landing .finder-card-shell .games-container::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.landing .finder-card-shell .selectedGames {
  position: relative;
  overflow: hidden;
}
.landing .finder-card-shell .game-banner-img {
  opacity: 1;
  height: 100%;
  position: absolute;
}
.landing .finder-card-shell .bg-game-blur {
  display: block;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.35) 55%,
    rgba(0, 0, 0, 0) 100%
  );
}

.landing .showcase-side {
  align-content: start;
}

.landing .side-chat .chat-row {
  max-width: 85%;
}

.landing .side-chat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.landing .side-chat .chat-composer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 10px;
}

.stacked-finder {
  position: relative;
  height: 440px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.stack-card {
  z-index: 2;
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stack-card-active {
  transform: rotate(6deg) translate(20px, -12px);
  animation: stack-card-float 6s cubic-bezier(0.25, 0.1, 0.25, 1) 0.35s infinite;
  will-change: transform;
}

.stack-card .card-container {
  width: 100%;
  max-width: 20rem;
  aspect-ratio: 3 / 4;
}

.stack-card .card {
  width: 100%;
  height: 100%;
}

.stack-card-active .card-container {
  /* box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.45),
    0 0 12px rgba(46, 212, 182, 0.28) !important; */
  outline: 1px solid rgba(46, 212, 182, 0.32);
  animation: stack-card-glow 6s cubic-bezier(0.25, 0.1, 0.25, 1) 0.35s infinite;
}

@keyframes stack-card-float {
  0%,
  100% {
    transform: rotate(6deg) translate(20px, -12px);
  }

  33% {
    transform: rotate(8deg) translate(40px, -12px);
  }

  66% {
    transform: rotate(-8deg) translate(0px, -12px);
  }

  83% {
    transform: rotate(0deg) translate(20px, -34px);
  }
}

@keyframes stack-card-glow {
  0%,
  100% {
    box-shadow:
      0 18px 45px rgba(0, 0, 0, 0.45),
      0 0 12px rgba(46, 212, 182, 0.28);
    outline-color: rgba(46, 212, 182, 0.32);
  }

  33% {
    box-shadow:
      0 18px 45px rgba(0, 0, 0, 0.45),
      0 0 12px rgba(46, 212, 182, 0.28);
    outline-color: rgba(46, 212, 182, 0.32);
  }

  66% {
    box-shadow:
      0 18px 45px rgba(0, 0, 0, 0.45),
      0 0 12px rgba(255, 255, 255, 0.24);
    outline-color: rgba(255, 255, 255, 0.28);
  }

  83% {
    box-shadow:
      0 18px 45px rgba(0, 0, 0, 0.45),
      0 0 12px rgba(251, 146, 60, 0.28);
    outline-color: rgba(251, 146, 60, 0.32);
  }
}

@media (prefers-reduced-motion: reduce) {
  .stack-card-active,
  .stack-card-active .card-container {
    animation: none;
  }
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.feature-card {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(17, 17, 17, 0.88);
  min-height: 8rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.75rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.feature-card:first-child {
  background: #17181aab;
}

.feature-card h3 {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: clamp(1rem, 1.1vw, 1.25rem);
  line-height: 1.1;
}

.feature-card p {
  margin: 0;
  color: rgba(244, 244, 245, 0.7);
  font-size: clamp(0.82rem, 0.78vw, 0.98rem);
  line-height: 1.34;
  max-width: none;
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.data-card {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(17, 17, 17, 0.92);
  padding: 24px;
  display: grid;
  gap: 14px;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.35);
}

.data-card h2 {
  margin: 0;
  font-size: 1.5rem;
}

.data-card p {
  margin: 0;
  color: rgba(244, 244, 245, 0.7);
  line-height: 1.6;
}

.data-points {
  min-width: 18.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.data-number {
  font-size: 1.4rem;
  font-weight: 700;
}

.data-caption {
  color: rgba(244, 244, 245, 0.6);
  font-size: 0.85rem;
}

.status-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.2);
}

.final-cta {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(17, 17, 17, 0.9);
  padding: 32px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.final-cta h2 {
  margin: 10px 0;
  font-size: 1.8rem;
}

.final-cta p {
  margin: 0;
  color: rgba(244, 244, 245, 0.7);
  max-width: 520px;
}

.final-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.showcase-text{
  margin-bottom: 5rem;
}

.finder-card-shell {
  display: flex;
  justify-content: center;
  align-items: center;
}

.showcase-side {
  display: grid;
  gap: 14px;
}

.side-card,
.side-chat {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(17, 17, 17, 0.9);
  padding: 16px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.side-title {
  font-weight: 600;
  margin-bottom: 10px;
}

.side-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(244, 244, 245, 0.7);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.side-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.8rem;
}

.landing-footer {
  margin-top: 20px;
  padding: 36px 32px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(17, 17, 17, 0.85);
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-brand img {
  width: auto;
  height: 38px;
}

.footer-title {
  font-weight: 800;
  font-size: 1.05rem;
}

.footer-subtitle {
  color: rgba(244, 244, 245, 0.6);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(244, 244, 245, 0.7);
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: #ffffff;
}
@media(max-width: 1280px) {
  .hero-preview{
    grid-template-columns: unset;
  }
  .showcase-side{
    display: none;
  }
}

@media (max-width: 1142px) {
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .feature-card {
    min-height: 9rem;
  }
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-preview {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

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

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

  .games-marquee-row {
    width: calc(100% + 1rem);
    margin-left: -0.5rem;
  }

  .marquee-game {
    width: 6.75rem;
    border-radius: 0.9rem;
  }

  .feature-card {
    min-height: 8rem;
    padding: 0.95rem;
    border-radius: 18px;
    gap: 0.6rem;
  }

  .feature-card h3 {
    gap: 0.55rem;
    font-size: 0.9rem;
    line-height: 1.15;
  }

  .feature-card p {
    font-size: 0.76rem;
    line-height: 1.32;
    max-width: none;
  }

  .feature-icon {
    width: 1.85rem;
    height: 1.85rem;
    min-width: 1.85rem;
    border-radius: 0.75rem;
  }

  .icon-dot::before,
  .icon-bolt::before,
  .icon-eye::before,
  .icon-like::before,
  .icon-scan::before,
  .icon-chat::before,
  .icon-shield::before {
    width: 12px;
    height: 12px;
  }

  .nav-actions {
    flex-direction: column;
    align-items: flex-end;
    display: none;
  }
}

@media (max-width: 480px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .feature-card {
    min-height: 8rem;
    padding: 0.85rem;
    border-radius: 16px;
    gap: 0.55rem;
  }

  .feature-card h3 {
    gap: 0.48rem;
    font-size: 0.84rem;
    line-height: 1.12;
  }

  .feature-card p {
    font-size: 0.72rem;
    line-height: 1.28;
  }

  .feature-icon {
    width: 1.7rem;
    height: 1.7rem;
    min-width: 1.7rem;
    border-radius: 0.7rem;
  }

  .icon-dot::before,
  .icon-bolt::before,
  .icon-eye::before,
  .icon-like::before,
  .icon-scan::before,
  .icon-chat::before,
  .icon-shield::before {
    width: 11px;
    height: 11px;
  }
}
