* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #0a0000; /* deep black-red base */
  color: #f0e6e6;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 72px;
  padding: 0 24px;
  background: rgba(10, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(220, 38, 38, 0.35);
}

.header.scrolled {
  background: rgba(5, 0, 0, 0.97);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.logo {
  height: 170px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  margin-top: 2px;
  filter: drop-shadow(0 0 5px #dc2626);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.logo:hover {
  transform: scale(1.04);
  opacity: 0.9;
}

#nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1;
}

#nav-menu a {
  position: relative;
  color: #dc2626;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 4px 0;
  transition: color 0.25s ease;
}

#nav-menu a:hover {
  color: #ff4d4d;
}

#nav-menu a::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #dc2626, #ff4d4d);
  transform: translateX(-50%);
  transition: width 0.35s ease;
  border-radius: 2px;
  box-shadow: 0 0 6px #dc2626;
}

#nav-menu a:hover::before {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}

.nav-actions button {
  padding: 10px 18px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-weight: 700;
}

.hamburger {
  width: 42px;
  height: 32px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  z-index: 1001;
  flex-shrink: 0;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #dc2626, #ff4d4d);
  border-radius: 4px;
  transition: all 0.4s ease;
  box-shadow: 0 0 10px #ff3a3a;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 14px; }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 14px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 14px;
}

@media (max-width: 900px) {
  .header {
    height: 68px;
    padding: 0 16px;
  }

  .logo {
    height: 170px;
    max-width: 180px;
  }

  .hamburger {
    display: block;
  }

  .nav-actions {
    display: none;
  }

  #nav-menu {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 18px 20px 24px;
    background: rgba(8, 0, 0, 0.97);
    border-top: 1px solid rgba(220, 38, 38, 0.25);
  }

  #nav-menu.active {
    display: flex;
  }
}


/* ---------------- BUTTONS (blood red) ---------------- */
.btn-outline {
  background: transparent;
  border: 1px solid #dc2626;
  color: #ffb3b3;
}
.btn-outline:hover {
  background: rgba(220, 38, 38, 0.2);
}
.btn-primary {
  background: linear-gradient(135deg, #b91c1c, #dc2626);
  box-shadow: 0 0 15px #dc2626;
  color: white;
}
.btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 25px #ff5c5c;
}

.nav-download-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: none;
  z-index: 1100;
  padding: 10px 16px;
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(227, 27, 35, 0.25);
  backdrop-filter: blur(8px);
  box-sizing: border-box;
}

.popup-content {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(20, 4, 4, 0.92);
  border: 1px solid rgba(227, 27, 35, 0.55);
  border-radius: 8px;
  padding: 10px 16px;
  box-shadow: 0 0 0 1px rgba(227, 27, 35, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.popup-accent {
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(227, 27, 35, 0.9), transparent);
  border-radius: 8px 0 0 8px;
}

.popup-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  background: rgba(227, 27, 35, 0.2);
  border: 1px solid rgba(227, 27, 35, 0.5);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.popup-text {
  flex: 1;
  min-width: 0;
}

.popup-text p {
  margin: 0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.popup-text span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}

.download-btnn {
  flex-shrink: 0;
  border: 1px solid rgba(227, 27, 35, 0.7);
  border-radius: 6px;
  padding: 7px 14px;
  background: rgba(227, 27, 35, 0.85);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.15s;
  white-space: nowrap;
}

.download-btnn:hover { background: rgba(227, 27, 35, 1); }

.close-btn {
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  cursor: pointer;
  width: 26px;
  height: 26px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}


.hero-bg {
  position: relative;
  width: 100%;
  height: 100vh;      
  overflow: hidden;
  background: #000;
  cursor: none;
}
.hero-bg canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-content {
  position: relative;
  z-index: 10;
}
#crosshair {
  position: absolute;
  pointer-events: none;
  z-index: 20;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s;
}
.hud-corner {
  position: absolute;
  width: 55px;
  height: 55px;
  z-index: 15;
  pointer-events: none;
}
#hc-tl { top: 0; left: 0; }
#hc-tr { top: 0; right: 0; transform: scaleX(-1); }
#hc-bl { bottom: 0; left: 0; transform: scaleY(-1); }
#hc-br { bottom: 0; right: 0; transform: scale(-1,-1); }
.hud-bar {
  position: absolute;
  font-family: 'Courier New', monospace;
  font-size: 10px;
  color: #ff2222;
  letter-spacing: 1px;
  text-shadow: 0 0 8px #ff0000;
  z-index: 15;
  pointer-events: none;
}
#hud-top    { top: 14px; left: 50%; transform: translateX(-50%); text-align: center; }
#hud-left   { top: 50%; left: 16px; transform: translateY(-50%); writing-mode: vertical-lr; }
#hud-right  { top: 50%; right: 16px; transform: translateY(-50%) rotate(180deg); writing-mode: vertical-lr; }
#hud-bot    { bottom: 14px; left: 50%; transform: translateX(-50%); font-size: 9px; opacity: 0.7; }
.scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    rgba(255,0,0,0.012) 3px, rgba(255,0,0,0.012) 4px
  );
  pointer-events: none;
  z-index: 12;
}

