/* ============================================================
   JEREMIAH'S MODZ — style.css (Ultra-Modern 2026 Edition)
   Color palette: Obsidian Black, Pure Bright Red (#ff0000), Chrome/Silver
   ============================================================ */

:root {
  --black: #08080a;
  --black-2: #0e0e12;
  --black-3: #16161c;
  --black-4: #202028;
  --red: #ff0000;
  --red-dark: #b30000;
  --red-light: #ff3333;
  --white: #ffffff;
  --white-80: rgba(255,255,255,0.85);
  --white-60: rgba(255,255,255,0.65);
  --white-30: rgba(255,255,255,0.35);
  --white-10: rgba(255,255,255,0.08);
  --chrome: #c0c0c0;
  --chrome-light: #e8e8e8;
  --chrome-dark: #888;
  --gradient-red: linear-gradient(135deg, #ff0000 0%, #b30000 100%);
  --gradient-chrome: linear-gradient(135deg, #e8e8e8 0%, #9ca3af 50%, #e8e8e8 100%);
  --glow-red: 0 0 25px rgba(255, 0, 0, 0.65), 0 0 65px rgba(255, 0, 0, 0.35);
  --glow-red-sm: 0 0 12px rgba(255, 0, 0, 0.55);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.7);
  --border-subtle: 1px solid rgba(255,255,255,0.09);
  --border-red: 1px solid rgba(255, 0, 0, 0.45);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-title: 'Orbitron', monospace;
  --font-body: 'Inter', sans-serif;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ========== TYPOGRAPHY ========== */
.text-accent { color: var(--red); }

/* ========== CONTAINER ========== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-red);
  color: var(--white);
  box-shadow: var(--glow-red-sm);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-red);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: 10px; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-arrow { transition: transform 0.3s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ========== SECTION ========== */
.section { padding: 100px 0; position: relative; }

.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--red);
  background: rgba(255, 0, 0, 0.12);
  border: 1px solid rgba(255, 0, 0, 0.35);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 16px;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.2);
}
.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--white-60);
  max-width: 580px;
  margin: 0 auto;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(8,8,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: var(--border-subtle);
}
.nav-container {
  max-width: 100%;
  width: 96%;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-start;
}
.nav-logo-img {
  height: 66px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(255, 0, 0, 0.6));
  transition: var(--transition);
}
.nav-logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 18px rgba(255, 0, 0, 0.85));
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 0 auto;
  flex: 2;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white-80);
  transition: color 0.2s;
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-badge {
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(255,0,0,0.6);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.25s;
  box-shadow: 0 0 8px var(--red);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex: 1;
}
.nav-cta {
  padding: 10px 20px;
  font-size: 0.88rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: 
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 0, 0, 0.16) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(255, 0, 0, 0.08) 0%, transparent 60%),
    var(--black);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 80px,
      rgba(255,255,255,0.018) 80px,
      rgba(255,255,255,0.018) 81px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(255,255,255,0.018) 80px,
      rgba(255,255,255,0.018) 81px
    );
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}
@keyframes float-particle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-20px) scale(1); opacity: 0; }
}

.hero-container-wide {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(290px, 340px) 1fr minmax(290px, 340px);
  gap: 36px;
  align-items: center;
  max-width: 1780px;
  width: 96%;
  margin: 0 auto;
  padding: 60px 20px 40px;
}
@media (max-width: 1250px) {
  .hero-container-wide {
    grid-template-columns: 1fr;
    max-width: 860px;
  }
  .hero-side-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .hero-side-panel {
    grid-template-columns: 1fr;
  }
}

.hero-side-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.panel-box {
  background: rgba(22, 22, 28, 0.78);
  border: 1px solid rgba(255, 0, 0, 0.38);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 0 35px rgba(255, 0, 0, 0.18), inset 0 0 25px rgba(255, 0, 0, 0.05);
  backdrop-filter: blur(14px);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  text-align: left;
}
.panel-box:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 0, 0, 0.85);
  box-shadow: 0 0 50px rgba(255, 0, 0, 0.35), inset 0 0 30px rgba(255, 0, 0, 0.12);
}
.panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 12px;
}
.panel-icon {
  font-size: 1.3rem;
}
.panel-header h3 {
  font-family: var(--font-title);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  margin: 0;
  text-transform: uppercase;
}
.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.82rem;
}
.status-row:last-child { border-bottom: none; }
.status-game { color: var(--white-80); font-weight: 500; }
.status-safe {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #10b981;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.45);
  padding: 3px 10px;
  border-radius: 50px;
  box-shadow: 0 0 10px rgba(255, 77, 77, 0.25);
}

.tech-spec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.82rem;
}
.tech-spec:last-child { border-bottom: none; }
.spec-label { color: var(--white-60); }
.spec-val { color: var(--white); font-weight: 600; }

