/* ===== CUSTOM PROPERTIES ===== */
:root {
  --black: #0a0a0a;
  --black-mid: #111111;
  --black-light: #1a1a1a;
  --dark-gray: #252525;
  --mid-gray: #3a3a3a;
  --light-gray: #888888;
  --ash: #c5c5c5;
  --white: #f0ece4;
  --white-pure: #ffffff;

  /* Accents */
  --red: #c0392b;
  --red-dark: #8b1a10;
  --red-glow: rgba(192, 57, 43, 0.35);
  --amber: #c87941;
  --amber-dim: rgba(200, 121, 65, 0.15);

  /* Typography */
  --font-display: 'Bebas Neue', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
  --font-body: 'Rajdhani', sans-serif;

  /* Spacing */
  --section-pad: 100px;
  --container: 1180px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== NOISE OVERLAY ===== */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 3px;
}

/* ===== CONTAINER ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SECTIONS ===== */
.section {
  padding: var(--section-pad) 0;
}

.section-dark {
  background-color: var(--black-mid);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--red);
  letter-spacing: 0.2em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1;
}

.highlight {
  color: var(--red);
  position: relative;
}

.section-desc {
  text-align: center;
  max-width: 640px;
  margin: -32px auto 48px;
  color: var(--light-gray);
  font-size: 1.1rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--red);
  color: var(--white-pure);
  box-shadow: 0 0 30px var(--red-glow), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  background: #d44030;
  box-shadow: 0 0 50px rgba(192, 57, 43, 0.6);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(240, 236, 228, 0.25);
}

.btn-secondary:hover {
  border-color: var(--white);
  box-shadow: 0 0 20px rgba(240, 236, 228, 0.1);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--red);
  border: 1px solid var(--red);
  font-size: 0.95rem;
  padding: 10px 28px;
}

.btn-outline:hover {
  background: var(--red);
  color: var(--white-pure);
}

.btn-discord {
  background: #5865F2;
  color: var(--white-pure);
  box-shadow: 0 0 30px rgba(88, 101, 242, 0.3);
}

.btn-discord:hover {
  background: #6d7af3;
  box-shadow: 0 0 50px rgba(88, 101, 242, 0.5);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 42px;
  font-size: 1.2rem;
}

.btn-icon {
  font-size: 0.7em;
}

.discord-icon,
.steam-icon {
  width: 20px;
  height: 20px;
}

/* ===== NAVIGATION ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.4s ease;
}

#navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(192, 57, 43, 0.25);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: invert(1);
  mix-blend-mode: screen;
  transition: transform 0.3s;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  color: var(--white);
  line-height: 1;
  transition: color 0.3s;
}

.nav-logo:hover .logo-img {
  transform: scale(1.08);
}

.nav-logo:hover .logo-text {
  color: var(--red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  color: var(--ash);
  transition: color 0.2s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-link:hover {
  color: var(--white);
}

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

.nav-cta {
  background: var(--red);
  color: var(--white-pure) !important;
  padding: 8px 20px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: #d44030;
  box-shadow: 0 0 20px var(--red-glow);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
  width: 38px;
  height: 38px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  transform-origin: center;
}


/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(192, 57, 43, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%),
    url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?w=1920&q=80') center/cover no-repeat;
  filter: grayscale(85%) contrast(1.2);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.85) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.8) 100%);
}

.scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.03) 2px,
      rgba(0, 0, 0, 0.03) 4px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--red);
  border: 1px solid rgba(192, 57, 43, 0.4);
  padding: 6px 16px;
  margin-bottom: 32px;
  position: relative;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 var(--red-glow);
  }

  50% {
    opacity: 0.4;
    box-shadow: 0 0 0 6px transparent;
  }
}

.hero-logo-x {
  display: block;
  width: min(280px, 40vw);
  margin: 0 auto 8px;
  filter: invert(1);
  mix-blend-mode: screen;
  opacity: 0.95;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

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

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 12vw, 11rem);
  letter-spacing: clamp(0.08em, 2.5vw, 0.3em);
  padding-left: clamp(0.08em, 2.5vw, 0.3em);
  line-height: 0.85;
  color: var(--white);
  text-shadow:
    0 0 80px rgba(192, 57, 43, 0.3),
    0 2px 4px rgba(0, 0, 0, 0.8);
  margin-bottom: 20px;
  word-break: break-word;
  max-width: 100%;
}

.hero-subtitle {
  font-family: var(--font-mono);
  font-size: clamp(0.75rem, 2.5vw, 1.05rem);
  color: var(--ash);
  letter-spacing: 0.08em;
  line-height: 1.8;
  margin-bottom: 40px;
  text-transform: uppercase;
  max-width: 100%;
  word-break: break-word;
}


.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 32px;
  margin-bottom: 48px;
  backdrop-filter: blur(8px);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--white);
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: var(--light-gray);
  text-transform: uppercase;
}

.stat-sep {
  color: rgba(255, 255, 255, 0.15);
  font-size: 1.5rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: relative;
  margin: 48px auto 0;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: fadeInScroll 2s 1.5s both;
}

.scroll-indicator span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--light-gray);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--light-gray), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
  }
}

@keyframes fadeInScroll {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== TICKER ===== */
.ticker-wrap {
  background: var(--red);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.ticker-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

.ticker-track span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

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

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .lead-text {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-text p {
  color: var(--ash);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid rgba(192, 57, 43, 0.4);
  color: var(--red);
  background: rgba(192, 57, 43, 0.05);
  transition: var(--transition);
}

.tag:hover {
  background: var(--red);
  color: var(--white-pure);
}

.about-image {
  position: relative;
}

.img-frame {
  position: relative;
  border: 1px solid rgba(192, 57, 43, 0.4);
  background: var(--black-light);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6);
  border-radius: 4px;
}

.about-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
}

