/* ========================================
   TIPS BATTLE - ENHANCED GAMING THEME CSS
   v2.0 - Updated with new fonts & visuals
   ======================================== */

/* === ROOT VARIABLES === */
:root {
  /* Gaming Color Palette */
  --primary-dark: #080c1e;
  --secondary-dark: #0f1428;
  --card-dark: #141830;
  --card-hover: #1a2040;
  --accent-blue: #00d4ff;
  --accent-purple: #9b59f5;
  --accent-green: #00ff88;
  --accent-red: #ff3d6b;
  --accent-gold: #ffcc00;
  --accent-orange: #ff7d2f;
  --accent-teal: #00e5cc;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-battle: linear-gradient(135deg, #00d4ff 0%, #9b59f5 100%);
  --gradient-human: linear-gradient(135deg, #ff3d6b 0%, #ff7d2f 100%);
  --gradient-ai: linear-gradient(135deg, #00e5cc 0%, #00ff88 100%);
  --gradient-premium: linear-gradient(135deg, #ffcc00 0%, #ff7d2f 100%);
  --gradient-dark: linear-gradient(180deg, #080c1e 0%, #0f1428 100%);
  --gradient-card: linear-gradient(135deg, #141830 0%, #1a2040 100%);

  /* Text Colors */
  --text-primary: #f0f4ff;
  --text-secondary: #8892b0;
  --text-muted: #4d5a7c;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2.5rem;
  --spacing-xl: 4rem;
  --spacing-2xl: 6rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 100px;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 50px rgba(0, 0, 0, 0.6);
  --shadow-glow-blue: 0 0 30px rgba(0, 212, 255, 0.4), 0 0 60px rgba(0, 212, 255, 0.15);
  --shadow-glow-purple: 0 0 30px rgba(155, 89, 245, 0.4), 0 0 60px rgba(155, 89, 245, 0.15);
  --shadow-glow-green: 0 0 30px rgba(0, 255, 136, 0.4);
  --shadow-glow-gold: 0 0 30px rgba(255, 204, 0, 0.4);

  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Typography - Less robotic, more innovative */
  --font-display: 'Syne', sans-serif;
  --font-heading: 'Syne', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-data: 'Space Grotesk', sans-serif;
}

/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--gradient-dark);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 40%, rgba(0, 212, 255, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 70%, rgba(155, 89, 245, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 10%, rgba(0, 229, 204, 0.05) 0%, transparent 50%);
  z-index: -2;
  pointer-events: none;
}

/* === FOOTBALL ABSTRACT SVG BACKGROUND PATTERNS === */
.bg-field {
  position: relative;
  overflow: hidden;
}
.bg-field::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.015) 60px,
      rgba(255,255,255,0.015) 61px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.015) 60px,
      rgba(255,255,255,0.015) 61px
    );
  pointer-events: none;
  z-index: 0;
}
.bg-field > * { position: relative; z-index: 1; }

.bg-hexagons {
  position: relative;
  overflow: hidden;
}
.bg-hexagons::before {
  content: '';
  position: absolute;
  inset: -50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='96'%3E%3Cpath d='M42 0 L84 24 L84 72 L42 96 L0 72 L0 24Z' fill='none' stroke='rgba(0,212,255,0.04)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 84px 96px;
  pointer-events: none;
  z-index: 0;
}
.bg-hexagons > * { position: relative; z-index: 1; }

.bg-diagonal {
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(155, 89, 245, 0.025) 20px,
      rgba(155, 89, 245, 0.025) 21px
    );
}

/* Floating ball decoration */
.ball-deco {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  pointer-events: none;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; }
h4 { font-size: clamp(1.15rem, 2.5vw, 1.6rem); font-weight: 600; }
h5 { font-size: clamp(1rem, 2vw, 1.3rem); font-weight: 600; }
h6 { font-size: clamp(0.95rem, 1.5vw, 1.1rem); font-weight: 600; }

p { margin-bottom: 1rem; color: var(--text-secondary); line-height: 1.8; }
a { color: var(--accent-blue); text-decoration: none; transition: var(--transition-fast); }
a:hover { color: var(--accent-purple); }

/* Numbers/data use Space Grotesk */
.stat-value, .price-number, [data-counter] {
  font-family: var(--font-data);
}