.feed-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feed-item {
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--red);
  padding: 10px 12px;
  border-radius: 8px;
  transition: background 0.2s;
}
.feed-item:hover { background: rgba(255, 0, 0, 0.1); }
.feed-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  margin-bottom: 4px;
}
.feed-top strong { color: #10b981; }
.feed-time { color: var(--white-60); font-size: 0.72rem; }
.feed-txt {
  font-size: 0.78rem;
  color: var(--white-80);
  margin: 0;
  line-height: 1.3;
}

.advantage-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--white-80);
}
.advantage-list li strong {
  color: var(--white);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px 10px;
  max-width: 860px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 0, 0, 0.15);
  border: 1px solid rgba(255, 0, 0, 0.45);
  border-radius: 50px;
  padding: 8px 22px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.35);
  animation: fadeInDown 0.8s ease both;
}
.badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.hero-logo-wrapper {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  animation: fadeInDown 0.8s 0.1s ease both;
}
.hero-logo-img {
  max-height: 480px;
  width: auto;
  max-width: 95vw;
  object-fit: contain;
  filter: drop-shadow(0 0 45px rgba(255, 0, 0, 0.9)) drop-shadow(0 0 80px rgba(255, 0, 0, 0.55));
  transition: transform 0.3s;
}
.hero-logo-img:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 0 55px rgba(255, 0, 0, 1));
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.8rem, 8.5vw, 5.8rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
  animation: fadeInDown 0.8s 0.15s ease both;
}
.hero-title-accent {
  background: var(--gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  filter: drop-shadow(0 0 35px rgba(255, 0, 0, 0.65));
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--white-60);
  margin-bottom: 40px;
  line-height: 1.8;
  animation: fadeInDown 0.8s 0.3s ease both;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 55px;
  animation: fadeInDown 0.8s 0.45s ease both;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  animation: fadeInDown 0.8s 0.6s ease both;
}
.stat-item {
  text-align: center;
  padding: 0 32px;
}
.stat-number {
  display: block;
  font-family: var(--font-title);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
}
.stat-label {
  font-size: 0.78rem;
  color: var(--white-60);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--white-30);
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--white-30);
  animation: fadeIn 1.5s 1s ease both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--white-30), transparent);
  animation: scroll-pulse 2s ease infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* ========== INTERACTIVE MOD CATALOG SECTION ========== */
.catalog-section {
  background: var(--black-2);
  min-height: 800px;
}
.catalog-controls {
  max-width: 900px;
  margin: 0 auto 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* SEARCH BAR */
.search-bar-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.search-icon {
  position: absolute;
  left: 20px;
  font-size: 1.1rem;
  pointer-events: none;
  opacity: 0.6;
}
.mod-search-input {
  width: 100%;
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 16px 48px 16px 52px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.mod-search-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 25px rgba(255,0,0,0.3), 0 4px 20px rgba(0,0,0,0.5);
}
.mod-search-input::placeholder { color: var(--white-30); }
.search-clear-btn {
  position: absolute;
  right: 18px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white-80);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: var(--transition);
}
.search-clear-btn:hover { background: var(--red); color: var(--white); }

/* FILTER TABS */
.filter-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.filter-btn {
  background: var(--black-3);
  border: var(--border-subtle);
  color: var(--white-60);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.filter-btn:hover {
  border-color: rgba(255,0,0,0.5);
  color: var(--white);
}
.filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: var(--glow-red-sm);
}
.count-badge {
  background: rgba(0,0,0,0.4);
  color: var(--white-80);
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 20px;
  transition: background 0.2s;
}
.filter-btn.active .count-badge {
  background: rgba(255,255,255,0.25);
  color: var(--white);
}

/* CATALOG STATUS BAR */
.catalog-status {
  text-align: center;
  font-size: 0.88rem;
  color: var(--white-60);
  margin-bottom: 28px;
}
.catalog-status strong { color: var(--white); }

/* MODS GRID */
.mods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 30px;
}
/* ==================== 3D GAME CASE CARDS IN CATALOG ==================== */
.mod-card {
  background: var(--black-3);
  border: var(--border-subtle);
  border-radius: 20px;
  padding: 0;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mod-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none !important;
  z-index: 0;
}
.mod-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 0, 0, 0.55);
  box-shadow: 0 15px 35px rgba(0,0,0,0.6), 0 0 30px rgba(255, 0, 0, 0.22);
}
.mod-card:hover::before { opacity: 1; }
.mod-card.featured-mod {
  border-color: rgba(255, 0, 0, 0.5);
}