.img-frame:hover .about-banner-img {
  transform: scale(1.03);
}

.img-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
  z-index: 2;
}

.placeholder-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.placeholder-icon {
  font-size: 3rem;
  opacity: 0.6;
}

.placeholder-content span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  color: var(--ash);
}

.placeholder-sub {
  font-family: var(--font-mono);
  font-size: 0.7rem !important;
  letter-spacing: 0.2em;
  color: var(--light-gray) !important;
}

/* Frame corners */
.frame-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--red);
  border-style: solid;
}

.frame-corner.tl {
  top: -2px;
  left: -2px;
  border-width: 2px 0 0 2px;
}

.frame-corner.tr {
  top: -2px;
  right: -2px;
  border-width: 2px 2px 0 0;
}

.frame-corner.bl {
  bottom: -2px;
  left: -2px;
  border-width: 0 0 2px 2px;
}

.frame-corner.br {
  bottom: -2px;
  right: -2px;
  border-width: 0 2px 2px 0;
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.feature-card {
  background: var(--black-light);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
  border: 1px solid transparent;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--red);
  transition: height 0.4s ease;
}

.feature-card:hover {
  background: var(--dark-gray);
  border-color: rgba(192, 57, 43, 0.2);
  transform: translateY(-4px);
}

.feature-card:hover::before {
  height: 100%;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  filter: grayscale(1);
  transition: filter 0.3s;
}

.feature-card:hover .feature-icon {
  filter: grayscale(0);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--light-gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== STATUS BAR ===== */
.status-section,
.status-bar {
  padding: 30px 0;
  background: var(--black-light);
  border-top: 1px solid rgba(192, 57, 43, 0.3);
  border-bottom: 1px solid rgba(192, 57, 43, 0.3);
  position: relative;
  z-index: 5;
}

.status-box,
.status-grid {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.status-card {
  flex: 1;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s;
}

.status-card:last-child {
  border-right: none;
}

.status-card:hover {
  background: rgba(192, 57, 43, 0.08);
}

.status-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-indicator.online {
  background: #27ae60;
  box-shadow: 0 0 12px rgba(39, 174, 96, 0.8);
  animation: pulse 2s infinite;
}

.status-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.status-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--light-gray);
  text-transform: uppercase;
}

.status-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: color 0.3s ease, transform 0.2s ease;
}

.stat-pulse-up {
  color: #2ecc71 !important;
  transform: scale(1.08);
}

