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

:root {
  --bg: #060b1c;
  --panel: rgba(10, 18, 48, 0.86);
  --card: rgba(10, 16, 40, 0.94);
  --text: #edf2ff;
  --muted: #aeb9da;
  --line: rgba(122, 156, 255, 0.18);
  --blue: #32b5ff;
  --violet: #7b61ff;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(123, 97, 255, 0.18), transparent 30%),
    radial-gradient(circle at top left, rgba(50, 181, 255, 0.18), transparent 24%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(rgba(4, 8, 20, 0.18), rgba(4, 8, 20, 0.74));
  z-index: -2;
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(76, 110, 210, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76, 110, 210, 0.11) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent 92%);
  z-index: -1;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(5, 10, 24, 0.78);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
  box-shadow: 0 10px 24px rgba(50, 181, 255, 0.28);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a {
  color: var(--muted);
  font-weight: 600;
  transition: 0.2s ease;
}

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

.menu-toggle { display: none; background: transparent; border: 0; cursor: pointer; }
.menu-toggle span {
  display: block; width: 26px; height: 3px; border-radius: 999px;
  background: #fff; margin: 4px 0;
}

.hero { padding: 76px 0 48px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.hero-copy, .headline-card, .card, .video-card, .deal-box {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-copy { padding: 34px; }
.headline-card { padding: 28px; }

.eyebrow {
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero h1, .section-heading h2 {
  font-family: "Orbitron", sans-serif;
  line-height: 1.06;
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  margin-bottom: 18px;
}

.hero h1 span { color: var(--blue); }

.hero-text, .card p, .video-content p, .game-content p, .deal-box p {
  color: var(--muted);
  line-height: 1.65;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
  box-shadow: 0 12px 30px rgba(60, 98, 255, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(60, 98, 255, 0.34);
}

.btn-secondary {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  box-shadow: none;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(50, 181, 255, 0.14);
  color: #8ed9ff;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.headline-card h2 { font-size: 1.5rem; margin-bottom: 12px; }

.section { padding: 36px 0 66px; }

.alt-section {
  background: linear-gradient(180deg, rgba(8, 14, 36, 0.18), rgba(8, 14, 36, 0.36));
  border-top: 1px solid rgba(122, 156, 255, 0.08);
  border-bottom: 1px solid rgba(122, 156, 255, 0.08);
}

.section-heading { margin-bottom: 24px; }
.section-heading h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }

.cards { display: grid; gap: 20px; }
.news-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.games-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card {
  overflow: hidden;
  background: var(--card);
}

.news-card img, .game-card img, .video-thumb img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card-content, .game-content, .video-content { padding: 20px; }

.news-card h3, .game-card h3, .video-content h3, .deal-box h3 {
  font-size: 1.18rem;
  line-height: 1.4;
  margin-bottom: 10px;
}

.news-card a {
  display: inline-block;
  margin-top: 14px;
  color: #8ed9ff;
  font-weight: 700;
}

.video-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
}

.video-card { overflow: hidden; background: var(--card); }
.video-thumb { position: relative; display: block; }

.play-badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(5, 10, 24, 0.86);
  border: 1px solid rgba(255,255,255,0.12);
  font-weight: 700;
}

.deal-box {
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.glow {
  box-shadow: var(--shadow), 0 0 0 1px rgba(50, 181, 255, 0.04), 0 0 40px rgba(50, 181, 255, 0.06);
}

@media (max-width: 980px) {
  .hero-grid, .video-grid, .news-grid, .games-grid { grid-template-columns: 1fr; }
  .deal-box, .footer-wrap { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 760px) {
  .menu-toggle { display: block; }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border-radius: 22px;
    background: rgba(5, 10, 24, 0.96);
    border: 1px solid var(--line);
  }

  .main-nav.open { display: flex; }
  .hero { padding-top: 40px; }

  .hero-copy, .headline-card, .card, .video-card, .deal-box {
    border-radius: 22px;
  }
}


.btn-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.95rem;
}

.video-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.video-content .btn-secondary {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  box-shadow: none;
}

.video-content .btn-secondary:hover {
  box-shadow: 0 10px 24px rgba(60, 98, 255, 0.18);
}


/* ===== Neon / 3D animated update ===== */
:root {
  --pink: #ff4fd8;
  --cyan: #33d6ff;
  --deep: #071122;
}

body {
  overflow-x: hidden;
}

.hero-copy,
.headline-card,
.card,
.video-card,
.deal-box {
  position: relative;
}

.hero-copy::before,
.headline-card::before,
.card::before,
.video-card::before,
.deal-box::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(51,214,255,.22), rgba(255,79,216,.18));
  opacity: .55;
  z-index: -1;
  filter: blur(18px);
}

.logo,
.hero h1,
.section-heading h2,
.game-card h3,
.video-content h3,
.news-card h3,
.deal-box h3 {
  text-shadow:
    0 1px 0 rgba(255,255,255,.18),
    0 2px 0 rgba(255,255,255,.08),
    0 6px 18px rgba(51,214,255,.18),
    0 0 12px rgba(51,214,255,.35),
    0 0 22px rgba(123,97,255,.22);
}

.hero h1 {
  letter-spacing: .02em;
  animation: neonPulse 3.2s ease-in-out infinite;
}

.hero h1 span {
  color: #fff;
  text-shadow:
    0 0 10px rgba(51,214,255,.9),
    0 0 20px rgba(51,214,255,.75),
    0 0 34px rgba(255,79,216,.45),
    0 8px 20px rgba(0,0,0,.28);
}

.logo-icon {
  animation: floatLogo 3.6s ease-in-out infinite;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.14),
    0 0 16px rgba(51,214,255,.45),
    0 0 28px rgba(123,97,255,.3),
    0 10px 24px rgba(50, 181, 255, 0.28);
}