/* TOP DARK STAGE (ORIGINAL SLEEK COLORS) */
.mod-card-stage {
  position: relative;
  width: 100%;
  height: 235px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111116;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
}
.box-3d-scene {
  position: relative;
  width: 135px;
  height: 185px;
  perspective: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.box-3d {
  width: 125px;
  height: 175px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(-24deg) rotateX(6deg);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.4s;
}
.mod-card:hover .box-3d {
  transform: rotateY(-8deg) rotateX(2deg) translateY(-8px) scale(1.06);
  filter: drop-shadow(0 20px 25px rgba(0,0,0,0.85));
}
.box-front {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateZ(14px);
  box-shadow: inset 0 0 15px rgba(0,0,0,0.6), 0 10px 25px rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.25);
  background: #111;
}
.box-spine {
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 100%;
  transform-origin: left;
  transform: rotateY(-90deg) translateZ(0px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px 0 0 2px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
  background: #111116;
}
.spine-vert {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}
.spine-brand {
  font-family: var(--font-title);
  font-size: 0.65rem;
  font-weight: 900;
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}
.box-art-area {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 2px solid rgba(255, 0, 0, 0.45);
  background: #0d0d12;
}
.box-real-game-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}
.box-badge-pill {
  position: absolute;
  top: 6px;
  left: 6px;
  font-size: 0.52rem;
  font-weight: 900;
  padding: 2px 6px;
  background: rgba(0,0,0,0.8);
  color: #a7f3d0;
  border-radius: 4px;
  border: 1px solid rgba(16, 185, 129, 0.5);
  letter-spacing: 0.05em;
  z-index: 10;
}
.box-banner {
  padding: 8px 10px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  background: #16161f;
}
.box-brand-top {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2px;
}
.box-game-title {
  font-family: var(--font-title);
  font-size: 0.68rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin: 2px 0 4px 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
  letter-spacing: 0.02em;
}
.box-brand-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 0.52rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 4px;
  margin-top: 2px;
}
.box-floor-shadow {
  position: absolute;
  bottom: 8px;
  width: 100px;
  height: 18px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.75) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
  transition: transform 0.4s, opacity 0.4s;
}
.mod-card:hover .box-floor-shadow {
  transform: scale(1.15) translateY(4px);
  opacity: 0.5;
}

/* BADGES ON STAGE */
.mod-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  background: rgba(255, 0, 0, 0.35);
  color: #ff8080;
  border: 1px solid rgba(255, 0, 0, 0.5);
}
.badge-HOT { background: rgba(255, 0, 0, 0.35); color: #ff4d4d; border-color: var(--red); }
.badge-NEW { background: rgba(20,184,166,0.25); color: #5eead4; border-color: rgba(20,184,166,0.5); }
.badge-SUPREME { background: linear-gradient(135deg, #ff0000, #ff8000); color: var(--white); border: none; }
.badge-SALE { background: #10b981; color: var(--white); border: none; }
.badge-TOOL { background: rgba(124, 58, 237, 0.35); color: #c4b5fd; border-color: #7c3aed; }

/* LOWER INFO SECTION BELOW 3D STAGE */
.mod-card-info {
  padding: 20px 24px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.mod-card-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.mod-version-badge {
  font-size: 0.65rem;
  font-weight: 800;
  color: #ff3b3b;
  background: rgba(255, 0, 0, 0.12);
  border: 1px solid rgba(255, 0, 0, 0.35);
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.mod-card-category-pill {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--white-80);
  background: rgba(255, 255, 255, 0.07);
  padding: 4px 12px;
  border-radius: 50px;
  width: fit-content;
  border: 1px solid rgba(255,255,255,0.12);
}
.mod-card-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 6px 0;
  line-height: 1.25;
}
.mod-card-desc {
  font-size: 0.86rem;
  color: var(--white-60);
  line-height: 1.5;
  margin-bottom: 12px;
}
.mod-card-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 6px 0 12px;
}
.mod-spec-tag {
  background: #181820;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 5px 4px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #cbd5e1;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.03em;
}
.mod-spec-tag.spec-accent {
  background: rgba(255, 0, 0, 0.08);
  border-color: rgba(255, 0, 0, 0.25);
  color: #ff4d4d;
}
.mod-telemetry-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #111116;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 7px 10px;
  margin-bottom: 14px;
  font-size: 0.72rem;
  color: #94a3b8;
}
.telemetry-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}
.telemetry-icon {
  color: #ff3b3b;
  font-size: 0.85rem;
}
.mod-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: var(--border-subtle);
  padding-top: 14px;
  margin-top: auto;
  position: relative;
  z-index: 10;
}
.mod-access-btn {
  position: relative !important;
  z-index: 20 !important;
  cursor: pointer !important;
  pointer-events: auto !important;
}
.mod-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #10b981;
  font-weight: 600;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
}

/* EMPTY STATE */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  background: var(--black-3);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
}
.empty-icon { font-size: 3.5rem; margin-bottom: 16px; opacity: 0.5; }
.empty-state h3 { font-family: var(--font-title); font-size: 1.3rem; margin-bottom: 10px; }
.empty-state p { color: var(--white-60); margin-bottom: 24px; }