.stat-pulse-down {
  color: #e74c3c !important;
  transform: scale(0.96);
}

.ip-text,
.ip-copy {
  cursor: pointer;
  transition: color 0.2s;
}

.ip-text:hover,
.ip-copy:hover {
  color: var(--red);
}

/* ===== RULES ===== */
.rules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 48px;
}

.rule-block {
  background: var(--black-light);
  padding: 40px 36px;
  border: 1px solid transparent;
  transition: border-color 0.3s;
}

.rule-block:hover {
  border-color: rgba(192, 57, 43, 0.2);
}

.rule-category {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.rule-num {
  font-family: var(--font-mono);
  color: var(--red);
  font-size: 1rem;
}

.rule-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rule-list li {
  color: var(--ash);
  font-size: 0.95rem;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.rule-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 0.7rem;
  top: 4px;
}

.rules-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 36px;
  background: var(--black-light);
  border: 1px solid rgba(192, 57, 43, 0.15);
  flex-wrap: wrap;
}

.rules-footer p {
  color: var(--light-gray);
  font-size: 0.9rem;
  flex: 1;
  min-width: 200px;
}

/* ===== MODS ===== */
.mods-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 32px;
}

.mod-category {
  background: var(--black-light);
  padding: 32px 28px;
  border: 1px solid transparent;
  transition: border-color 0.3s;
}

.mod-category:hover {
  border-color: rgba(192, 57, 43, 0.2);
}

.mod-cat-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mod-cat-icon {
  font-size: 1.2rem;
}

.mod-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mod-item {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ash);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s;
}

.mod-item:hover {
  color: var(--white);
}

.mod-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.mod-dot.large {
  width: 8px;
  height: 8px;
}

.mods-note {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: var(--black-light);
  border-left: 3px solid var(--red);
}

.mods-note p {
  color: var(--ash);
  font-size: 0.92rem;
}

.mods-note strong {
  color: var(--white);
}

/* ===== TEAM ===== */
.team-group {
  margin-bottom: 48px;
}

.team-group-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.15em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.team-group-icon {
  width: 20px;
  height: 20px;
  color: var(--red);
}

.team-group-icon.icon-admin {
  color: #e67e22;
}

.team-group-icon.icon-soporte {
  color: #3498db;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.team-grid .team-card {
  flex: 1 1 280px;
  max-width: 360px;
}

.team-grid-centered {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.team-grid-centered .team-card {
  flex: 1 1 280px;
  max-width: 360px;
}

.team-card {
  background: var(--black-light);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.team-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--red), transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.team-card.card-admin::after {
  background: linear-gradient(to right, transparent, #e67e22, transparent);
}

.team-card.card-soporte::after {
  background: linear-gradient(to right, transparent, #3498db, transparent);
}

.team-card:hover::after {
  transform: scaleX(1);
}

.team-card:hover {
  background: var(--dark-gray);
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
}

.team-avatar {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.team-avatar-img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--red);
  display: block;
  margin: 0 auto;
  box-shadow: 0 0 20px var(--red-glow);
  transition: transform 0.3s;
}

.team-avatar-img.avatar-admin {
  border-color: #e67e22;
  box-shadow: 0 0 20px rgba(230, 126, 34, 0.3);
}

.team-avatar-img.avatar-soporte {
  border-color: #2980b9;
  box-shadow: 0 0 20px rgba(41, 128, 185, 0.3);
}

.team-avatar-placeholder {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: transform 0.3s;
}

.team-avatar-placeholder.placeholder-fundador {
  background: rgba(231, 76, 60, 0.1);
  border: 2px solid var(--red);
  box-shadow: 0 0 20px var(--red-glow);
}

.team-avatar-placeholder.placeholder-admin {
  background: rgba(230, 126, 34, 0.1);
  border: 2px solid #e67e22;
  box-shadow: 0 0 20px rgba(230, 126, 34, 0.3);
}

.team-avatar-placeholder.placeholder-soporte {
  background: rgba(52, 152, 219, 0.1);
  border: 2px solid #3498db;
  box-shadow: 0 0 20px rgba(52, 152, 219, 0.3);
}

.avatar-placeholder-icon {
  width: 44px;
  height: 44px;
}

.avatar-placeholder-icon.icon-fundador {
  color: var(--red);
}

.avatar-placeholder-icon.icon-admin {
  color: #e67e22;
}

.avatar-placeholder-icon.icon-soporte {
  color: #3498db;
}

.team-card:hover .team-avatar-img,
.team-card:hover .team-avatar-placeholder {
  transform: scale(1.06);
}

.team-role-badge {
  position: absolute;
  bottom: -4px;
  right: -4px;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  padding: 3px 7px;
  border-radius: 2px;
}

.team-role-badge.admin {
  background: var(--red);
  color: white;
}

.team-role-badge.role-badge-admin {
  background: #e67e22;
  color: white;
}

.team-role-badge.role-badge-soporte {
  background: #2980b9;
  color: white;
}

.team-role-badge.mod {
  background: #2980b9;
  color: white;
}

.team-role-badge.dev {
  background: #27ae60;
  color: white;
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 0;
}

.team-role-text {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.team-role-text.role-text-admin {
  color: #e67e22;
}

.team-role-text.role-text-soporte {
  color: #3498db;
}

.team-desc {
  color: var(--light-gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

.team-note {
  text-align: center;
  color: var(--light-gray);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  margin-top: 20px;
}

/* ===== JOIN / CTA ===== */
.join {
  position: relative;
  overflow: hidden;
}

.join-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(192, 57, 43, 0.12) 0%, transparent 70%),
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('https://images.unsplash.com/photo-1628191081676-d2aad42fd498?w=1920&q=70') center/cover;
  filter: grayscale(80%);
}

.join-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 20%, rgba(0, 0, 0, 0.7) 100%);
}

.join-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.join-logo-wrap {
  margin-bottom: 8px;
}

.join-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid rgba(192, 57, 43, 0.5);
  box-shadow: 0 0 40px var(--red-glow);
}