.tag {
  box-shadow:
    inset 0 0 0 1px rgba(51,214,255,.12),
    0 0 12px rgba(51,214,255,.18);
}

.btn {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  box-shadow:
    0 14px 26px rgba(60, 98, 255, 0.26),
    0 0 18px rgba(51,214,255,.22),
    inset 0 1px 0 rgba(255,255,255,.18);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -140%;
  width: 90%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  transform: skewX(-25deg);
  animation: shine 3.8s linear infinite;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.news-card,
.video-card,
.game-card,
.headline-card,
.deal-box,
.hero-copy {
  animation: floatCard 5.5s ease-in-out infinite;
}

.news-card:nth-child(2),
.video-card:nth-child(2),
.game-card:nth-child(2) { animation-delay: .4s; }

.news-card:nth-child(3),
.video-card:nth-child(3),
.game-card:nth-child(3) { animation-delay: .8s; }

.game-card img,
.news-card img,
.video-thumb img {
  transition: transform .45s ease, filter .45s ease;
  filter: saturate(1.03) contrast(1.04);
}

.game-card:hover img,
.news-card:hover img,
.video-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.1) contrast(1.08);
}

.card,
.video-card,
.deal-box,
.hero-copy,
.headline-card {
  backdrop-filter: blur(10px);
  background:
    linear-gradient(180deg, rgba(18, 27, 62, 0.94), rgba(8, 13, 34, 0.96));
}

.section-heading h2 {
  position: relative;
  display: inline-block;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 62%;
  height: 4px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  box-shadow: 0 0 12px rgba(51,214,255,.45);
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3,6,14,.46), rgba(3,6,14,0));
  pointer-events: none;
}

.play-badge {
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08),
    0 0 14px rgba(51,214,255,.18);
  animation: pulseBadge 2.4s ease-in-out infinite;
}

@keyframes neonPulse {
  0%, 100% {
    text-shadow:
      0 1px 0 rgba(255,255,255,.18),
      0 2px 0 rgba(255,255,255,.08),
      0 0 12px rgba(51,214,255,.42),
      0 0 26px rgba(51,214,255,.24);
  }
  50% {
    text-shadow:
      0 1px 0 rgba(255,255,255,.18),
      0 2px 0 rgba(255,255,255,.08),
      0 0 18px rgba(255,79,216,.38),
      0 0 30px rgba(51,214,255,.38);
  }
}

@keyframes shine {
  0% { left: -140%; }
  100% { left: 160%; }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

@keyframes floatLogo {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-4px); }
}

@keyframes pulseBadge {
  0%,100% { box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 0 14px rgba(51,214,255,.18); }
  50% { box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 0 22px rgba(255,79,216,.24); }
}