/* ---------------- HERO (black/red) ---------------- */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  padding: 90px 70px;
  align-items: center;
  height: 100%;          /* ← add this */
  box-sizing: border-box; /* ← add this so padding doesn't overflow */
  background: radial-gradient(
    circle at 0% 30%,
    rgba(220, 38, 38, 0.2),
    transparent 60%
  );
}
.hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  background: white;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p {
  color: #c0a0a0;
  font-size: 16px;
  margin: 20px 0 30px;
  max-width: 550px;
}
.cta {
  background: linear-gradient(135deg, #b91c1c, #ff3a3a);
  border: none;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 16px;
  color: white;
  box-shadow: 0 0 20px #dc2626;
  cursor: pointer;
  transition: 0.2s;
}
.cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px #ff5c5c;
}

/* ---------------- MOCKUP ---------------- */
.mockup {
  position: relative;
}
.mockup img {
  width: 100%;
  filter: drop-shadow(0 0 30px rgba(220, 38, 38, 0.6));
  border-radius: 20px;
}

/* ---------------- TRUST SECTION (cards) ---------------- */
.trust-section {
  padding: 60px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-card {
  background: rgba(15, 5, 5, 0.8);
  border: 1px solid rgba(220, 38, 38, 0.4);
  border-radius: 24px;
  padding: 32px 20px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.trust-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, #b91c1c, #ff4d4d, #ff1a1a);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s;
}
.trust-card:hover {
  transform: translateY(-8px);
  border-color: #dc2626;
}
.trust-card:hover::before {
  opacity: 0.8;
}
.trust-card h3 {
  color: #c0a0a0;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.trust-card .highlight {
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(135deg, #ff4d4d, #ff4d4d);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.trust-card span {
  color: #c0a0a0;
}

/* ---------- GAMES SECTION (red accents) ---------- */
.games-section {
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(220, 38, 38, 0.12),
    transparent 70%
  );
}
.games-header {
  text-align: center;
  margin-bottom: 40px;
}
.games-header h2 {
  font-size: 36px;
  font-weight: 800;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}
.games-header h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, #b91c1c, #ff4d4d, #ff9999);
  margin: 12px auto 0;
  border-radius: 3px;
  animation: glow 2s ease-in-out infinite;
}
@keyframes glow {
  50% {
    opacity: 0.6;
  }
}
.games-header p {
  margin-top: 10px;
  color: #c0a0a0;
  font-size: 16px;
}

.carousel-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}
.carousel {
  position: relative;
  width: 100%;
  padding: 20px 0;
}
.carousel-track-container {
  overflow: hidden;
  margin: 0 60px;
  border-radius: 20px;
  position: relative;
}
.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  z-index: 10;
  background: rgba(30, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(220, 38, 38, 0.7);
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}
.carousel-btn svg {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 4px #ff4d4d);
}
.carousel-btn:hover {
  transform: translateY(-50%) scale(1.1);
  background: rgba(100, 20, 20, 0.95);
  border-color: #ff6666;
  box-shadow: 0 0 30px #ff4d4d;
}
.carousel-btn.prev {
  left: 10px;
}
.carousel-btn.next {
  right: 10px;
}