.join-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 0.05em;
  line-height: 1.1;
}

/* ===== VOTE SECTION ===== */
.highlight-vote {
  color: #f1c40f !important;
}

.vote-card {
  background: var(--black-light);
  border: 1px solid rgba(241, 196, 15, 0.25);
  padding: 40px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(241, 196, 15, 0.03);
}

.vote-card-header {
  text-align: center;
  margin-bottom: 32px;
}

.vote-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  background: #f1c40f;
  color: #000;
  padding: 4px 14px;
  font-weight: bold;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.vote-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.vote-subtitle {
  color: var(--ash);
  font-size: 0.95rem;
  max-width: 680px;
  margin: 0 auto;
}

.vote-rewards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.reward-box {
  background: var(--dark-gray);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.reward-box:hover {
  transform: translateY(-4px);
}

.reward-box.gold {
  border-color: rgba(241, 196, 15, 0.4);
}

.reward-box.gold:hover {
  border-color: #f1c40f;
  box-shadow: 0 10px 30px rgba(241, 196, 15, 0.15);
}

.reward-box.silver {
  border-color: rgba(230, 126, 34, 0.4);
}

.reward-box.silver:hover {
  border-color: #e67e22;
  box-shadow: 0 10px 30px rgba(230, 126, 34, 0.15);
}

.reward-badge {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: #f1c40f;
  margin-bottom: 8px;
}

.reward-box h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 6px;
}

.reward-prize {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--red);
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.reward-box p {
  font-size: 0.88rem;
  color: var(--light-gray);
  line-height: 1.5;
}

.vote-info-bar {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 16px 24px;
  margin-bottom: 32px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--light-gray);
}

.info-icon {
  font-size: 1.2rem;
}

.vote-action-wrap {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.vote-btn-pulse {
  animation: votePulse 2.5s infinite;
}

@keyframes votePulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.6);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(192, 57, 43, 0);
  }
}

.join-desc {
  max-width: 580px;
  color: var(--ash);
  font-size: 1.1rem;
  line-height: 1.7;
}

.join-steps {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 32px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  width: 100%;
  max-width: 900px;
}

.step {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 160px;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--red);
  line-height: 1;
  flex-shrink: 0;
}

.step-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.step-text strong {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--white);
}

.step-text span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--light-gray);
  letter-spacing: 0.05em;
}