/* === LAYOUT === */
.container { max-width: 1400px; margin: 0 auto; padding: 0 var(--spacing-md); }
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 var(--spacing-md); }
.section { padding: var(--spacing-2xl) 0; }
.section-sm { padding: var(--spacing-xl) 0; }

/* === NAVIGATION === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(8, 12, 30, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 1rem 0;
  transition: var(--transition-normal);
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5); }

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

.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gradient-battle);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}
.logo-icon {
  width: 38px; height: 38px;
  background: var(--gradient-battle);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.nav-menu { display: flex; list-style: none; gap: 0.25rem; align-items: center; }
.nav-link {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}
.nav-link:hover { color: var(--text-primary); background: rgba(255,255,255,0.06); }
.nav-link.active { color: var(--accent-blue); background: rgba(0, 212, 255, 0.1); }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 0.5rem;
}
.menu-toggle span {
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-fast);
  display: block;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-normal);
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
}
.btn:hover::after { background: rgba(255,255,255,0.08); }
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--gradient-battle);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow-blue); color: #fff; }

.btn-secondary {
  background: var(--card-dark);
  color: var(--text-primary);
  border: 2px solid rgba(0, 212, 255, 0.3);
}
.btn-secondary:hover { border-color: var(--accent-blue); background: rgba(0, 212, 255, 0.1); color: var(--accent-blue); }

.btn-premium {
  background: var(--gradient-premium);
  color: #000;
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
  font-weight: 800;
}
.btn-premium:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow-gold); color: #000; }

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(155, 89, 245, 0.4);
}
.btn-outline:hover { border-color: var(--accent-purple); background: rgba(155, 89, 245, 0.1); }

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 2px solid rgba(255,255,255,0.1);
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); color: var(--text-primary); }

.btn-danger {
  background: var(--accent-red);
  color: #fff;
}

.btn-sm { padding: 0.45rem 0.9rem; font-size: 0.85rem; border-radius: var(--radius-sm); }
.btn-lg { padding: 0.9rem 2rem; font-size: 1.05rem; border-radius: var(--radius-lg); }
.btn-xl { padding: 1.1rem 2.5rem; font-size: 1.15rem; border-radius: var(--radius-xl); }

/* === CARDS === */
.card {
  background: var(--card-dark);
  border-radius: var(--radius-xl);
  padding: var(--spacing-md);
  border: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-battle);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-normal);
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.2);
  box-shadow: var(--shadow-md), 0 0 40px rgba(0, 212, 255, 0.05);
}
.card:hover::before { transform: scaleX(1); }