.carousel-track-container::before,
.carousel-track-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.carousel-track-container::before {
  left: 0;
  background: linear-gradient(to right, #0a0000, transparent);
}
.carousel-track-container::after {
  right: 0;
  background: linear-gradient(to left, #0a0000, transparent);
}

/* game card red/black */
.game-card {
  min-width: 260px;
  background: rgba(15, 5, 5, 0.8);
  border: 1px solid rgba(220, 38, 38, 0.4);
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s ease;
  text-align: center;
  backdrop-filter: blur(10px);
}
.game-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, #b91c1c, #ff4d4d, #ff1a1a);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.game-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: transparent;
}
.game-card:hover::before {
  opacity: 1;
}
.game-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 160px;
}
.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.game-card:hover img {
  transform: scale(1.1);
}
.game-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.game-card:hover .game-overlay {
  opacity: 1;
}
.play-now {
  background: linear-gradient(135deg, #b91c1c, #ff3a3a);
  color: white;
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  transform: translateY(20px);
  transition: transform 0.3s;
  box-shadow: 0 0 20px #dc2626;
}
.game-card:hover .play-now {
  transform: translateY(0);
}
.game-card h3 {
  font-size: 18px;
  font-weight: 700;
  padding: 14px 14px 8px;
  color: #fff;
}
.game-stats {
  display: flex;
  justify-content: space-between;
  padding: 0 14px 14px;
  font-size: 12px;
  color: #c0a0a0;
}
.prize {
  color: #ff6666;
  font-weight: 700;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.indicator {
  width: 30px;
  height: 4px;
  border-radius: 2px;
  background: rgba(220, 38, 38, 0.3);
  transition: all 0.3s;
}
.indicator.active {
  background: linear-gradient(90deg, #dc2626, #ff6666);
  width: 50px;
}

/* ----- FEATURES red/black glow ----- */
.features {
  padding: 100px 60px;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(220, 38, 38, 0.1),
    transparent 70%
  );
  text-align: center;
}

.features-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.features-header h2 {
  font-size: 42px;
  font-weight: 800;
}

.features-header h2 span {
  background: linear-gradient(135deg, #dc2626, #dc2626);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features-header p {
  color: #c0a0a0;
  margin: 10px 0;
}

/* ----- CAROUSEL WRAPPER ----- */
.carousel-outer {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
}

/* ----- SLIDES ----- */
.carousel-slide {
  display: none;
}
.carousel-slide.active {
  display: block;
}

/* ----- 3-COLUMN GRID ----- */
.features-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

/* ----- LEFT & RIGHT COLUMNS ----- */
.features-left,
.features-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

/* ----- FEATURE CARDS ----- */
.feature-item {
  background: rgba(15, 5, 5, 0.7);
  border: 1px solid rgba(220, 38, 38, 0.4);
  border-radius: 24px;
  padding: 30px;
  margin: 0;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
  position: relative;
  text-align: left;
}

.feature-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, #b91c1c, #ff4d4d);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-item:hover {
  transform: translateY(-8px);
}

.feature-item:hover::before {
  opacity: 0.8;
}

.feature-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #fff, #ff7b7b);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-item p {
  color: #c0a0a0;
  line-height: 1.6;
  font-size: 14px;
}

/* ----- CENTER IMAGE ----- */
.features-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-center img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 0 30px #dc2626);
  border-radius: 30px;
}

/* ----- ARROWS ----- */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 5, 5, 0.8);
  border: 1px solid rgba(220, 38, 38, 0.5);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.carousel-arrow:hover {
  background: rgba(220, 38, 38, 0.3);
  border-color: #dc2626;
  box-shadow: 0 0 16px rgba(220, 38, 38, 0.5);
}

.carousel-arrow-left {
  left: -60px;
}

.carousel-arrow-right {
  right: -60px;
}

/* ----- DOTS ----- */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.3);
  border: 1px solid rgba(220, 38, 38, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dot.active {
  background: #dc2626;
  box-shadow: 0 0 10px rgba(220, 38, 38, 0.8);
  transform: scale(1.3);
}

/* ----- RESPONSIVE ----- */
@media (max-width: 1024px) {
  .carousel-arrow-left { left: -10px; }
  .carousel-arrow-right { right: -10px; }
}

@media (max-width: 768px) {
  .features-container {
    grid-template-columns: 1fr;
  }
  .features-center {
    order: -1;
  }
  .carousel-arrow-left { left: 0; }
  .carousel-arrow-right { right: 0; }
}

.app-download {
  padding: 100px 60px;
  text-align: center;
  background: radial-gradient(
    circle at center,
    rgba(220, 38, 38, 0.12),
    transparent 70%
  );
}
.app-content h2 {
  font-size: 42px;
  font-weight: 800;
}
.app-content h2 span {
  background: linear-gradient(135deg,  #dc2626, #dc2626);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.app-content p {
  color: #c0a0a0;
  max-width: 600px;
  margin: 20px auto 40px;
}
.store-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: rgba(15, 5, 5, 0.8);
  border: 1px solid rgba(220, 38, 38, 0.5);
  border-radius: 40px;
  text-decoration: none;
  color: white;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
  box-shadow: 0 0 15px #b91c1c;
}
.store-btn:hover {
  transform: scale(1.05);
  border-color: #ff4d4d;
  box-shadow: 0 0 30px #ff4d4d;
}
.store-btn .small {
  font-size: 12px;
  color: #c0a0a0;
}
.store-btn strong {
  font-size: 16px;
}
.store-btn img {
  width: 24px;
  height: 24px;
}

/* ----- INVESTORS (red/black) ----- */
.investors-section {
  padding: 80px 60px;
  text-align: center;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(220, 38, 38, 0.1),
    transparent 70%
  );
}