.step-arrow {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.join-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand .footer-logo {
  height: 40px;
  width: auto;
  filter: invert(1);
  mix-blend-mode: screen;
  opacity: 0.9;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.15em;
  color: var(--white);
  line-height: 1;
}

.footer-brand p {
  color: var(--light-gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-links h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--light-gray);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-social h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.social-row {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 44px;
  height: 44px;
  background: var(--dark-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 1px solid transparent;
}

.social-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--light-gray);
  transition: fill 0.2s;
}

.social-btn:hover {
  background: var(--red);
  border-color: var(--red);
}

.social-btn#footer-discord:hover {
  background: #5865F2;
  border-color: #5865F2;
}

.social-btn#footer-instagram:hover {
  background: #e1306c;
  border-color: #e1306c;
}

.social-btn#footer-tiktok:hover {
  background: #000000;
  border-color: #fe2c55;
  box-shadow: 0 0 15px rgba(254, 44, 85, 0.4);
}

.social-btn#footer-twitter:hover {
  background: #1da1f2;
  border-color: #1da1f2;
}

.social-btn:hover svg {
  fill: var(--white-pure);
}

/* ===== LUCIDE ICON STYLES ===== */
.lucide-icon {
  display: inline-block;
  vertical-align: middle;
}

/* Feature card icons */
.feature-icon .lucide-icon {
  width: 36px;
  height: 36px;
  stroke: var(--red);
  stroke-width: 1.5;
  fill: none;
}

/* Mod card icons */
.mod-icon .lucide-icon {
  width: 30px;
  height: 30px;
  stroke: var(--red);
  stroke-width: 1.5;
  fill: none;
}

/* Store section heading icons — match h3 size */
.icon-store-header {
  width: 20px;
  height: 20px;
  stroke: var(--red);
  stroke-width: 2;
  fill: none;
  vertical-align: -3px;
  margin-right: 5px;
}

/* Inline button icon (PayPal button) */
.icon-btn-icon {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  vertical-align: -2px;
  margin-right: 6px;
}

/* Inline warning (rules footer, paypal note) */
.icon-inline-warn {
  width: 14px;
  height: 14px;
  stroke: #e67e22;
  fill: none;
  vertical-align: -2px;
  margin-right: 4px;
}

/* Nav & vote badge star (filled gold) */
.icon-star-gold {
  width: 13px;
  height: 13px;
  stroke: #f1c40f;
  fill: #f1c40f;
  vertical-align: -2px;
  margin-left: 3px;
}

/* Ticker warning triangle */
.svg-ticker-warn {
  width: 11px;
  height: 11px;
  stroke: #f1c40f;
  fill: none;
  vertical-align: -1px;
  margin-right: 3px;
}

/* Platform req icons */
.icon-twitch {
  width: 22px;
  height: 22px;
  stroke: #a970ff;
  fill: none;
}

.icon-youtube {
  width: 22px;
  height: 22px;
  stroke: #ff3333;
  fill: none;
}

.icon-film {
  width: 22px;
  height: 22px;
  stroke: #e67e22;
  fill: none;
}

/* Crown */
.icon-crown {
  width: 16px;
  height: 16px;
  stroke: #f1c40f;
  fill: none;
  vertical-align: -3px;
  margin-right: 4px;
}

/* Gift */
.icon-gift {
  width: 16px;
  height: 16px;
  stroke: #e67e22;
  fill: none;
  vertical-align: -3px;
  margin-right: 4px;
}

/* Vote info bar icons */
.icon-info {
  width: 20px;
  height: 20px;
  stroke: var(--red);
  fill: none;
  flex-shrink: 0;
}

/* Vote button star (filled gold) */
.icon-vote-btn-star {
  width: 15px;
  height: 15px;
  stroke: #f1c40f;
  fill: #f1c40f;
  vertical-align: -2px;
  margin-right: 7px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
}

.footer-credit {
  font-size: 0.72rem !important;
  color: rgba(255, 255, 255, 0.6) !important;
  margin-top: 2px;
}

.footer-credit a {
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s, text-shadow 0.2s;
}