/* ========== VIP DISCORD PORTAL ========== */
.discord-section {
  position: relative;
  z-index: 2;
  padding: 50px 0;
  background: var(--black);
}
.discord-vip-card {
  position: relative;
  background: linear-gradient(135deg, #111116 0%, #1a1216 50%, #201115 100%);
  border: 1px solid rgba(255, 0, 0, 0.45);
  border-radius: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 0 50px rgba(255, 0, 0, 0.22), inset 0 0 30px rgba(255, 0, 0, 0.08);
  overflow: hidden;
}
.discord-glow-bg {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.35) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}
.discord-icon-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 0, 0, 0.2);
  border: 1px solid rgba(255, 0, 0, 0.5);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #ff8080;
  margin-bottom: 20px;
}
.discord-live-tag {
  color: #f59e0b;
  font-weight: 800;
  text-shadow: 0 0 12px rgba(245, 158, 11, 0.7);
  animation: pulse-dot 1.5s infinite;
}
.discord-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.discord-accent {
  background: linear-gradient(135deg, #ff0000 0%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.discord-subtitle {
  font-size: 1rem;
  color: var(--white-80);
  margin-bottom: 32px;
  line-height: 1.6;
}
.discord-perks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.discord-perk {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.perk-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  background: rgba(255, 0, 0, 0.15);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 0, 0, 0.35);
}
.discord-perk strong {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 4px;
}
.discord-perk p {
  font-size: 0.82rem;
  color: var(--white-60);
  margin: 0;
  line-height: 1.4;
}

/* INVITE BOX RIGHT */
.discord-invite-box {
  background: rgba(14, 15, 20, 0.85);
  border: 1px solid rgba(255, 0, 0, 0.45);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(20px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.discord-server-info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.discord-server-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  object-fit: contain;
  background: rgba(255, 0, 0, 0.15);
  padding: 6px;
  border: 1px solid rgba(255, 0, 0, 0.4);
}
.discord-server-info h4 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 6px 0;
}
.discord-status-pill {
  font-size: 0.78rem;
  color: #10b981;
  font-weight: 600;
}
.discord-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  width: 100%;
}
.discord-invite-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  font-size: 0.82rem;
  color: #ff8080;
  font-weight: 500;
}
.btn-discord {
  background: linear-gradient(135deg, #ff0000 0%, #b30000 100%);
  color: #ffffff !important;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-discord:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(255, 0, 0, 0.85);
}
.discord-footer-note {
  font-size: 0.75rem;
  color: var(--white-60);
  text-align: center;
}

@media (max-width: 1024px) {
  .discord-vip-card { grid-template-columns: 1fr; padding: 32px 24px; }
  .discord-perks-grid { grid-template-columns: 1fr; }
}

/* ========== PRICING ========== */
.pricing-section {
  background: var(--black);
  background-image: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
  align-items: stretch;
}
.pricing-card {
  background: var(--black-3);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.pricing-card.featured-pricing {
  border-color: var(--red);
  background: linear-gradient(145deg, #1a1a1f 0%, #210d10 100%);
  box-shadow: var(--glow-red), var(--shadow-card);
  transform: scale(1.02);
}
.pricing-card.featured-pricing:hover { transform: scale(1.02) translateY(-4px); }
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.7);
}
.pricing-tier {
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 16px;
}
.pricing-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 16px;
}
.price-currency {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white-60);
  padding-top: 8px;
}
.price-amount {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.price-period {
  font-family: var(--font-title);
  font-size: 1rem;
  color: var(--white-60);
  padding-top: 30px;
}
.pricing-desc {
  font-size: 0.875rem;
  color: var(--white-60);
  margin-bottom: 24px;
  line-height: 1.6;
  border-bottom: var(--border-subtle);
  padding-bottom: 24px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
}
.pricing-features li {
  font-size: 0.85rem;
  color: var(--white-80);
}
.pricing-features li.muted { color: var(--white-30); }

/* PRICING TRUST BAR (SECURE PAYMENTS, 24/7 SUPPORT, ACCEPTED PAYMENTS) */
.pricing-trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  background: var(--black-3);
  border: 1px solid rgba(255, 0, 0, 0.35);
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 0 35px rgba(255, 0, 0, 0.15);
  align-items: center;
}
.trust-bar-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.trust-icon {
  font-size: 1.8rem;
  background: rgba(255, 0, 0, 0.15);
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 0, 0, 0.4);
  flex-shrink: 0;
}
.trust-text h4 {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 4px 0;
  letter-spacing: 0.05em;
}
.trust-text p {
  font-size: 0.82rem;
  color: var(--white-60);
  margin: 0;
  line-height: 1.4;
}
.payment-methods-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.pay-pill {
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 0, 0, 0.2);
  border: 1px solid rgba(255, 0, 0, 0.45);
  padding: 3px 10px;
  border-radius: 6px;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}