.investors-header h2 {
  font-size: 36px;
  font-weight: 800;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.investors-header h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, #b91c1c, #ff4d4d, #ff9999);
  margin: 12px auto 0;
  border-radius: 3px;
  animation: glow 2s ease-in-out infinite;
}

.investors-header p {
  color: #c0a0a0;
  margin-top: 10px;
}

.investors-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.investor-card {
  padding: 25px 40px;
  background: rgba(15, 5, 5, 0.7);
  border: 1px solid rgba(220, 38, 38, 0.4);
  border-radius: 30px;
  transition: all 0.3s ease;
}

.investor-card:hover {
  transform: translateY(-8px);
  border-color: #ff4d4d;
  box-shadow: 0 0 30px rgba(220, 38, 38, 0.6);
}

.investor-card img {
  max-height: 60px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.investor-card:hover img {
  transform: scale(1.05);
}

@keyframes glow {
  0% {
    box-shadow: 0 0 5px rgba(220, 38, 38, 0.5);
  }
  50% {
    box-shadow: 0 0 15px rgba(255, 77, 77, 0.9);
  }
  100% {
    box-shadow: 0 0 5px rgba(220, 38, 38, 0.5);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .investors-section {
    padding: 60px 20px;
  }

  .investors-header h2 {
    font-size: 28px;
  }

  .investors-grid {
    gap: 30px;
    margin-top: 40px;
  }

  .investor-card {
    padding: 20px 30px;
  }

  .investor-card img {
    max-height: 50px;
  }
}

/* ---------- FAQ SECTION red borders ---------- */
.faq-section {
  padding: 100px 60px;
  max-width: 900px;
  margin: 0 auto;
}
.faq-header {
  text-align: center;
  margin-bottom: 60px;
}
.faq-header h2 {
  font-size: 38px;
  font-weight: 900;
}
.faq-header h2 span {
  background: linear-gradient(135deg, #dc2626, #dc2626);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.faq-header p {
  color: #c0a0a0;
  font-size: 16px;
  margin-top: 6px;
}
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-item {
  position: relative;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(20, 5, 5, 0.85),
    rgba(5, 0, 0, 0.95)
  );
  border: 1px solid rgba(220, 38, 38, 0.5);
  overflow: hidden;
  transition: all 0.35s ease;
}
.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(220, 38, 38, 0.7),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.faq-item:hover::before {
  opacity: 0.4;
}
.faq-question {
  width: 100%;
  padding: 22px 26px;
  background: transparent;
  border: none;
  color: #f0e6e6;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}
.faq-question:hover {
  background: rgba(220, 38, 38, 0.15);
}
.faq-question .icon {
  font-size: 22px;
  transition:
    transform 0.4s ease,
    color 0.3s ease;
  color: #ff6b6b;
}
.faq-answer {
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  overflow: hidden;
  padding: 0 26px;
  transition:
    max-height 0.6s ease,
    opacity 0.4s ease,
    transform 0.4s ease;
}
.faq-answer p {
  color: #c0a0a0;
  font-size: 15px;
  line-height: 1.7;
  padding-bottom: 22px;
}
.faq-item.active {
  box-shadow:
    0 0 25px rgba(220, 38, 38, 0.5),
    inset 0 0 10px rgba(220, 38, 38, 0.3);
  border-color: #ff4d4d;
}
.faq-item.active .faq-answer {
  max-height: 350px;
  opacity: 1;
  transform: translateY(0);
  padding-top: 8px;
}
.faq-item.active .icon {
  transform: rotate(45deg) scale(1.1);
  color: #ffa3a3;
}

/* ---------- FOOTER dark red/black ---------- */
.footer {
  background: #030000;
  border-top: 1px solid rgba(220, 38, 38, 0.4);
  color: #ccb3b3;
}
.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}
.footer-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px #dc2626);
}
.footer-logo span {
  font-size: 28px;
  font-weight: 900;
  color: linear-gradient(135deg, #fff, #ef4444);
  letter-spacing: 1px;
}
.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  color: #a87c7c;
}
.footer-links h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #ff7b7b;
}
.footer-links ul li {
  list-style: none;
  margin-bottom: 12px;
}
.footer-links ul li a {
  text-decoration: none;
  font-size: 14px;
  color: #a87c7c;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}
.footer-links ul li a:hover {
  color: #ff5c5c;
  transform: translateX(4px);
}
.footer-bottom {
  border-top: 1px solid rgba(220, 38, 38, 0.25);
  text-align: center;
  padding: 18px;
  font-size: 13px;
  color: #a87c7c;
}

@media (max-width: 1200px) {
  .hero {
    padding: 70px 40px;
    gap: 30px;
  }
  .hero h1 {
    font-size: 42px;
  }
  .games-section,
  .features,
  .app-download,
  .investors-section,
  .faq-section {
    padding: 70px 40px;
  }
  .features-container {
    gap: 30px;
  }
  .footer-container {
    padding: 70px 40px;
    gap: 40px;
  }
}
@media (max-width: 991px) {
 
  nav a {
    margin: 0 10px;
    font-size: 13px;
  }
  .nav-actions button {
    padding: 6px 12px;
    font-size: 13px;
  }
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 30px;
  }
  .hero h1 {
    font-size: 38px;
    margin: 0 auto;
  }
  .trust-section {
    padding: 50px 30px;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .games-section {
    padding: 60px 30px;
  }
  .carousel-track-container {
    margin: 0 50px;
  }
  .game-card {
    min-width: 220px;
  }
  .features {
    padding: 70px 30px;
  }
  .features-header h2 {
    font-size: 36px;
  }
  .features-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .features-left,
  .features-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .features-center {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }
  .app-download {
    padding: 70px 30px;
  }
  .investors-section {
    padding: 70px 30px;
  }
  .investors-grid {
    gap: 40px;
  }
  .faq-section {
    padding: 70px 30px;
  }
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    padding: 60px 30px;
  }
}
@media (max-width: 767px) {
 
  .hamburger {
    display: block;
    width: 35px;
    height: 26px;
    position: relative;
    cursor: pointer;
  }
  .hamburger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 3.5px;
    background: #ef4444;
    border-radius: 3px;
    transition: all 0.3s;
    left: 0;
  }
  .hamburger span:nth-child(1) {
    top: 0;
  }
  .hamburger span:nth-child(2) {
    top: 11px;
  }
  .hamburger span:nth-child(3) {
    bottom: 0;
  }
  .hamburger.active span:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    bottom: 11.5px;
    transform: rotate(-45deg);
  }
  nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(10, 0, 0, 0.98);
    backdrop-filter: blur(12px);
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px 0;
    border-top: 1px solid rgba(220, 38, 38, 0.5);
    border-bottom: 1px solid rgba(220, 38, 38, 0.5);
    z-index: 1000;
  }
  nav.active {
    display: flex;
  }
  nav a {
    font-size: 16px;
    margin: 5px 0;
    padding: 8px 20px;
    width: 100%;
    text-align: center;
  }
  .nav-actions {
    display: none;
  }
  .hero {
    padding: 50px 20px;
  }
  .hero h1 {
    font-size: 32px;
  }
  .trust-section {
    padding: 40px 20px;
  }
  .trust-grid {
    gap: 15px;
  }
  .trust-card .highlight {
    font-size: 32px;
  }
  .games-section {
    padding: 50px 20px;
  }
  .carousel-track-container {
    margin: 0 40px;
  }
  .carousel-btn {
    width: 44px;
    height: 44px;
  }
  .game-card {
    min-width: 190px;
  }
  .game-image-wrapper {
    height: 130px;
  }
  .features {
    padding: 60px 20px;
  }
  .features-header h2 {
    font-size: 32px;
  }
  .features-left,
  .features-right {
    grid-template-columns: 1fr;
  }
  .app-download {
    padding: 60px 20px;
  }
  .app-content h2 {
    font-size: 32px;
  }
  .store-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .investors-section {
    padding: 60px 20px;
  }
  .investors-grid {
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
  }
  .investor-card {
    max-width: 280px;
    margin: 0 auto;
  }
  .faq-section {
    padding: 60px 20px;
  }
  .footer-container {
    grid-template-columns: 1fr;
    padding: 50px 20px;
    gap: 35px;
    text-align: center;
  }
  .footer-logo {
    justify-content: center;
  }
}
@media (max-width: 414px) {
  .hero h1 {
    font-size: 28px;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .trust-card .highlight {
    font-size: 28px;
  }
  .game-card {
    min-width: 170px;
  }
  .game-image-wrapper {
    height: 115px;
  }
  .features-header h2 {
    font-size: 28px;
  }
  .app-content h2 {
    font-size: 28px;
  }
}
@media (max-width: 375px) {
  .game-card {
    min-width: 155px;
  }
  .trust-grid {
    gap: 10px;
  }
}
@media (max-width: 320px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .game-card {
    min-width: 140px;
  }
}
@media (prefers-color-scheme: dark) {
  body {
    background: #0a0000;
  }
  .game-card,
  .trust-card,
  .feature-item,
  .investor-card,
  .faq-item {
    background: rgba(20, 5, 5, 0.85);
  }
}



@media (max-width: 768px) {
  .nav-download-popup {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: calc(100% - 20px);
  }

  .popup-content {
    justify-content: space-between;
    width: 100%;
  }

  .popup-content p {
    white-space: normal;
  }
}

/* video page */

.hero-strip {
  position: relative;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(220, 38, 38, 0.2),
    transparent 70%
  );
}
.hero-strip h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 72px;
  letter-spacing: 8px;
  background: linear-gradient(180deg, #fff 0%, var(--red-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-strip p {
  color: var(--muted);
  font-size: 15px;
  margin-top: 8px;
}
.featured-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 40px 0;
}
.video-player {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border);
  margin-bottom: 40px;
  box-shadow: 0 0 40px rgba(220, 38, 38, 0.2);
}
.video-screen {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  position: relative;
}
.real-video-element {
  width: 100%;
  aspect-ratio: 16/9;
  background: black;
  display: block;
}
.video-controls-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.video-screen:hover .video-controls-overlay {
  opacity: 1;
  pointer-events: auto;
}
.play-pause-btn {
  background: rgba(220, 38, 38, 0.85);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.play-pause-btn svg {
  width: 20px;
  height: 20px;
  fill: white;
  margin-left: 2px;
}
.progress-bar {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}
.progress-fill {
  height: 100%;
  background: var(--red-bright);
  width: 0%;
  border-radius: 2px;
}
.time-display {
  font-family: "Share Tech Mono", monospace;
  font-size: 12px;
  color: white;
}
.volume-btn {
  background: none;
  border: none;
  cursor: pointer;
}
.volume-btn svg {
  width: 20px;
  height: 20px;
  fill: white;
}
.video-meta {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.video-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: #fff;
}
.video-info {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.video-info span {
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.vid-action-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 16px;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  cursor: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.vid-action-btn:hover {
  border-color: var(--red);
  color: #fff;
  background: rgba(220, 38, 38, 0.1);
}
.vid-action-btn.liked {
  color: var(--red-bright);
  border-color: var(--red-bright);
}
.video-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px 80px;
}
.section-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  margin-top: 60px;
}
.section-row h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  letter-spacing: 4px;
  color: #fff;
}
.section-row h2 span {
  color: var(--red-bright);
}
.see-all {
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  color: var(--red-bright);
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 14px;
  cursor: none;
  transition: all 0.2s;
}
.see-all:hover {
  border-color: var(--red-bright);
  box-shadow: 0 0 8px rgba(220, 38, 38, 0.3);
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.video-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  cursor: none;
  transition: all 0.3s;
}
.video-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
}
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #100000, #000);
  cursor: pointer;
  overflow: hidden;
}
.thumb-video-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}
.video-card:hover .thumb-overlay {
  opacity: 1;
}
.play-mini {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px var(--red-glow);
}
.thumb-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.8);
  padding: 3px 8px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 11px;
  color: white;
}
.video-body {
  padding: 14px;
}
.video-card-title {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin-bottom: 8px;
}
.video-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ch-name {
  font-size: 12px;
  color: var(--muted);
}
.vid-views {
  font-family: monospace;
  font-size: 10px;
  color: var(--muted);
}
.modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(8px);
}
.modal-bg.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: #0a0000;
  border: 1px solid var(--border);
  border-radius: 20px;
  width: 90%;
  max-width: 1100px;
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.3s;
}
.modal-bg.open .modal-box {
  transform: scale(1);
}
.modal-video-container {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  position: relative;
}
.modal-video-element {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.modal-footer {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
}
.modal-close {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 18px;
  color: var(--muted);
  cursor: none;
}
.modal-close:hover {
  border-color: var(--red);
  color: white;
}
@media (max-width: 1100px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  nav {
    display: none;
  }
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-section,
  .video-page {
    padding: 40px 20px;
  }
}
@media (max-width: 480px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

/* features */



/* ── RESET & ROOT ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red:        #dc2626;
  --red-dark:   #b91c1c;
  --red-bright: #ff4d4d;
  --red-glow:   rgba(220, 38, 38, .6);
  --bg:         #0a0000;
  --card:       rgba(15, 5, 5, .85);
  --border:     rgba(220, 38, 38, .35);
  --text:       #f0e6e6;
  --muted:      #c0a0a0;
}

/* ── BASE ── */



/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */


.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 4px;
  background: linear-gradient(135deg, #fff, var(--red-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px var(--red));
}





.hero-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(220,38,38,0.06)' stroke-width='1'%3E%3Crect x='1' y='1' width='58' height='58'/%3E%3Cline x1='0' y1='30' x2='60' y2='30'/%3E%3Cline x1='30' y1='0' x2='30' y2='60'/%3E%3C/g%3E%3C/svg%3E") repeat;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-block;
  background: rgba(220, 38, 38, .15);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 18px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--red-bright);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.hero-strip h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  letter-spacing: 8px;
  line-height: 1;
  background: linear-gradient(180deg, #fff 0%, var(--red-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: flicker 4s ease-in-out infinite;
}

.hero-strip p {
  color: var(--muted);
  font-size: 15px;
  margin-top: 12px;
  letter-spacing: 1px;
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  92%       { opacity: 1; }
  93%       { opacity: .7; }
  94%       { opacity: 1; }
  97%       { opacity: .85; }
  98%       { opacity: 1; }
}

/* Hero Section */


.hero-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(220,38,38,0.06)' stroke-width='1'%3E%3Crect x='1' y='1' width='58' height='58'/%3E%3Cline x1='0' y1='30' x2='60' y2='30'/%3E%3Cline x1='30' y1='0' x2='30' y2='60'/%3E%3C/g%3E%3C/svg%3E") repeat;
}