@media (prefers-reduced-motion: reduce) {
  .hero h1,
  .logo-icon,
  .news-card,
  .video-card,
  .game-card,
  .headline-card,
  .deal-box,
  .hero-copy,
  .play-badge,
  .btn::before {
    animation: none !important;
  }
}


/* ===== Hero title / font update ===== */
.hero h1 {
  font-family: "Audiowide", sans-serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0.06em;
  color: #edf7ff;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-shadow:
    0 0 4px rgba(255,255,255,0.75),
    0 0 10px rgba(51,214,255,0.95),
    0 0 24px rgba(51,214,255,0.6),
    0 0 42px rgba(123,97,255,0.32);
}

.hero h1 span {
  color: #ffffff;
  text-shadow:
    0 0 4px rgba(255,255,255,0.8),
    0 0 12px rgba(255,79,216,0.75),
    0 0 24px rgba(51,214,255,0.45),
    0 0 40px rgba(255,79,216,0.22);
}

.hero-subtitle {
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9edfff;
  margin-bottom: 18px;
  text-shadow: 0 0 10px rgba(51,214,255,0.28);
}

@media (max-width: 760px) {
  .hero h1 {
    letter-spacing: 0.03em;
  }

  .hero-subtitle {
    font-size: 0.88rem;
    letter-spacing: 0.16em;
  }
}


/* ===== Full dark redesign / Russo One / more motion ===== */
:root {
  --bg: #020202;
  --bg-2: #080808;
  --panel: rgba(10, 10, 12, 0.92);
  --card: rgba(14, 14, 16, 0.96);
  --text: #f4f4f4;
  --muted: #b2b2b8;
  --line: rgba(255,255,255,0.08);
  --blue: #cfcfcf;
  --violet: #7a7a7a;
  --pink: #ffffff;
  --cyan: #d8d8d8;
  --deep: #000000;
  --shadow: 0 22px 48px rgba(0, 0, 0, 0.6);
}

html, body {
  background: radial-gradient(circle at 20% 10%, rgba(255,255,255,0.045), transparent 25%),
              radial-gradient(circle at 80% 0%, rgba(255,255,255,0.03), transparent 22%),
              linear-gradient(180deg, #030303 0%, #070707 42%, #020202 100%);
}

body::before {
  background: linear-gradient(rgba(0,0,0,0.18), rgba(0,0,0,0.62));
}

.bg-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  animation: gridMove 16s linear infinite;
  opacity: 0.9;
}