.footer-credit a:hover {
  color: var(--white);
  text-shadow: 0 0 8px rgba(192, 57, 43, 0.6);
}

/* ===== GLITCH EFFECT ===== */
.glitch-badge {
  animation: glitch 8s infinite;
}

@keyframes glitch {

  0%,
  93%,
  96%,
  100% {
    text-shadow: none;
    transform: none;
  }

  94% {
    text-shadow: -2px 0 var(--red);
    transform: skewX(-2deg);
  }

  95% {
    text-shadow: 2px 0 #5865F2;
    transform: skewX(2deg);
  }
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE NAV OPEN STYLES ===== */
body.nav-mobile-open {
  overflow: hidden !important;
}

.nav-mobile-open #navbar {
  background: rgba(10, 10, 10, 0.98) !important;
  backdrop-filter: blur(16px);
  z-index: 10000;
}

.nav-mobile-open .nav-links {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  padding: 85px 20px 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-mobile-open .nav-link {
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  padding: 8px 16px;
  width: 100%;
  text-align: center;
}

.nav-mobile-open .nav-cta {
  font-size: 1rem;
  padding: 10px 28px;
  margin-top: 6px;
  width: auto;
}

.nav-mobile-open .hamburger {
  position: relative;
  z-index: 10001;
}

.nav-mobile-open .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--red);
}

.nav-mobile-open .hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-mobile-open .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--red);
}



/* ===== MOD LINK CARDS ===== */
.mods-grid-horizontal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
  width: 100%;
}

.mod-link-card {
  background: var(--black-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: var(--transition);
}

.mod-link-card:hover {
  background: var(--dark-gray);
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(192, 57, 43, 0.15);
}

.mod-icon {
  font-size: 2rem;
  margin-bottom: 4px;
}

.mod-link-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  background: var(--red);
  color: white;
  text-transform: uppercase;
}

.mod-link-badge.visual {
  background: #8e44ad;
}

.mod-link-badge.core {
  background: #2980b9;
}

.mod-link-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

.mod-link-card p {
  font-size: 0.9rem;
  color: var(--light-gray);
  line-height: 1.5;
  flex: 1;
}

.mod-link-btn {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--red);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 10px;
}

/* ===== STORE SECTION ===== */
.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.store-card {
  background: var(--black-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.store-card.featured {
  border-color: var(--red);
  background: radial-gradient(ellipse at top, rgba(192, 57, 43, 0.1) 0%, var(--black-light) 70%);
  box-shadow: 0 0 40px rgba(192, 57, 43, 0.15);
}

.store-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--red);
  color: white;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  padding: 4px 14px;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

.store-header {
  margin-bottom: 20px;
}

.store-header h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

.store-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--red);
  line-height: 1;
  margin-top: 8px;
}

.store-price span {
  font-size: 1rem;
  color: var(--light-gray);
  font-family: var(--font-mono);
}

.store-price.free {
  color: #27ae60;
}

.store-desc {
  color: var(--ash);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.store-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}

.store-features li {
  font-size: 0.92rem;
  color: var(--ash);
  padding-left: 24px;
  position: relative;
}

.store-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: bold;
}

.btn-block {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.store-paypal-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.paypal-warning {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #e74c3c;
  line-height: 1.4;
  background: rgba(192, 57, 43, 0.1);
  padding: 8px 12px;
  border-left: 2px solid var(--red);
}

.store-steps-box {
  background: var(--black);
  padding: 16px 20px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
}

.store-steps-box h4 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.store-steps-box ol {
  padding-left: 18px;
  color: var(--light-gray);
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.creator-reqs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  flex: 1;
}

.req-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--black);
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.req-icon {
  font-size: 1.4rem;
}

.req-item div {
  display: flex;
  flex-direction: column;
}

.req-item strong {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
}

.req-item span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--light-gray);
}

/* ===== VOTE SECTION STYLES ===== */
.vote-card {
  background: var(--black-light);
  border: 1px solid rgba(192, 57, 43, 0.3);
  padding: 48px 40px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  text-align: center;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
}

.vote-card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 36px;
}

.vote-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #f1c40f;
  color: #000;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 8px 24px;
  margin: 0 auto 20px;
  text-transform: uppercase;
  text-align: center;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.vote-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 12px;
}