.hero-inner {
  position: relative;
  z-index: 2;
}


.hero-strip h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  letter-spacing: 8px;
  line-height: 1;
  background: linear-gradient(180deg, #fff 0%, var(--red-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-strip p {
  color: var(--muted);
  font-size: 15px;
  margin-top: 12px;
  letter-spacing: 1px;
}

/* Features Section */
.features {
  padding: 100px 60px;
  background: radial-gradient(circle at 70% 30%, rgba(220, 38, 38, 0.08), transparent 70%);
}

.features-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.features-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 5px;
  color: #fff;
  margin-bottom: 10px;
}

.features-header h2 span {
  background: linear-gradient(135deg, var(--red), var(--red-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-header p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 6px;
}

.features-header::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--red-dark), var(--red-bright), #ff9999);
  margin: 16px auto 0;
  border-radius: 3px;
}

/* Feature Grid Layout */
.feature-grid {
  max-width: 1300px;
  margin: 0 auto;
}

.feature-category {
  margin-bottom: 70px;
}

.category-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 3px;
  color: var(--red-bright);
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(220, 38, 38, 0.3);
  display: inline-block;
}

.category-title i {
  margin-right: 12px;
  font-size: 28px;
}

.grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red-dark), var(--red-bright));
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--red-bright);
  box-shadow: 0 16px 36px rgba(220, 38, 38, 0.2);
}