@media (max-width: 900px) {
  .pricing-trust-bar {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ========== RESELLERS PROGRAM (JModzOnly) ========== */
.resellers-section {
  background: var(--black);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 0, 0, 0.15);
  border-bottom: 1px solid rgba(255, 0, 0, 0.15);
}
.reseller-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 55px;
}
.reseller-step-card {
  background: var(--black-3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px 26px;
  position: relative;
  transition: var(--transition);
}
.reseller-step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.step-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.07);
}
.step-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: inline-block;
}
.reseller-step-card h4 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.reseller-step-card p {
  font-size: 0.9rem;
  color: var(--white-60);
  line-height: 1.6;
  margin: 0;
}

/* RESELLER PRICING TIERS */
.reseller-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 50px;
  align-items: stretch;
}
.reseller-tier-card {
  background: var(--black-3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.reseller-tier-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}
.reseller-tier-card.featured-reseller {
  border-color: #ff4d4d;
  background: linear-gradient(145deg, #1a1515 0%, #1a0c0c 100%);
  box-shadow: 0 0 35px rgba(255, 77, 77, 0.25), 0 15px 40px rgba(0, 0, 0, 0.6);
  transform: scale(1.03);
}
.reseller-tier-card.featured-reseller:hover {
  transform: scale(1.03) translateY(-5px);
}
.reseller-tier-header {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #10b981;
  margin-bottom: 14px;
}
.reseller-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 6px;
}
.reseller-price .price-curr {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white-60);
  padding-top: 8px;
}
.reseller-price .price-val {
  font-family: var(--font-title);
  font-size: 3.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.reseller-tier-sub {
  font-size: 0.85rem;
  color: var(--white-60);
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 20px;
}
.reseller-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex-grow: 1;
}
.reseller-perks li {
  font-size: 0.88rem;
  color: var(--white-80);
}

/* AVAILABLE MODS INCLUDED FOR RESELLERS */
.reseller-mods-box {
  background: var(--black-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 34px 38px;
  margin-bottom: 35px;
}
.reseller-mods-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.reseller-mods-icon {
  font-size: 2.2rem;
  background: rgba(255, 0, 0, 0.15);
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 0, 0, 0.4);
}
.reseller-mods-title h4 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 4px 0;
}
.reseller-mods-title p {
  font-size: 0.88rem;
  color: var(--white-60);
  margin: 0;
}
.reseller-mods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.reseller-mod-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  transition: var(--transition);
}
.reseller-mod-tag:hover {
  border-color: #ff0000;
  background: rgba(255, 0, 0, 0.15);
  transform: translateY(-2px);
}

/* IMPORTANT RULE ALERT */
.reseller-rule-alert {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.5);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 40px;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.15);
}
.rule-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.rule-content h4 {
  font-family: var(--font-title);
  font-size: 0.98rem;
  font-weight: 800;
  color: #ff4d4d;
  margin: 0 0 6px 0;
  letter-spacing: 0.05em;
}
.rule-content p {
  font-size: 0.88rem;
  color: var(--white-80);
  margin: 0;
  line-height: 1.5;
}

/* RESELLER CTA BOX */
.reseller-cta-box {
  text-align: center;
  background: linear-gradient(135deg, #161216 0%, #1e1216 100%);
  border: 1px solid rgba(255, 0, 0, 0.35);
  border-radius: 24px;
  padding: 48px 24px;
}
.reseller-cta-box h3 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}
.reseller-cta-box p {
  font-size: 1rem;
  color: var(--white-60);
  max-width: 600px;
  margin: 0 auto 28px;
}

@media (max-width: 1024px) {
  .reseller-process-grid,
  .reseller-pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .reseller-tier-card.featured-reseller {
    transform: none;
  }
  .reseller-mods-box {
    padding: 24px;
  }
}