.vote-subtitle {
  color: var(--ash);
  font-size: 1rem;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

.vote-rewards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 36px;
}

.reward-box {
  background: var(--dark-gray);
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reward-box.gold {
  border-color: rgba(241, 196, 15, 0.4);
  background: linear-gradient(180deg, rgba(241, 196, 15, 0.05) 0%, var(--dark-gray) 100%);
}

.reward-box.silver {
  border-color: rgba(230, 126, 34, 0.4);
  background: linear-gradient(180deg, rgba(230, 126, 34, 0.05) 0%, var(--dark-gray) 100%);
}

.reward-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.reward-box.gold .reward-badge {
  color: #f1c40f;
}

.reward-box.silver .reward-badge {
  color: #e67e22;
}

.reward-box h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 8px;
}

.reward-prize {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--red);
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.reward-box p {
  color: var(--light-gray);
  font-size: 0.88rem;
  line-height: 1.5;
}

.vote-info-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  background: rgba(0, 0, 0, 0.4);
  padding: 16px 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--ash);
}

.info-item strong {
  color: var(--white);
}

.vote-action-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.vote-btn-pulse {
  animation: votePulse 2.5s infinite;
}

@keyframes votePulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.6);
  }

  50% {
    box-shadow: 0 0 25px 6px rgba(192, 57, 43, 0.4);
  }
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */
@media (max-width: 1024px) {
  :root {
    --section-pad: 80px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mods-categories {
    grid-template-columns: repeat(2, 1fr);
  }

  .mods-grid-horizontal {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .store-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 56px;
  }

  .container {
    padding: 0 16px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-desc {
    margin: -24px auto 36px;
    font-size: 0.95rem;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-inner {
    padding: 16px;
  }

  /* Hero */
  .hero-content {
    padding: 100px 16px 36px;
  }

  .hero-logo-x {
    width: min(200px, 45vw);
  }

  .hero-stats {
    flex-direction: column;
    width: 100%;
    max-width: 340px;
    gap: 12px;
    padding: 16px;
    margin: 0 auto 36px;
  }

  .stat-sep {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Ticker */
  .ticker-wrap {
    width: 100vw;
    max-width: 100%;
  }

  /* Status Bar */
  .status-box,
  .status-grid {
    flex-direction: column;
    border-radius: 4px;
    overflow: hidden;
  }

  .status-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 20px;
  }

  .status-card:last-child {
    border-bottom: none;
  }

  .ip-text {
    word-break: break-all;
  }

  /* Features, Rules, Mods, Team Grids */
  .features-grid,
  .rules-grid,
  .mods-categories,
  .mods-grid-horizontal,
  .team-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card,
  .rule-block,
  .mod-category,
  .mod-link-card,
  .team-card {
    padding: 24px 20px;
    min-width: 0;
  }

  .mod-link-card h4 {
    font-size: 1.3rem;
    word-break: break-word;
  }

  .rules-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 20px 16px;
  }

  .rules-footer p {
    text-align: center;
    min-width: unset;
  }

  .rules-footer .btn {
    width: 100%;
    justify-content: center;
  }

  /* Vote section */
  .vote-card {
    padding: 28px 16px;
  }

  .vote-title {
    font-size: 1.8rem;
  }

  .vote-rewards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .reward-box {
    padding: 20px 16px;
  }

  .vote-info-bar {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 16px;
  }

  /* Join Steps */
  .join-steps {
    flex-direction: column;
    align-items: stretch;
    padding: 20px 16px;
    gap: 20px;
  }

  .step {
    min-width: unset;
  }

  .step-arrow {
    transform: rotate(90deg);
    align-self: center;
    margin: -8px 0;
  }

  .join-actions {
    flex-direction: column;
    width: 100%;
    max-width: 340px;
    gap: 12px;
  }

  .join-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-logo-wrap {
    justify-content: center;
  }

  .social-row {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(2.4rem, 11vw, 4rem);
    margin-bottom: 14px;
  }

  .section-title {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .vote-card {
    padding: 24px 12px;
  }

  .mod-link-card {
    padding: 20px 16px;
  }
}