.feature-card:hover::before {
  opacity: 0.08;
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.feature-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, rgba(185, 28, 28, 0.8), rgba(220, 38, 38, 0.6));
  margin: 60px auto 0;
  padding: 50px 40px;
  border-radius: 30px;
  text-align: center;
  border: 1px solid rgba(255, 77, 77, 0.5);
}

.cta-banner h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  font-size: 16px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000;
  border: none;
  padding: 14px 32px;
  border-radius: 40px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--red-bright);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.download-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px var(--red-glow);
  color: #fff;
}




/* Responsive */
@media (max-width: 1024px) {
  .grid-3col {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .features {
    padding: 70px 40px;
  }
}

@media (max-width: 768px) {
  .hero-strip h1 {
    font-size: 52px;
  }
  .features-header h2 {
    font-size: 36px;
  }
  .category-title {
    font-size: 26px;
  }
  .features {
    padding: 50px 24px;
  }
}

@media (max-width: 550px) {
  .grid-3col {
    grid-template-columns: 1fr;
  }
  .hero-strip h1 {
    font-size: 42px;
  }
}

/* ranking */


.hero-strip h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 70px;
  letter-spacing: 8px;
  background: linear-gradient(180deg, #fff 0%, var(--red-bright) 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-strip p {
  color: var(--muted);
  margin-top: 10px;
}

/* Main Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 40px;
}

/* Stats Row */
.stats-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stat-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 30px;
  text-align: center;
  min-width: 150px;
}