/* ========== ABOUT ========== */
.about-section {
  background: var(--black-2);
}
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
}
.about-glow-ring {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 2px solid rgba(255, 0, 0, 0.4);
  box-shadow: 0 0 60px rgba(255, 0, 0, 0.3), inset 0 0 60px rgba(255, 0, 0, 0.1);
  animation: pulse-ring 3s ease infinite;
}
@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.7; }
}
.about-avatar {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1a1f, #330005);
  border: 3px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow-red);
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 12px;
}
.about-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255, 0, 0, 0.5));
}
.about-badge-floating {
  position: absolute;
  background: var(--black-3);
  border: var(--border-red);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white-80);
  white-space: nowrap;
  z-index: 3;
}
.badge-float-1 { top: 60px; right: 0; animation: float-badge 4s ease infinite; }
.badge-float-2 { bottom: 80px; left: 0; animation: float-badge 4s ease 2s infinite; }
@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.about-content .section-tag { display: inline-block; }
.about-content .section-title { text-align: left; margin-bottom: 20px; }
.about-text { font-size: 0.95rem; color: var(--white-60); line-height: 1.8; margin-bottom: 16px; }
.about-text strong { color: var(--white); }
.about-highlights { display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
.highlight-item { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: var(--white-80); }
.highlight-icon { font-size: 1.2rem; }

/* ========== TESTIMONIALS ========== */
.testimonials-section { background: var(--black); }
.reviews-banner {
  background: linear-gradient(135deg, #16161c 0%, #290a0e 100%);
  border: 1px solid rgba(255, 0, 0, 0.45);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
  box-shadow: 0 0 35px rgba(255, 0, 0, 0.25);
}
.review-score-box {
  display: flex;
  align-items: center;
  gap: 16px;
}
.review-big-num {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.review-stars-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stars-gold {
  color: #fbbf24;
  font-size: 1.25rem;
  letter-spacing: 2px;
}
.stars-sub {
  font-size: 0.8rem;
  color: var(--white-60);
  font-weight: 500;
}
.review-banner-stat {
  text-align: center;
}
.review-stat-num {
  display: block;
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--red);
}
.review-stat-label {
  font-size: 0.82rem;
  color: var(--white-60);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.verified-badge {
  display: inline-block;
  font-size: 0.72rem;
  color: #10b981;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 1px 8px;
  border-radius: 50px;
  margin-left: 6px;
  font-weight: 600;
}
.testimonials-track-wrapper {
  overflow: hidden;
  margin-bottom: 32px;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  background: var(--black-3);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-width: calc(33.333% - 16px);
  flex-shrink: 0;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: rgba(255, 0, 0, 0.35); box-shadow: var(--shadow-card); }
.testimonial-stars { color: #fbbf24; font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.95rem;
  color: var(--white-80);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.9rem; }
.author-game { font-size: 0.8rem; color: var(--white-60); }

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.testimonial-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black-3);
  border: var(--border-subtle);
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-btn:hover { background: var(--red); border-color: var(--red); }
.testimonial-dots { display: flex; gap: 8px; }
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white-30);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active { background: var(--red); width: 24px; border-radius: 4px; }

/* ========== FAQ ========== */
.faq-section { background: var(--black-2); }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--black-3);
  border: var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(255, 0, 0, 0.4); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--red-light); }
.faq-icon {
  font-size: 1.4rem;
  color: var(--red);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--white-60);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 200px; }

/* ========== NEWSLETTER ========== */
.newsletter-section { background: var(--black); }
.newsletter-box {
  background: linear-gradient(135deg, #1a1a1f 0%, #210d10 100%);
  border: var(--border-red);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  box-shadow: var(--glow-red), var(--shadow-card);
}
.newsletter-icon { font-size: 2.5rem; display: block; margin-bottom: 16px; }
.newsletter-title { font-family: var(--font-title); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; margin-bottom: 12px; }
.newsletter-desc { color: var(--white-60); font-size: 0.95rem; margin-bottom: 32px; }
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 16px;
}
.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: var(--border-subtle);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 18px;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-input::placeholder { color: var(--white-30); }
.newsletter-input:focus { border-color: rgba(255, 0, 0, 0.6); }
.newsletter-disclaimer { font-size: 0.8rem; color: var(--white-30); }

/* ========== CONTACT ========== */
.contact-section { background: var(--black-2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  background: var(--black-3);
  border: var(--border-subtle);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}
.contact-card:hover { border-color: rgba(255, 0, 0, 0.35); transform: translateX(4px); }
.contact-icon { font-size: 1.5rem; margin-bottom: 10px; display: block; }
.contact-card h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; }
.contact-card p { font-size: 0.85rem; color: var(--white-60); margin-bottom: 10px; line-height: 1.5; }
.contact-link { font-size: 0.85rem; color: var(--red-light); font-weight: 600; transition: color 0.2s; }
.contact-link:hover { color: var(--red); }

.contact-form {
  background: var(--black-3);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white-80);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: var(--border-subtle);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group select option { background: var(--black-3); color: var(--white); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--white-30); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(255, 0, 0, 0.6); }
.form-group textarea { resize: vertical; }

/* ========== FOOTER ========== */
.footer {
  background: var(--black-2);
  border-top: var(--border-subtle);
  padding: 60px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 12px;
}
.footer-logo-img {
  height: 76px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(255, 0, 0, 0.55));
}
.footer-tagline { font-size: 0.875rem; color: var(--white-60); margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.social-link {
  width: 40px;
  height: 40px;
  background: var(--black-3);
  border: var(--border-subtle);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.social-link:hover { background: rgba(255, 0, 0, 0.2); border-color: rgba(255, 0, 0, 0.4); transform: translateY(-2px); }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col h4 {
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--white-60);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: var(--border-subtle);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--white-30); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: var(--white-30); transition: color 0.2s; }
.footer-legal a:hover { color: var(--white-60); }

