/* =============================================
   RAID SHADOW LEGENDS FR — style.css
   Dark theme | Orbitron + Rajdhani
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

/* ========== VARIABLES ========== */
:root {
  --bg-void: #0a0a0f;
  --bg-dark: #0f0f1a;
  --bg-card: #141424;
  --bg-card-hover: #1a1a30;
  --bg-elevated: #1e1e35;

  --gold: #c9a227;
  --gold-light: #e8c44a;
  --gold-glow: rgba(201,162,39,0.25);

  --purple: #7b2fff;
  --purple-light: #9d5fff;
  --purple-glow: rgba(123,47,255,0.2);

  --red: #e03030;
  --red-glow: rgba(224,48,48,0.2);

  --cyan: #00d4ff;
  --cyan-glow: rgba(0,212,255,0.15);

  --text-primary: #e8e0d0;
  --text-secondary: #9990a8;
  --text-muted: #555568;

  --tier-s: #ff6b35;
  --tier-a: #e8c44a;
  --tier-b: #4ec9b0;
  --tier-c: #9d5fff;
  --tier-d: #888;

  --border: rgba(201,162,39,0.15);
  --border-bright: rgba(201,162,39,0.4);

  --radius: 8px;
  --radius-lg: 16px;

  --nav-height: 64px;
  --bottom-nav-height: 64px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--bg-void);
  color: var(--text-primary);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Background texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 40% at 50% -10%, rgba(123,47,255,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 30% at 100% 80%, rgba(201,162,39,0.06) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23ffffff' stroke-opacity='0.012' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

main, header, footer, section, article { position: relative; z-index: 1; }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5 {
  font-family: 'Orbitron', sans-serif;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; }
h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { font-size: 1rem; font-weight: 400; color: var(--text-primary); }

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

strong { font-weight: 700; color: var(--gold-light); }

/* ========== LAYOUT ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section.section {
  padding: 5rem 0;
}

/* ========== HEADER / DESKTOP NAV ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-decoration: none;
}

.nav-logo .logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold), var(--purple));
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  transition: all 0.2s;
  border: 1px solid transparent;
  text-transform: uppercase;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  background: var(--gold-glow);
  border-color: var(--border);
}

.nav-search {
  position: relative;
}

.nav-search input {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.4rem 1rem 0.4rem 2.2rem;
  color: var(--text-primary);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  width: 200px;
  transition: all 0.3s;
  outline: none;
}

.nav-search input:focus {
  width: 280px;
  border-color: var(--gold);
  background: var(--bg-card);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.nav-search .search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.85rem;
  pointer-events: none;
}

/* ========== MOBILE BOTTOM NAV ========== */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--bottom-nav-height);
  background: rgba(10,10,15,0.96);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  z-index: 1000;
}

.bottom-nav-inner {
  display: flex;
  height: 100%;
}

.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
  font-family: 'Rajdhani', sans-serif;
}

.bottom-nav-item .nav-icon {
  font-size: 1.3rem;
  line-height: 1;
}

.bottom-nav-item.active, .bottom-nav-item:hover {
  color: var(--gold);
}

/* ========== PAGE WRAPPER ========== */
.page-wrap {
  padding-top: var(--nav-height);
  padding-bottom: 2rem;
}

@media (max-width: 768px) {
  .page-wrap { padding-bottom: calc(var(--bottom-nav-height) + 1rem); }
  .bottom-nav { display: block; }
  .nav-links, .nav-search { display: none; }
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 4rem 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 40%, rgba(123,47,255,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 60%, rgba(201,162,39,0.1) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-void) 0%, var(--bg-dark) 100%);
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,47,255,0.15) 0%, transparent 70%);
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  animation: hero-pulse 4s ease-in-out infinite;
}

@keyframes hero-pulse {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.8; }
  50% { transform: translateY(-50%) scale(1.1); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,162,39,0.1);
  border: 1px solid var(--border-bright);
  border-radius: 20px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.6s ease;
}

.hero h1 {
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 520px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #a07a1a);
  color: #0a0a0f;
  box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
  color: #0a0a0f;
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border-bright);
}