.site-header {
  background: rgba(5, 5, 5, 0.82);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo, .hero h1, .section-heading h2 {
  font-family: "Russo One", sans-serif !important;
}

.logo {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-icon {
  background: linear-gradient(135deg, #161616, #2b2b2b);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 0 16px rgba(255,255,255,0.08),
    0 10px 24px rgba(0,0,0,0.45);
}

.hero-copy,
.headline-card,
.card,
.video-card,
.deal-box {
  background:
    linear-gradient(180deg, rgba(18,18,18,0.96), rgba(8,8,8,0.98));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 18px 42px rgba(0,0,0,0.52),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.hero-copy::before,
.headline-card::before,
.card::before,
.video-card::before,
.deal-box::before {
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.01));
  opacity: 1;
  filter: blur(14px);
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow:
    0 0 6px rgba(255,255,255,0.35),
    0 0 18px rgba(255,255,255,0.12),
    0 10px 24px rgba(0,0,0,0.36);
  animation: darkPulse 2.2s ease-in-out infinite;
}

.hero h1 span {
  color: #bdbdbd;
  text-shadow:
    0 0 8px rgba(255,255,255,0.18),
    0 0 18px rgba(255,255,255,0.10),
    0 8px 20px rgba(0,0,0,0.35);
}

.hero-subtitle,
.eyebrow,
.tag {
  color: #d7d7d7;
  text-shadow: none;
}

.eyebrow {
  letter-spacing: 0.22em;
}

.section-heading h2 {
  color: #ffffff;
  text-shadow:
    0 0 8px rgba(255,255,255,0.12),
    0 8px 18px rgba(0,0,0,0.25);
}

.section-heading h2::after {
  background: linear-gradient(90deg, #ffffff, #666666);
  box-shadow: 0 0 12px rgba(255,255,255,0.10);
}

.main-nav a {
  color: #cfcfcf;
}
.main-nav a:hover {
  color: #ffffff;
}

.btn {
  background: linear-gradient(135deg, #202020, #3b3b3b);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 12px 26px rgba(0,0,0,0.36),
    0 0 18px rgba(255,255,255,0.06),
    inset 0 1px 0 rgba(255,255,255,0.10);
  animation: buttonFloat 2.8s ease-in-out infinite;
}
.btn::before {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  animation: shine 2.8s linear infinite;
}
.btn:hover {
  transform: translateY(-4px) scale(1.03);
}

.btn-secondary {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
}

.play-badge {
  background: rgba(0,0,0,0.74);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 0 12px rgba(255,255,255,0.06),
    0 8px 18px rgba(0,0,0,0.36);
  animation: pulseBadge 1.8s ease-in-out infinite;
}

.news-card,
.video-card,
.game-card,
.headline-card,
.deal-box,
.hero-copy {
  animation: floatCard 4.2s ease-in-out infinite;
  transition: transform .35s ease, box-shadow .35s ease;
}

.news-card:hover,
.video-card:hover,
.game-card:hover,
.deal-box:hover,
.headline-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 22px 52px rgba(0,0,0,0.64),
    0 0 20px rgba(255,255,255,0.07);
}

.news-card:nth-child(2),
.video-card:nth-child(2),
.game-card:nth-child(2) { animation-delay: .4s; }

.news-card:nth-child(3),
.video-card:nth-child(3),
.game-card:nth-child(3) { animation-delay: .8s; }

.game-card:nth-child(4) { animation-delay: 1.1s; }

.game-card img,
.news-card img,
.video-thumb img {
  filter: saturate(0.92) contrast(1.08) brightness(0.92);
  transition: transform .55s ease, filter .55s ease;
}

.game-card:hover img,
.news-card:hover img,
.video-card:hover img {
  transform: scale(1.05);
  filter: saturate(1.02) contrast(1.12) brightness(1);
}

.site-header,
.hero,
.section,
.site-footer {
  position: relative;
}

.hero::after,
.section::after {
  content: "";
  position: absolute;
  left: -10%;
  width: 120%;
  height: 1px;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  animation: lineSweep 6s linear infinite;
  pointer-events: none;
}

.footer-wrap {
  border-top: 1px solid rgba(255,255,255,0.08);
}

@keyframes gridMove {
  0% { transform: translateY(0px); }
  100% { transform: translateY(44px); }
}

@keyframes darkPulse {
  0%,100% {
    transform: translateY(0px);
    text-shadow:
      0 0 6px rgba(255,255,255,0.35),
      0 0 18px rgba(255,255,255,0.12),
      0 10px 24px rgba(0,0,0,0.36);
  }
  50% {
    transform: translateY(-2px);
    text-shadow:
      0 0 10px rgba(255,255,255,0.42),
      0 0 24px rgba(255,255,255,0.16),
      0 12px 26px rgba(0,0,0,0.4);
  }
}

@keyframes buttonFloat {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-2px); }
}

@keyframes lineSweep {
  0% { transform: translateX(-14%); opacity: .4; }
  50% { opacity: 1; }
  100% { transform: translateX(14%); opacity: .4; }
}

@media (max-width: 760px) {
  .hero h1 {
    letter-spacing: 0.04em;
  }
}


/* ===== Optimized version for Chrome ===== */
html, body {
  background: linear-gradient(180deg, #050505 0%, #090909 45%, #040404 100%);
}

.bg-grid {
  animation: none !important;
  opacity: 0.45;
}

.hero h1,
.logo-icon,
.news-card,
.video-card,
.game-card,
.headline-card,
.deal-box,
.hero-copy,
.play-badge,
.btn,
.btn::before,
.hero::after,
.section::after {
  animation: none !important;
}

.hero-copy::before,
.headline-card::before,
.card::before,
.video-card::before,
.deal-box::before {
  filter: blur(8px);
  opacity: 0.42;
}

.hero-copy,
.headline-card,
.card,
.video-card,
.deal-box {
  box-shadow:
    0 10px 24px rgba(0,0,0,0.34),
    inset 0 1px 0 rgba(255,255,255,0.03);
  backdrop-filter: none !important;
}

.logo,
.hero h1,
.section-heading h2,
.game-card h3,
.video-content h3,
.news-card h3,
.deal-box h3 {
  text-shadow:
    0 0 6px rgba(255,255,255,.08),
    0 4px 10px rgba(0,0,0,.18);
}

.btn {
  box-shadow:
    0 8px 18px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.news-card:hover,
.video-card:hover,
.game-card:hover,
.deal-box:hover,
.headline-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 14px 28px rgba(0,0,0,0.42),
    0 0 10px rgba(255,255,255,0.04);
}

.game-card img,
.news-card img,
.video-thumb img {
  transition: transform .28s ease, filter .28s ease;
}

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

.review-card {
  padding: 22px;
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.review-badge {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.84rem;
  font-weight: 700;
  color: #efefef;
}

.review-stars {
  color: #ffffff;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.review-card h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.review-card strong {
  display: inline-block;
  margin-top: 16px;
  color: #f3f3f3;
}

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


/* ===== Animated small buttons ===== */
.btn-small {
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.btn-small::before {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 82%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: skewX(-22deg);
  animation: btnSmallShine 3.2s linear infinite;
}

.btn-small:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 0 10px rgba(255,255,255,0.10),
    0 0 18px rgba(255,255,255,0.08),
    0 10px 20px rgba(0,0,0,0.34);
}

.btn-small.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
}

@keyframes btnSmallShine {
  0% { left: -130%; }
  100% { left: 155%; }
}

@media (prefers-reduced-motion: reduce) {
  .btn-small::before {
    animation: none !important;
  }
}


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

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


/* ==== NexPlay overrides ==== */
:root{
  --bg:#07080c;
  --panel:rgba(12,14,20,.92);
  --card:rgba(12,14,20,.96);
  --text:#f4f6fb;
  --muted:#b5bdcf;
  --line:rgba(255,255,255,.08);
  --blue:#67c7ff;
  --violet:#7b61ff;
  --shadow:0 10px 28px rgba(0,0,0,.34);
}

html, body{
  background:
    radial-gradient(circle at 18% 20%, rgba(0,174,255,.10), transparent 24%),
    radial-gradient(circle at 78% 18%, rgba(255,0,119,.08), transparent 26%),
    radial-gradient(circle at 48% 82%, rgba(255,170,0,.07), transparent 28%),
    linear-gradient(180deg,#050608 0%,#0a0b10 50%,#06070a 100%);
}

body::before{
  background:linear-gradient(rgba(0,0,0,.10), rgba(0,0,0,.36));
}

.bg-grid{
  opacity:.38;
  animation:none !important;
}

body{
  overflow-x:hidden;
}

body::after{
  content:"";
  position:fixed;
  inset:-20%;
  pointer-events:none;
  z-index:-1;
  background:
    radial-gradient(circle at 20% 30%, rgba(0,170,255,.12), transparent 18%),
    radial-gradient(circle at 75% 25%, rgba(255,0,128,.10), transparent 20%),
    radial-gradient(circle at 55% 78%, rgba(255,166,0,.08), transparent 22%);
  filter: blur(36px);
  animation:bgShift 16s ease-in-out infinite alternate;
}

@keyframes bgShift{
  0%{ transform:translate3d(0,0,0) scale(1); }
  100%{ transform:translate3d(-2vw,2vh,0) scale(1.06); }
}

.site-header{
  backdrop-filter:none !important;
  background:rgba(8,10,14,.92);
}

.logo{
  font-family:"Russo One", sans-serif !important;
  letter-spacing:.04em;
}
.logo-icon{
  width:44px;
  height:44px;
  font-size:.82rem;
  background:linear-gradient(135deg,#11141d,#202636);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 6px 16px rgba(0,0,0,.24);
  animation:none !important;
}

.hero-copy,.headline-card,.card,.video-card,.deal-box{
  background:linear-gradient(180deg, rgba(16,18,25,.96), rgba(10,12,18,.98)) !important;
  border:1px solid rgba(255,255,255,.07);
  box-shadow:0 10px 26px rgba(0,0,0,.30) !important;
  backdrop-filter:none !important;
}

.hero-copy::before,.headline-card::before,.card::before,.video-card::before,.deal-box::before{
  display:none !important;
}

.hero h1,.section-heading h2{
  font-family:"Russo One", sans-serif !important;
  text-shadow:
    0 2px 0 rgba(255,255,255,.10),
    0 8px 18px rgba(0,0,0,.28) !important;
  animation:none !important;
}
.hero h1{
  font-size:clamp(3rem,7vw,5.4rem) !important;
  letter-spacing:.04em !important;
}
.hero h1 span{
  color:#d7e8ff !important;
  text-shadow:
    0 0 10px rgba(103,199,255,.18),
    0 6px 16px rgba(0,0,0,.24) !important;
}
.hero-subtitle{
  letter-spacing:.16em;
  color:#b7dcff;
}

.news-card,.video-card,.game-card,.headline-card,.deal-box,.hero-copy,.play-badge,.btn,.btn::before{
  animation:none !important;
}

.card:hover,.video-card:hover,.game-card:hover,.news-card:hover,.deal-box:hover{
  transform:translateY(-4px);
}
.game-card img,.news-card img,.video-thumb img{
  transition:transform .25s ease, filter .25s ease;
}
.game-card:hover img,.news-card:hover img,.video-card:hover img{
  transform:scale(1.02);
  filter:saturate(1.05) contrast(1.04);
}

.btn{
  min-height:46px;
  padding:0 18px;
  box-shadow:0 8px 18px rgba(0,0,0,.24) !important;
}

.video-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  gap:12px;
  margin-top:18px;
}

.video-actions .btn-small{
  min-width:140px;
  justify-content:center;
  text-align:center;
}

.btn-small{
  position:relative;
  overflow:hidden;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-small::before{
  content:"";
  position:absolute;
  top:0; left:-130%;
  width:78%; height:100%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform:skewX(-24deg);
  animation:btnShine 3.6s linear infinite;
}
@keyframes btnShine{
  0%{left:-130%;}
  100%{left:160%;}
}
.btn-small:hover{
  transform:translateY(-2px);
}

.main-nav a{
  font-weight:700;
}

@media (max-width:980px){
  .hero-grid,.video-grid,.news-grid,.games-grid{
    grid-template-columns:1fr !important;
  }
}

@media (max-width:760px){
  .hero h1{
    font-size:clamp(2.4rem,13vw,4rem) !important;
  }
  .video-actions{
    flex-direction:column;
    align-items:center;
  }
  .video-actions .btn-small{
    width:100%;
    max-width:220px;
  }
}

@media (prefers-reduced-motion: reduce){
  body::after,.btn-small::before{
    animation:none !important;
  }
}


/* precise video section update */
.video-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.video-actions-single {
  justify-content: center;
}

.btn-download-wide {
  min-width: 180px;
  min-height: 50px;
  font-size: 1rem;
}

@media (max-width: 1180px) {
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .video-grid {
    grid-template-columns: 1fr !important;
  }

  .btn-download-wide {
    width: 100%;
    max-width: 220px;
  }
}



}


@media (min-width: 1181px) {
  .video-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
}




.video-card {
  min-height: 100%;
}

.video-card .video-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9 !important;
  object-fit: cover;
  display: block;
}

.video-content {
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

.video-content p {
  flex: 1;
}

.video-actions {
  margin-top: 22px !important;
  justify-content: center;
}

.video-actions .btn-small {
  min-width: 150px;
}

@media (max-width: 900px) {
  .video-grid {
    grid-template-columns: 1fr !important;
  }
}




.video-card img{
  width:100%;
  height:auto;
  aspect-ratio:16/9;
  object-fit:cover;
}

.video-actions{
  display:flex;
  gap:10px;
  justify-content:center;
  margin-top:18px;
}

/* tablet */
@media (max-width:1100px){
  .video-grid{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

/* mobile */
@media (max-width:700px){
  .video-grid{
    grid-template-columns: 1fr;
  }
}


/* Clean 3 video layout */
.video-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:24px;
}

.video-card img{
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
}

.video-actions{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:16px;
}

/* tablette */
@media (max-width:1100px){
  .video-grid{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

/* mobile */
@media (max-width:700px){
  .video-grid{
    grid-template-columns: 1fr;
  }
}