/* ========== ANIMATIONS ========== */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ========== INSTANT PLAN SELECTOR MODAL POPUP ========== */
.plan-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.plan-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.plan-modal-card {
  position: relative;
  background: linear-gradient(145deg, #160d10 0%, #251217 100%);
  border: 1px solid rgba(255, 0, 0, 0.4);
  border-radius: var(--radius-xl);
  padding: 32px;
  width: 100%;
  max-width: 540px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.9), 0 0 40px rgba(255,0,0,0.15);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}
.plan-modal-overlay.active .plan-modal-card {
  transform: translateY(0) scale(1);
}
.plan-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.plan-modal-close:hover {
  background: rgba(255, 0, 0, 0.2);
  transform: rotate(90deg);
}
.plan-modal-header {
  text-align: center;
  margin-bottom: 24px;
}
.plan-modal-tag {
  display: inline-block;
  background: rgba(255, 0, 0, 0.15);
  color: #ff4d4d;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.plan-modal-title {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 6px 0;
  color: var(--white);
}
.plan-modal-subtitle {
  font-size: 0.85rem;
  color: var(--white-80);
  margin: 0;
  line-height: 1.4;
}
.plan-modal-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plan-option-card {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--white);
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
.plan-option-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 0, 0, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.1);
}
.plan-option-icon {
  font-size: 1.8rem;
  margin-right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}
.plan-option-info {
  flex: 1;
}
.plan-option-info h4 {
  margin: 0 0 4px 0;
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}
.plan-option-info p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--white-80);
}
.plan-option-cta {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ff4d4d;
  background: rgba(255, 0, 0, 0.1);
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.2s;
}
.plan-option-card:hover .plan-option-cta {
  background: rgba(255, 0, 0, 0.8);
  color: #fff;
}
.popular-plan-option {
  border-color: rgba(255, 0, 0, 0.3);
  background: linear-gradient(90deg, rgba(255,0,0,0.05) 0%, rgba(255,0,0,0.01) 100%);
}
.plan-popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #ff0000;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 2px 8px;
  border-bottom-left-radius: 8px;
}
.lifetime-plan-option {
  border-color: rgba(255, 204, 0, 0.3);
}
.lifetime-plan-option .plan-option-cta {
  color: #ffcc00;
  background: rgba(255, 204, 0, 0.1);
}
.lifetime-plan-option:hover {
  border-color: rgba(255, 204, 0, 0.6);
  box-shadow: 0 8px 24px rgba(255, 204, 0, 0.1);
}
.lifetime-plan-option:hover .plan-option-cta {
  background: rgba(255, 204, 0, 0.8);
  color: #fff;
}
.plan-modal-footer {
  margin-top: 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
}
.modal-trust-note {
  font-size: 0.7rem;
  color: var(--white-60);
}