.card-header {
  margin-bottom: var(--spacing-sm);
  padding-bottom: var(--spacing-sm);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.card-title { font-size: 1.15rem; font-weight: 700; color: var(--text-primary); }
.card-body { color: var(--text-secondary); }
.card-footer {
  margin-top: var(--spacing-sm);
  padding-top: var(--spacing-sm);
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Glass card variant */
.card-glass {
  background: rgba(20, 24, 48, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* === BADGES === */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
}
.badge-human { background: var(--gradient-human); color: #fff; }
.badge-ai { background: var(--gradient-ai); color: #000; }
.badge-premium { background: var(--gradient-premium); color: #000; }
.badge-success { background: rgba(0, 255, 136, 0.2); color: var(--accent-green); border: 1px solid rgba(0,255,136,0.3); }
.badge-danger { background: rgba(255, 61, 107, 0.2); color: var(--accent-red); border: 1px solid rgba(255,61,107,0.3); }
.badge-info { background: rgba(0, 212, 255, 0.15); color: var(--accent-blue); border: 1px solid rgba(0,212,255,0.25); }
.badge-muted { background: rgba(255,255,255,0.08); color: var(--text-secondary); }
.badge-coming-soon { background: rgba(155,89,245,0.2); color: var(--accent-purple); border: 1px solid rgba(155,89,245,0.35); animation: badgePulse 2s infinite; }

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(155,89,245,0); }
  50% { box-shadow: 0 0 0 4px rgba(155,89,245,0.15); }
}

/* === STAT CARDS === */
.stat-card {
  background: var(--card-dark);
  border-radius: var(--radius-xl);
  padding: var(--spacing-md) var(--spacing-sm);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}
.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-battle);
  transform: scaleX(0);
  transition: var(--transition-normal);
}
.stat-card:hover { border-color: rgba(0,212,255,0.2); transform: translateY(-3px); }
.stat-card:hover::after { transform: scaleX(1); }

.stat-value {
  font-family: var(--font-data);
  font-size: 2.8rem;
  font-weight: 700;
  background: var(--gradient-battle);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}
.stat-label {
  color: var(--text-muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* === PROGRESS BARS === */
.progress {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  background: var(--gradient-battle);
  border-radius: var(--radius-pill);
  width: 0;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.progress-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
  animation: shimmer 2.5s infinite;
}
@keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

/* === VS BATTLE COMPONENT === */
.vs-battle {
  display: grid;
  grid-template-columns: 1fr 90px 1fr;
  gap: var(--spacing-md);
  align-items: center;
  padding: var(--spacing-lg);
  background: var(--card-dark);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
}
.vs-battle::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(255,61,107,0.08) 0%, transparent 50%),
    radial-gradient(circle at 90% 50%, rgba(0,229,204,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.vs-side {
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
}
.vs-side.human {
  background: linear-gradient(135deg, rgba(255,61,107,0.08) 0%, rgba(255,125,47,0.08) 100%);
  border: 1px solid rgba(255,61,107,0.2);
}
.vs-side.ai {
  background: linear-gradient(135deg, rgba(0,229,204,0.08) 0%, rgba(0,255,136,0.08) 100%);
  border: 1px solid rgba(0,229,204,0.2);
}

.vs-divider {
  width: 70px; height: 70px;
  background: var(--gradient-battle);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  box-shadow: var(--shadow-glow-blue);
  animation: vsPulse 3s ease-in-out infinite;
  margin: 0 auto;
}
@keyframes vsPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); box-shadow: var(--shadow-glow-purple); }
}

/* === RATING STARS === */
.rating { display: inline-flex; gap: 0.15rem; }
.star { color: var(--accent-gold); font-size: 1rem; line-height: 1; }
.star.empty { color: rgba(255,255,255,0.15); }

/* === TABS === */
.tabs {
  display: flex;
  gap: 0.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--spacing-md);
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }
.tab {
  padding: 0.7rem 1.2rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
  position: relative;
}
.tab:hover { color: var(--text-primary); }
.tab.active { color: var(--accent-blue); }
.tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-battle);
  border-radius: 2px;
}

/* === FILTERS === */
.filter-group { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filter-btn {
  padding: 0.45rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
}
.filter-btn:hover { border-color: var(--accent-blue); color: var(--accent-blue); }
.filter-btn.active { background: rgba(0,212,255,0.1); border-color: var(--accent-blue); color: var(--accent-blue); font-weight: 700; }

/* === FORMS === */
.form-group { margin-bottom: var(--spacing-md); }
.form-label { display: block; margin-bottom: 0.45rem; color: var(--text-primary); font-size: 0.9rem; font-weight: 600; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-blue);
  background: rgba(0,212,255,0.05);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
}
.form-input::placeholder { color: var(--text-muted); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-select { appearance: none; cursor: pointer; }

/* Input with icon */
.input-group { position: relative; }
.input-icon {
  position: absolute;
  left: 1rem; top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}
.input-group .form-input { padding-left: 2.75rem; }

/* === VIDEO PLACEHOLDER === */
.video-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--card-dark);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
}
.video-container:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--gradient-battle);
}
.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(0,212,255,0.04) 0%, rgba(155,89,245,0.04) 100%);
}
.video-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  background: rgba(0,212,255,0.2);
  border: 3px solid var(--accent-blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  transition: var(--transition-normal);
  z-index: 5;
  backdrop-filter: blur(5px);
}

/* === IMAGE PLACEHOLDERS === */
.img-placeholder {
  background: linear-gradient(135deg, rgba(0,212,255,0.06) 0%, rgba(155,89,245,0.06) 100%);
  border: 1px dashed rgba(0,212,255,0.2);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem;
}
.img-placeholder i { font-size: 2.5rem; color: rgba(0,212,255,0.3); }