.btn-secondary:hover {
  background: var(--gold-glow);
  transform: translateY(-2px);
  color: var(--gold-light);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  color: var(--gold);
  border-color: var(--border-bright);
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
}

/* ========== SECTION HEADERS ========== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  padding: 0.3rem 1rem;
  background: rgba(201,162,39,0.08);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.section-title {
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ========== CARDS ========== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
  overflow: hidden;
}

.card:hover {
  border-color: var(--border-bright);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px var(--border-bright);
}

/* ========== CHAMPION CARDS ========== */
.champion-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  display: block;
  position: relative;
}

.champion-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 30px var(--gold-glow);
}

.champion-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.champion-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.champion-card-img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--text-muted);
}

.champion-card-body {
  padding: 1rem;
}

.champion-card-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
}

.champion-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.champion-tier-badge {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 900;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  letter-spacing: 0.1em;
}

.tier-S { background: rgba(255,107,53,0.2); color: var(--tier-s); border: 1px solid rgba(255,107,53,0.4); }
.tier-A { background: rgba(232,196,74,0.2); color: var(--tier-a); border: 1px solid rgba(232,196,74,0.4); }
.tier-B { background: rgba(78,201,176,0.2); color: var(--tier-b); border: 1px solid rgba(78,201,176,0.4); }
.tier-C { background: rgba(157,95,255,0.2); color: var(--tier-c); border: 1px solid rgba(157,95,255,0.4); }
.tier-D { background: rgba(136,136,136,0.2); color: var(--tier-d); border: 1px solid rgba(136,136,136,0.4); }

.rarity-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rarity-Legendary { background: rgba(255,200,0,0.15); color: #ffc800; }
.rarity-Epic { background: rgba(157,95,255,0.15); color: #9d5fff; }
.rarity-Rare { background: rgba(0,100,255,0.15); color: #4499ff; }
.rarity-Uncommon { background: rgba(0,200,0,0.12); color: #44cc44; }
.rarity-Common { background: rgba(150,150,150,0.12); color: #aaa; }

/* ========== CHAMPION GRID ========== */
.champions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.25rem;
}

/* ========== TIER LIST ========== */
.tier-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.tier-label {
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  border-right: 1px solid var(--border);
  padding: 1rem;
}

.tier-S .tier-label { background: rgba(255,107,53,0.15); color: var(--tier-s); }
.tier-A .tier-label { background: rgba(232,196,74,0.15); color: var(--tier-a); }
.tier-B .tier-label { background: rgba(78,201,176,0.15); color: var(--tier-b); }
.tier-C .tier-label { background: rgba(157,95,255,0.15); color: var(--tier-c); }
.tier-D .tier-label { background: rgba(136,136,136,0.15); color: var(--tier-d); }

.tier-champions {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--bg-card);
}

.tier-champion-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  transition: transform 0.2s;
}

.tier-champion-item:hover { transform: scale(1.08); }

.tier-champion-avatar {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--bg-elevated);
  border: 2px solid var(--border);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tier-champion-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.tier-champion-name {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  letter-spacing: 0.03em;
  max-width: 70px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ========== SEARCH & FILTERS ========== */
.search-bar {
  position: relative;
  margin-bottom: 1.5rem;
}

.search-bar input {
  width: 100%;
  padding: 0.9rem 1rem 0.9rem 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  outline: none;
  transition: all 0.3s;
}

.search-bar input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.search-bar input::placeholder { color: var(--text-muted); }

.search-bar .search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.1rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gold-glow);
  border-color: var(--gold);
  color: var(--gold);
}

/* ========== CHAMPION DETAIL PAGE ========== */
.champion-hero {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  padding: 3rem 0;
}

.champion-portrait {
  position: relative;
}

.champion-portrait-img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-bright);
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--bg-elevated);
  box-shadow: 0 0 60px var(--purple-glow);
}

.champion-portrait-placeholder {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border: 2px solid var(--border);
}

.champion-info h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 0.75rem;
}

.champion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.champion-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.stat-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem;
  text-align: center;
}

.stat-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Tier mode badges */
.tier-modes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tier-mode-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.3rem 0.75rem;
  font-size: 0.8rem;
}

.tier-mode-item .mode-name {
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Skills */
.skills-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.skill-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1rem;
  align-items: start;
}