/* ========== WELCOME PROMO & TERMS MODAL ========== */
.welcome-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(14px);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.welcome-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.welcome-modal-card {
  position: relative;
  background: linear-gradient(150deg, #130a0d 0%, #200d12 100%);
  border: 1px solid rgba(255, 0, 0, 0.55);
  border-radius: var(--radius-xl);
  padding: 34px 30px;
  width: 100%;
  max-width: 580px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.95), 0 0 50px rgba(255, 0, 0, 0.3);
  transform: translateY(25px) scale(0.95);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
  max-height: 88vh;
  overflow-y: auto;
  color: var(--white);
}
.welcome-modal-overlay.active .welcome-modal-card {
  transform: translateY(0) scale(1);
}
.welcome-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.welcome-modal-close:hover {
  background: rgba(255, 0, 0, 0.25);
  border-color: rgba(255, 0, 0, 0.6);
  transform: rotate(90deg);
}
.welcome-modal-header {
  text-align: center;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 14px;
}
.welcome-modal-title {
  font-family: var(--font-title);
  font-size: clamp(1.1rem, 3.5vw, 1.35rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.4;
  margin: 0;
  text-shadow: 0 2px 10px rgba(255, 0, 0, 0.4);
}
.welcome-modal-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--white-80);
  margin-bottom: 24px;
}
.welcome-modal-body p {
  margin: 0;
}
.promo-highlight-box {
  background: rgba(255, 0, 0, 0.08);
  border: 1px solid rgba(255, 0, 0, 0.4);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 6px 0;
}
.promo-highlight-box h4 {
  color: #ff4d4d;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 10px 0;
}
.promo-highlight-box ul {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.promo-highlight-box li {
  font-size: 0.83rem;
  color: var(--white);
  line-height: 1.45;
}
.claim-instructions {
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid #ff0000;
  padding: 12px 14px;
  border-radius: 0 8px 8px 0;
  font-size: 0.84rem;
  color: #ffffff;
  line-height: 1.4;
}
.welcome-modal-footer {
  text-align: center;
}
.welcome-accept-btn {
  width: 100%;
  padding: 14px 24px !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #ff0000 0%, #b30000 100%) !important;
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5) !important;
  border-radius: 10px !important;
  cursor: pointer;
  transition: all 0.2s ease !important;
}
.welcome-accept-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.7) !important;
}
@media (max-width: 480px) {
  .welcome-modal-card {
    padding: 24px 16px;
  }
  .welcome-modal-title {
    font-size: 1rem;
  }
  .welcome-modal-body {
    font-size: 0.82rem;
  }
  .promo-highlight-box {
    padding: 14px 12px;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .about-container { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { height: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .testimonial-card { min-width: calc(50% - 12px); }
}

@media (max-width: 768px) {
  .section { padding: 50px 0; }
  .container, .header-container {
    width: 100% !important;
    max-width: 100vw !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
  }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(8,8,10,0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 20px;
    border-bottom: var(--border-subtle);
  }
  .hero-container-wide {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 100vw !important;
    padding: 30px 14px 20px !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }
  .hero-logo-img {
    max-height: 270px !important;
    width: 100% !important;
    max-width: 88vw !important;
    object-fit: contain;
    margin: 0 auto;
  }
  .hero-title {
    font-size: clamp(1.8rem, 7.5vw, 2.5rem) !important;
    line-height: 1.15 !important;
  }
  .hero-subtitle {
    font-size: 0.95rem !important;
    padding: 0 8px;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    padding: 0 6px;
  }
  .hero-cta-group .btn {
    width: 100%;
    max-width: 100%;
    text-align: center;
    justify-content: center;
  }
  .hero-stats {
    flex-direction: column;
    gap: 18px;
    width: 100%;
  }
  .stat-divider { width: 40px; height: 1px; }
  .stat-item {
    padding: 10px 0 !important;
    width: 100%;
  }
  .filter-tabs {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 0 4px;
  }
  .filter-btn {
    font-size: 0.78rem !important;
    padding: 8px 14px !important;
  }
  .search-input {
    font-size: 0.9rem !important;
    padding: 12px 16px 12px 40px !important;
  }
  .mods-grid,
  .pricing-grid,
  .pricing-trust-bar,
  .reseller-process-grid,
  .reseller-pricing-grid,
  .stats-grid,
  .features-grid,
  .reviews-grid,
  .discord-vip-card,
  .discord-perks-grid,
  .discord-invite-perks {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .discord-vip-card {
    padding: 20px 12px !important;
    overflow: hidden !important;
    gap: 20px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .discord-icon-badge {
    max-width: 100% !important;
    white-space: normal !important;
    flex-wrap: wrap !important;
    text-align: center !important;
    line-height: 1.3 !important;
    padding: 8px 10px !important;
    box-sizing: border-box !important;
  }
  .discord-title {
    font-size: clamp(1.5rem, 6.8vw, 2.1rem) !important;
    line-height: 1.15 !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .discord-subtitle {
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
    word-wrap: break-word;
  }
  .discord-invite-box {
    width: 100% !important;
    max-width: 100% !important;
    padding: 18px 10px !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    overflow: hidden !important;
  }
  .discord-server-info {
    flex-direction: column !important;
    text-align: center !important;
    width: 100% !important;
    gap: 10px !important;
  }
  .btn-discord {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 10px !important;
    font-size: 0.82rem !important;
    white-space: normal !important;
    flex-wrap: wrap !important;
    text-align: center !important;
    line-height: 1.3 !important;
    box-sizing: border-box !important;
  }
  .btn-discord span {
    white-space: normal !important;
    word-wrap: break-word !important;
    max-width: 100% !important;
  }
  .mod-card,
  .pricing-card,
  .reseller-tier-card,
  .panel-box,
  .testimonial-card,
  .trust-bar-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .pricing-card.featured-pricing { transform: none; }
  .testimonial-card { min-width: 100% !important; }
  .newsletter-form { flex-direction: column; }
  .footer-links { grid-template-columns: 1fr !important; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; align-items: center; }
  .footer-links { grid-template-columns: 1fr !important; }
  .contact-form { padding: 20px; }
  .newsletter-box { padding: 28px 16px; }
  .pricing-trust-bar { padding: 20px 14px !important; }
  .reseller-rule-alert { flex-direction: column; gap: 12px; padding: 18px; }
}

.reseller-red-tag { color: #ff4d4d !important; border: 1px solid rgba(255, 77, 77, 0.4) !important; background: rgba(255, 77, 77, 0.1) !important; }
.reseller-mods-icon { color: #ff4d4d; }