.stat-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--red-bright);
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
}

/* Category Tabs */
.tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tab {
  background: none;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 8px 24px;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
}

.tab.active,
.tab:hover {
  background: rgba(220, 38, 38, 0.15);
  border-color: var(--red);
  color: #fff;
}

/* Rankings Table */
.rankings-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.rank-header {
  display: grid;
  grid-template-columns: 70px 2fr 1.5fr 100px 100px;
  background: rgba(220, 38, 38, 0.1);
  padding: 14px 20px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--red-bright);
  border-bottom: 1px solid var(--border);
}

.rank-row {
  display: grid;
  grid-template-columns: 70px 2fr 1.5fr 100px 100px;
  padding: 12px 20px;
  align-items: center;
  border-bottom: 1px solid rgba(220, 38, 38, 0.1);
  transition: background 0.2s;
}

.rank-row:hover {
  background: rgba(220, 38, 38, 0.05);
}

.rank-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  font-weight: bold;
}

.rank-num.top1 { color: #ffd700; text-shadow: 0 0 5px #ffd700; }
.rank-num.top2 { color: #c0c0c0; }
.rank-num.top3 { color: #cd7f32; }

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

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b91c1c, #2a0000);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border: 1px solid var(--border);
}

.player-name {
  font-weight: 700;
}

.player-tag {
  font-size: 11px;
  color: var(--muted);
  font-family: 'Share Tech Mono', monospace;
}

.clan-badge {
  background: rgba(220, 38, 38, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  display: inline-block;
}

.kd {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
}

.winrate {
  color: #4ade80;
  font-weight: 700;
}

/* Update Button */
.update-area {
  text-align: center;
  margin-top: 30px;
}

.update-btn {
  background: linear-gradient(135deg, #b91c1c, #dc2626);
  border: none;
  padding: 12px 32px;
  border-radius: 40px;
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
  transition: all 0.2s;
}

.update-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px #ff4d4d;
}



/* Responsive */
@media (max-width: 800px) {
  .rank-header, .rank-row {
    grid-template-columns: 50px 1.5fr 1fr 70px 70px;
    gap: 5px;
    font-size: 12px;
    padding: 10px 12px;
  }
  .avatar {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
  .player-name {
    font-size: 13px;
  }
  .container {
    padding: 30px 20px;
  }
  nav {
    display: none;
  }
}

@media (max-width: 550px) {
  .rank-header {
    display: none;
  }
  .rank-row {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
    margin-bottom: 10px;
    border: 1px solid var(--border);
    border-radius: 12px;
  }
  .player {
    justify-content: center;
  }
}


/* tournaments */
/* Page Body */
.page-body {
  max-width: 1320px;
  margin: 0 auto;
  padding: 40px 32px 60px;
}

.page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 4px;
  color: var(--red-bright);
  margin-bottom: 28px;
}

/* Toolbar */
.toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.search-wrap {
  position: relative;
  flex: 1;
  max-width: 420px;
}

.search-wrap input {
  width: 100%;
  padding: 11px 42px 11px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  outline: none;
}

.search-wrap input:focus { border-color: var(--red-bright); }

.search-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.6;
}

.filter-wrap {
  display: flex;
  gap: 10px;
}

.clear-btn, .filter-wrap select {
  padding: 9px 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--muted);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.clear-btn:hover { border-color: var(--red); color: #fff; }

.filter-wrap select {
  cursor: pointer;
}

/* Tournament Grid */
.tournament-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.t-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  transition: all 0.28s;
}

.t-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(220, 38, 38, 0.18);
}

.card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.card-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 5px;
}

.card-status {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
}

.status-open { color: #22c55e; }
.status-open-invite { color: #facc15; }

.card-logo {
  width: 44px;
  height: 44px;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.card-dates {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dates-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  color: var(--muted);
}

.dates-value {
  font-size: 13px;
  font-weight: 600;
}

.tier-badge {
  padding: 4px 12px;
  background: var(--red);
  border-radius: 5px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: #fff;
}

/* Pagination */
.pagination-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.showing-text {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  color: var(--muted);
}

.pagination {
  display: flex;
  gap: 6px;
}

.page-btn {
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--muted);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  cursor: pointer;
}

.page-btn.active, .page-btn:hover {
  background: rgba(220, 38, 38, 0.2);
  border-color: var(--red);
  color: #fff;
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px;
  color: var(--muted);
}



/* Responsive */
@media (max-width: 1024px) {
  .tournament-grid { grid-template-columns: repeat(2, 1fr); }
}



@media (max-width: 560px) {
  .tournament-grid { grid-template-columns: 1fr; }
  .toolbar { flex-direction: column; }
  .search-wrap { max-width: 100%; }
}