.skill-type-badge {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  font-weight: 900;
  text-align: center;
  padding: 0.25rem 0.3rem;
  border-radius: 6px;
  background: rgba(123,47,255,0.2);
  color: var(--purple-light);
  border: 1px solid rgba(123,47,255,0.3);
  letter-spacing: 0.05em;
}

.skill-type-badge.passif {
  background: rgba(201,162,39,0.15);
  color: var(--gold);
  border-color: var(--border);
}

.skill-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.skill-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.skill-cooldown {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* Build section */
.build-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.build-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.build-card h4 {
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.stats-targets {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.stat-target-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.stat-target-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-target-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
}

/* Usage section */
.usage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.usage-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.usage-card h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.usage-card.excellent h4 { color: var(--tier-s); }
.usage-card.bon h4 { color: var(--tier-a); }
.usage-card.moyen h4 { color: var(--tier-b); }

.usage-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.usage-list li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding-left: 1rem;
  position: relative;
}

.usage-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ========== FAQ ========== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.1rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-primary);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--gold); }

.faq-toggle {
  color: var(--gold);
  font-size: 1.2rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-toggle { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid var(--border);
}

/* ========== SYNERGIES & COUNTERS ========== */
.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: 0.03em;
}

.tag-default {
  background: rgba(255,255,255,0.05);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.tag-synergy {
  background: rgba(201,162,39,0.1);
  color: var(--gold);
  border: 1px solid var(--border-bright);
}

.tag-counter {
  background: rgba(224,48,48,0.1);
  color: var(--red);
  border: 1px solid rgba(224,48,48,0.3);
}

/* ========== GUIDE CONTENT ========== */
.guide-content {
  max-width: 820px;
  margin: 0 auto;
}

.guide-content h2 {
  font-size: 1.6rem;
  margin: 2.5rem 0 1rem;
  padding-top: 0.5rem;
  color: var(--gold-light);
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}

.guide-content h3 {
  font-size: 1.2rem;
  margin: 2rem 0 0.75rem;
  color: var(--text-primary);
}

.guide-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  font-size: 1rem;
}

.guide-content ul, .guide-content ol {
  margin: 0.75rem 0 1.25rem 1.5rem;
  color: var(--text-secondary);
}

.guide-content li {
  margin-bottom: 0.4rem;
  line-height: 1.7;
}

.guide-content .tip-box {
  background: rgba(201,162,39,0.06);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.guide-content .warning-box {
  background: rgba(224,48,48,0.06);
  border: 1px solid rgba(224,48,48,0.2);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.guide-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: start;
}

.guide-step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 0.9rem;
  color: #0a0a0f;
  flex-shrink: 0;
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 0 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--text-secondary); }

/* ========== SEARCH DROPDOWN ========== */
.search-results-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  border: 1px solid var(--border-bright);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  max-height: 400px;
  overflow-y: auto;
  z-index: 100;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: background 0.2s;
}

.search-result-item:hover { background: var(--bg-elevated); }

.search-result-item:last-child { border-bottom: none; }

.search-result-avatar {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--bg-elevated);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.search-result-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.search-result-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.search-result-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.5;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== ADSENSE ZONES ========== */
.ad-slot {
  background: rgba(255,255,255,0.02);
  border: 1px dashed rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  min-height: 90px;
  margin: 2rem 0;
}

.ad-slot-rectangle { min-height: 250px; max-width: 300px; }
.ad-slot-banner { min-height: 90px; }
.ad-slot-leaderboard { min-height: 90px; max-width: 728px; margin: 2rem auto; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .champion-hero { grid-template-columns: 220px 1fr; gap: 2rem; }
  .build-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 3rem 0; }
  .hero { min-height: 70vh; }
  .hero-stats { gap: 1.5rem; }
  .champion-hero { grid-template-columns: 1fr; }
  .champion-portrait { max-width: 260px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .usage-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .champions-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-stats { flex-wrap: wrap; justify-content: center; }
  .tier-champion-avatar { width: 52px; height: 52px; }
  .build-grid { grid-template-columns: 1fr; }
}

/* ========== UTILITY ========== */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.hidden { display: none !important; }