/* Player/Team Avatar */
.avatar {
  border-radius: 50%;
  object-fit: cover;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.avatar-sm { width: 36px; height: 36px; font-size: 0.8rem; }
.avatar-md { width: 48px; height: 48px; font-size: 1rem; }
.avatar-lg { width: 64px; height: 64px; font-size: 1.3rem; }
.avatar-xl { width: 96px; height: 96px; font-size: 1.8rem; }

/* === MODAL === */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: var(--transition-normal);
  padding: 1rem;
}
.modal-overlay.active { opacity: 1; visibility: visible; }

.modal {
  background: var(--card-dark);
  border-radius: var(--radius-xl);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid rgba(255,255,255,0.1);
  transform: scale(0.9) translateY(20px);
  transition: var(--transition-normal);
  scrollbar-width: thin;
  scrollbar-color: rgba(0,212,255,0.3) transparent;
}
.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}
.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  position: sticky; top: 0;
  background: var(--card-dark);
  z-index: 1;
}
.modal-close {
  background: rgba(255,255,255,0.07);
  border: none;
  color: var(--text-secondary);
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.modal-close:hover { background: rgba(255,61,107,0.2); color: var(--accent-red); }
.modal-body { padding: 1.5rem; }

/* Auth Modal Tabs */
.auth-tabs { display: flex; gap: 0; margin-bottom: 1.5rem; border-radius: var(--radius-md); overflow: hidden; background: rgba(255,255,255,0.05); }
.auth-tab {
  flex: 1; padding: 0.7rem;
  background: none; border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}
.auth-tab.active { background: var(--gradient-battle); color: #fff; }

/* === NOTIFICATIONS === */
.notification {
  position: fixed;
  top: 90px; right: 20px;
  background: var(--card-dark);
  color: var(--text-primary);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 8000;
  min-width: 260px;
  max-width: 360px;
  animation: slideInRight 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex; align-items: center; gap: 0.75rem;
}
@keyframes slideInRight {
  from { transform: translateX(120%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
.notification-success { border-left: 3px solid var(--accent-green); }
.notification-error { border-left: 3px solid var(--accent-red); }
.notification-info { border-left: 3px solid var(--accent-blue); }
.notification-warning { border-left: 3px solid var(--accent-gold); }

/* === LOADER === */
.loader {
  display: inline-block;
  width: 44px; height: 44px;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: var(--accent-blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* === SECTION DECORATIONS === */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

/* === GRADIENT TEXT === */
.gradient-text {
  background: var(--gradient-battle);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-human {
  background: var(--gradient-human);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-ai {
  background: var(--gradient-ai);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-premium {
  background: var(--gradient-premium);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === FOOTBALL HERO DECORATION === */
.football-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,212,255,0.1);
  pointer-events: none;
}
.football-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--accent-blue);
  opacity: 0.5;
  pointer-events: none;
  animation: floatDot 5s ease-in-out infinite;
}
@keyframes floatDot {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-15px) scale(1.2); }
}

/* === HERO SECTION === */
.hero-section {
  padding-top: 110px;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

/* === PRICING SPECIFIC === */
.pricing-card {
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  border-color: rgba(255,204,0,0.35);
  box-shadow: 0 0 40px rgba(255,204,0,0.1);
}
.pricing-card.featured:hover {
  box-shadow: 0 0 60px rgba(255,204,0,0.2);
  transform: translateY(-4px);
}
.pricing-card:not(.featured):hover {
  transform: translateY(-4px);
  border-color: rgba(0,212,255,0.2);
}
.price-amount {
  font-family: var(--font-data);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}
.price-period {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}
.pricing-features { list-style: none; padding: 0; margin: 1.5rem 0; flex: 1; }
.pricing-features li {
  padding: 0.6rem 0;
  font-size: 0.95rem;
  display: flex; align-items: flex-start; gap: 0.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--text-secondary);
}
.pricing-features li:last-child { border: none; }
.pricing-features .check { color: var(--accent-green); margin-top: 2px; flex-shrink: 0; }
.pricing-features .cross { color: var(--text-muted); margin-top: 2px; flex-shrink: 0; }

/* Enterprise horizontal band */
.enterprise-band {
  background: linear-gradient(135deg, rgba(155,89,245,0.1) 0%, rgba(0,212,255,0.1) 100%);
  border: 1px solid rgba(155,89,245,0.2);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* === CRYPTO PAYMENT BADGES === */
.crypto-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.crypto-badge {
  padding: 0.3rem 0.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex; align-items: center; gap: 0.4rem;
}
.crypto-badge.btc { border-color: rgba(247,147,26,0.3); color: #f7931a; }
.crypto-badge.eth { border-color: rgba(98,126,234,0.3); color: #627eea; }
.crypto-badge.usdt { border-color: rgba(38,161,123,0.3); color: #26a17b; }
.crypto-badge.bnb { border-color: rgba(240,185,11,0.3); color: #f0b90b; }

/* === TABLE STYLES === */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.data-table th {
  padding: 0.9rem 1rem;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  white-space: nowrap;
}
.data-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--text-secondary);
  vertical-align: middle;
}
.data-table tr:hover td { background: rgba(255,255,255,0.025); }
.data-table tr:last-child td { border: none; }
.data-table th.text-center, .data-table td.text-center { text-align: center; }

/* === PAGINATION === */
.pagination { display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; justify-content: center; }
.page-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 0.9rem; font-weight: 600;
  transition: var(--transition-fast);
  display: flex; align-items: center; justify-content: center;
}
.page-btn:hover { border-color: var(--accent-blue); color: var(--accent-blue); }
.page-btn.active { background: var(--gradient-battle); border-color: transparent; color: #fff; }
.page-btn:disabled { opacity: 0.3; cursor: not-allowed; }

/* === FOOTER === */
.footer {
  background: rgba(8,12,30,0.95);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 5rem 0 2rem;
  margin-top: 5rem;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gradient-battle);
  opacity: 0.4;
}
.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}
.footer-section h4 { font-size: 1.05rem; margin-bottom: 1.25rem; color: var(--text-primary); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition-fast);
  display: flex; align-items: center; gap: 0.5rem;
}
.footer-links a::before { content: '›'; color: var(--accent-blue); opacity: 0; transition: var(--transition-fast); }
.footer-links a:hover { color: var(--text-secondary); padding-left: 0.5rem; }
.footer-links a:hover::before { opacity: 1; }

.social-links { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: var(--transition-fast);
  border: 1px solid rgba(255,255,255,0.08);
}
.social-link:hover {
  background: var(--gradient-battle);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--secondary-dark); }
::-webkit-scrollbar-thumb { background: rgba(0,212,255,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,212,255,0.5); }

/* === ANIMATIONS === */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes fadeOut {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(120%); }
}

[data-scroll-animate] {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-scroll-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* === UTILITIES === */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-primary-color { color: var(--text-primary) !important; }
.text-muted-color { color: var(--text-muted) !important; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.flex-column { flex-direction: column; }
.align-start { align-items: flex-start; }
.gap-xs { gap: var(--spacing-xs); }
.gap-sm { gap: var(--spacing-sm); }
.gap-md { gap: var(--spacing-md); }
.gap-lg { gap: var(--spacing-lg); }

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

.mt-xs { margin-top: var(--spacing-xs); }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mb-xs { margin-bottom: var(--spacing-xs); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }

.w-full { width: 100%; }
.h-full { height: 100%; }
.hidden { display: none !important; }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .footer-content { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .vs-battle { grid-template-columns: 1fr; }
  .vs-divider { width: 55px; height: 55px; margin: 0 auto; }
  .enterprise-band { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
  }
  .nav-menu {
    position: fixed;
    top: 70px; left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(8,12,30,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem var(--spacing-md);
    transition: var(--transition-normal);
    align-items: flex-start;
    gap: 0.25rem;
    overflow-y: auto;
  }
  .nav-menu.active { left: 0; }
  .nav-link { width: 100%; padding: 0.9rem 1rem; font-size: 1.1rem; }
  .menu-toggle { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr 1fr; gap: var(--spacing-md); }
  .pricing-card { padding: 1.5rem; }
}

@media (max-width: 540px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.9rem; }
  .stat-value { font-size: 2.2rem; }
  .footer-content { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .btn-xl { padding: 0.85rem 1.5rem; font-size: 1rem; }
}
