/* ==========================================================================
   CITYBACK / NOLOOSE GTA RP - MAIN STYLESHEET
   ========================================================================== */

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

:root {
  --bronze: #947655;
  --bronze-glow: rgba(148, 118, 85, 0.4);
  --purple: #947655;
  --purple-dark: #6e553c;
  --purple-glow: rgba(148, 118, 85, 0.3);
  --bg-dark: #050505;
  --bg-card: rgba(255, 255, 255, 0.02);
  --border-light: rgba(255, 255, 255, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-dark);
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.display {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.05em;
}

/* VIDEO BACKGROUND & OVERLAY */
#video-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

#video-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: brightness(0.9);
}

#app {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* LOGO SPIN ANIMATION */
.nav-logo,
.auth-logo {
  perspective: 800px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-logo img,
.auth-logo img,
.mob-head img,
.logo-spin {
  height: 46px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
  animation: logo-rotate 10s linear infinite;
  transform-style: preserve-3d;
  will-change: transform;
  transition: filter 0.3s ease;
}

.nav-logo img:hover,
.auth-logo img:hover,
.mob-head img:hover,
.logo-spin:hover {
  animation-duration: 2.5s;
  filter: drop-shadow(0 0 20px rgba(148, 118, 85, 0.8));
}

@keyframes logo-rotate {
  0% {
    transform: perspective(800px) rotateY(0deg);
  }
  100% {
    transform: perspective(800px) rotateY(360deg);
  }
}

/* HEADER & NAVIGATION */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

header.scrolled {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

nav.main-nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.nav-links li {
  position: relative;
}

.nav-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s ease;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Space Grotesk', sans-serif;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-link.active {
  border-bottom: 2px solid var(--bronze);
}

.nav-link svg {
  transition: transform 0.2s ease;
}

.nav-link[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

/* DROPDOWN MENU */
.dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 12px);
  min-width: 220px;
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  padding: 8px 0;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 100;
}

.dropdown.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.dropdown a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.dropdown a.dd-active {
  color: var(--bronze);
  background: rgba(148, 118, 85, 0.05);
}

/* NAV RIGHT & BUTTONS */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.nav-socials a {
  color: inherit;
  transition: color 0.2s ease;
}

.nav-socials a:hover {
  color: #fff;
}

.nav-socials svg {
  width: 20px;
  height: 20px;
  display: block;
}

.btn-bronze {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 156px;
  height: 38px;
  background: transparent;
  border: 1px solid var(--bronze);
  color: var(--bronze);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  padding: 0 16px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn-bronze:hover {
  background: var(--bronze);
  color: #000;
  box-shadow: 0 0 20px var(--bronze-glow);
}

.btn-login {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 6px 14px;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  background: none;
}

.btn-login:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-discord-auth {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px;
  background: #5865F2;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  cursor: pointer;
  margin-bottom: 16px;
  transition: background 0.2s ease, transform 0.1s ease;
}

.btn-discord-auth:hover {
  background: #4752C4;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
}

/* NAV AVATAR BADGE */
.nav-avatar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.nav-avatar-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  border: 2px solid rgba(148, 118, 85, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  transition: border-color 0.2s ease;
}

.nav-avatar:hover .nav-avatar-circle {
  border-color: var(--purple);
}

.nav-avatar-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.8);
}

/* AUTHENTICATION PAGES & CARDS */
.auth-page {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 60px;
  position: relative;
}

.auth-card {
  width: 100%;
  max-width: 440px;
  background: linear-gradient(160deg, rgba(30, 22, 14, 0.97), rgba(12, 8, 5, 0.98));
  border: 1px solid rgba(148, 118, 85, 0.3);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8), 0 0 60px rgba(148, 118, 85, 0.15);
}

.auth-card::before {
  content: '';
  position: absolute;
  inset-x: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(148, 118, 85, 0.7), transparent);
}

.auth-logo {
  text-align: center;
  margin-bottom: 8px;
}

.auth-logo img {
  height: 52px;
  width: auto;
}

.auth-logo-txt {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.2em;
  color: rgba(148, 118, 85, 0.9);
}

.auth-space {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.auth-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.auth-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 28px;
  line-height: 1.5;
}

.auth-field {
  position: relative;
  margin-bottom: 14px;
}

.auth-field svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

.auth-field .auth-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 13px 14px 13px 40px;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-field .auth-input:focus {
  border-color: rgba(148, 118, 85, 0.6);
  box-shadow: 0 0 0 3px rgba(148, 118, 85, 0.12);
}

.auth-field .auth-input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.auth-field .eye-btn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.3);
  padding: 2px;
  transition: color 0.2s ease;
}

.auth-field .eye-btn:hover {
  color: rgba(255, 255, 255, 0.7);
}

.auth-field .eye-btn svg {
  position: static;
  transform: none;
  width: 18px;
  height: 18px;
}

.auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 8px;
}

.auth-check {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.auth-check input {
  width: 15px;
  height: 15px;
  accent-color: var(--purple);
  cursor: pointer;
  flex-shrink: 0;
}

.auth-check span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.auth-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(148, 118, 85, 0.8);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
  background: none;
  border: none;
  white-space: nowrap;
}

.auth-link:hover {
  color: #c9ad8b;
}

.btn-auth {
  width: 100%;
  padding: 14px;
  background: linear-gradient(90deg, var(--purple-dark), var(--purple));
  border: none;
  border-radius: 8px;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 24px rgba(148, 118, 85, 0.3);
}

.btn-auth:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(148, 118, 85, 0.4);
}

.btn-auth:active {
  transform: translateY(0);
}

.btn-auth.loading {
  opacity: 0.6;
  pointer-events: none;
}

.auth-sep {
  text-align: center;
  margin: 20px 0 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

.auth-sep span {
  background: none;
  padding: 0 8px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.auth-foot {
  text-align: center;
  margin-top: 20px;
}

.auth-foot a,
.auth-foot button {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s ease;
  text-decoration: none;
}

.auth-foot a:hover,
.auth-foot button:hover {
  color: #fff;
}

.auth-back {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  background: none;
  border: none;
  letter-spacing: 0.1em;
  transition: color 0.2s ease;
}

.auth-back:hover {
  color: rgba(255, 255, 255, 0.7);
}

.auth-back svg {
  width: 14px;
  height: 14px;
}

.auth-err {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 12px;
  color: #fca5a5;
  margin-bottom: 16px;
  display: none;
}

.auth-err.show {
  display: block;
}

.auth-ok {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 12px;
  color: #86efac;
  margin-bottom: 16px;
  display: none;
}

.auth-ok.show {
  display: block;
}

.auth-strength {
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
  margin-top: 6px;
  overflow: hidden;
}

.auth-strength-bar {
  height: 100%;
  border-radius: 2px;
  width: 0%;
  transition: width 0.3s ease, background 0.3s ease;
}

.auth-strength-lbl {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 4px;
  letter-spacing: 0.1em;
}

/* MOBILE DRAWER */
.mob-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
}

.mob-overlay.open {
  pointer-events: all;
}

.mob-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mob-overlay.open .mob-bg {
  opacity: 1;
  pointer-events: all;
}

.mob-drawer {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 88%;
  max-width: 360px;
  background: #000;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mob-overlay.open .mob-drawer {
  transform: translateX(0);
}

.mob-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.mob-head img {
  height: 40px;
}

.mob-close {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.mob-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mob-nav a,
.mob-nav-btn {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s ease;
}

.mob-nav a:hover {
  color: #fff;
}

/* PAGES ROUTER CONTAINER */
main {
  flex: 1;
}

.page {
  display: none;
}

.page.active {
  display: block;
}

/* HERO SECTION */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo-wrap {
  perspective: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.hero-logo {
  height: 240px;
  max-height: 35vh;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.45)) drop-shadow(0 0 60px rgba(148, 118, 85, 0.35));
  animation: logo-rotate 10s linear infinite;
  transform-style: preserve-3d;
  will-change: transform;
  transition: filter 0.3s ease;
}

.hero-logo:hover {
  animation-duration: 2.5s;
  filter: drop-shadow(0 0 35px rgba(255, 255, 255, 0.7)) drop-shadow(0 0 80px rgba(148, 118, 85, 0.8));
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4.5vw, 56px);
  line-height: 1.1;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  white-space: nowrap;
}

.hero-title .ht-grad {
  color: var(--bronze);
  background: linear-gradient(90deg, #947655, #d6c0a7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.6);
  max-width: 460px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

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

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.4);
  animation: bounce 2s infinite;
  cursor: pointer;
  text-decoration: none;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* PERSOS SECTION */
.section-persos {
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.section-persos::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(148, 118, 85, 0.15), transparent 60%);
  pointer-events: none;
}

.sec-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  text-align: center;
  margin-bottom: 12px;
}

.sec-title span {
  color: var(--bronze);
}

.sec-desc {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  max-width: 500px;
  margin: 0 auto 64px;
  font-size: 14px;
  line-height: 1.6;
}

.persos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 40px;
  max-width: 860px;
  margin: 0 auto;
}

.perso-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  position: relative;
  transition: transform 0.3s ease;
}

.perso-card:hover {
  transform: translateY(-4px);
}

.perso-art-frame {
  position: relative;
  width: 250px;
  height: 250px;
  margin-bottom: -32px;
  z-index: 2;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom: none;
  background: #1a120b;
}

.perso-art-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}

.perso-card:hover .perso-art-img {
  transform: scale(1.08);
}

.perso-body.torn-paper {
  background: #f6f5f0;
  color: #111;
  padding: 22px 18px 30px;
  width: 100%;
  max-width: 310px;
  position: relative;
  z-index: 3;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 10px),
    97% 100%,
    93% calc(100% - 7px),
    89% 100%,
    84% calc(100% - 10px),
    80% 100%,
    75% calc(100% - 6px),
    71% 100%,
    66% calc(100% - 11px),
    61% 100%,
    57% calc(100% - 7px),
    52% 100%,
    48% calc(100% - 10px),
    43% 100%,
    38% calc(100% - 6px),
    34% 100%,
    29% calc(100% - 9px),
    25% 100%,
    20% calc(100% - 7px),
    16% 100%,
    11% calc(100% - 10px),
    7% 100%,
    0 calc(100% - 11px)
  );
}

.perso-body.torn-paper .perso-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.perso-body.torn-paper .tag-fam {
  background: #f59e0b;
  color: #000;
}

.perso-body.torn-paper .tag-pol {
  background: #2563eb;
  color: #fff;
}

.perso-body.torn-paper .tag-gov {
  background: #dc2626;
  color: #fff;
}

.perso-body.torn-paper .perso-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 25px;
  letter-spacing: 0.05em;
  color: #000;
  margin-bottom: 6px;
  line-height: 1;
}

.perso-body.torn-paper .perso-desc {
  font-size: 11px;
  color: #1a1a1a;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* STATS SECTION */
.sec-about {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.stat-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  padding: 28px;
  transition: border-color 0.3s ease;
}

.stat-card:hover {
  border-color: rgba(148, 118, 85, 0.3);
}

.stat-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}

.stat-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

/* WHITELIST SECTION */
.wl-sec {
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
}

.wl-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 0%, rgba(148, 118, 85, 0.12), transparent 50%),
              radial-gradient(ellipse at 80% 100%, rgba(139, 94, 60, 0.1), transparent 50%);
  pointer-events: none;
}

.wl-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.wl-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--bronze);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.wl-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 88px);
  line-height: 0.95;
  margin-bottom: 16px;
}

.wl-title .wl-grad {
  background: linear-gradient(90deg, #fff, #947655);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wl-lead {
  color: rgba(255, 255, 255, 0.55);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 48px;
}

.wl-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
}

/* STEPS BAR */
.steps-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}

.step-btn {
  flex: 1;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 0;
}

.step-bar-line {
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.step-btn.active .step-bar-line {
  background: var(--bronze);
  box-shadow: 0 0 14px var(--bronze-glow);
}

.step-lbl {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 12px;
  transition: color 0.3s ease;
}

.step-btn.active .step-lbl {
  color: #fff;
}

.step-lbl svg {
  width: 14px;
  height: 14px;
}

/* FORM CARD */
.form-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(8px);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  inset-x: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(148, 118, 85, 0.6), transparent);
}

.admin-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
  scrollbar-color: var(--bronze) rgba(0, 0, 0, 0.5);
}

.admin-tabs::-webkit-scrollbar {
  height: 4px;
}

.admin-tabs::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
}

.admin-tabs::-webkit-scrollbar-thumb {
  background: var(--bronze);
  border-radius: 4px;
}

.form-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 32px;
}

.fci {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(148, 118, 85, 0.4);
  background: rgba(148, 118, 85, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bronze);
}

.fci svg {
  width: 20px;
  height: 20px;
}

.fstep-num {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 700;
}

.fstep-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.05em;
}

.fstep-hint {
  margin-left: auto;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

/* FIELDS */
.field {
  margin-bottom: 20px;
}

.flbl {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
}

.finput {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 12px 16px;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.finput::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.finput:focus {
  border-color: var(--bronze);
  box-shadow: 0 0 0 3px rgba(148, 118, 85, 0.15);
}

textarea.finput {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease;
  font-family: 'Space Grotesk', sans-serif;
}

.btn-back:hover {
  color: #fff;
}

.btn-back:disabled {
  opacity: 0.3;
  cursor: default;
}

.fstep {
  display: none;
}

.fstep.active {
  display: block;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: translateX(0); }
}

/* SIDEBAR & CARDS */
.wl-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  padding: 20px;
  transition: border-color 0.3s ease;
}

.info-card:hover {
  border-color: rgba(148, 118, 85, 0.35);
}

.ic-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.ic-head svg {
  width: 16px;
  height: 16px;
  color: var(--bronze);
}

.ic-head span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.45);
}

.ic-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: #fff;
  margin-bottom: 4px;
}

.ic-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.tips-card {
  border: 1px solid rgba(148, 118, 85, 0.3);
  border-radius: 12px;
  background: rgba(148, 118, 85, 0.05);
  padding: 20px;
}

.tips-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--bronze);
  margin-bottom: 12px;
}

.tips-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tips-list li {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.tips-list li span {
  color: var(--bronze);
  flex-shrink: 0;
}

/* CONFIRM STEP */
.confirm-sec {
  margin-bottom: 24px;
}

.confirm-sec h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 6px;
}

.confirm-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 13px;
}

.confirm-row span:first-child {
  color: rgba(255, 255, 255, 0.5);
}

.confirm-row span:last-child {
  color: #fff;
  font-weight: 500;
  max-width: 60%;
  text-align: right;
}

.chk-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.chk-field input {
  width: 16px;
  height: 16px;
  accent-color: var(--bronze);
  margin-top: 2px;
  flex-shrink: 0;
}

.chk-field label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  line-height: 1.5;
}

.chk-field a {
  color: var(--bronze);
  text-decoration: none;
}

/* SUCCESS BOX */
.success-box {
  text-align: center;
  padding: 60px 40px;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(148, 118, 85, 0.1);
  border: 2px solid var(--bronze);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--bronze);
}

.success-icon svg {
  width: 40px;
  height: 40px;
}

.success-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.success-desc {
  color: rgba(255, 255, 255, 0.55);
  max-width: 400px;
  margin: 0 auto 24px;
  line-height: 1.65;
}

.success-id {
  display: inline-block;
  background: rgba(148, 118, 85, 0.1);
  border: 1px solid rgba(148, 118, 85, 0.3);
  border-radius: 6px;
  padding: 10px 20px;
  font-family: monospace;
  color: var(--bronze);
  font-size: 13px;
  letter-spacing: 0.1em;
}

/* REGLEMENT SECTION */
.regl-sec {
  padding: 140px 24px 80px;
  position: relative;
}

.regl-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.regl-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--bronze);
  margin-bottom: 12px;
}

.regl-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 88px);
  line-height: 0.95;
  margin-bottom: 12px;
}

.regl-desc {
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 40px;
}

.regl-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 6px;
  margin-bottom: 48px;
}

.rtab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 110px;
  padding: 12px 8px;
  border-radius: 8px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
  font-family: 'Space Grotesk', sans-serif;
}

.rtab svg {
  width: 20px;
  height: 20px;
}

.rtab:hover {
  color: rgba(255, 255, 255, 0.75);
}

.rtab.active {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-bottom: 2px solid var(--bronze);
}

.regl-content {
  display: none;
}

.regl-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.rc-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}

.rules-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rule-item {
  display: flex;
  gap: 20px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.2s ease;
}

.rule-item:hover {
  border-color: rgba(148, 118, 85, 0.2);
}

.rule-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--bronze);
  min-width: 32px;
  line-height: 1.4;
}

.rule-t {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* BOUTIQUE SECTION */
.bout-sec {
  padding: 120px 24px 80px;
}

.bout-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.bout-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--bronze);
  margin-bottom: 8px;
}

.bout-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.bout-desc {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
}

.bout-topbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 32px;
}

.pts-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(148, 118, 85, 0.12);
  border: 1px solid rgba(148, 118, 85, 0.3);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 13px;
  font-weight: 600;
}

.pdot {
  width: 20px;
  height: 20px;
  background: var(--purple-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.btn-obronze {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--bronze);
  background: transparent;
  color: var(--bronze);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: background 0.2s ease;
  font-family: 'Space Grotesk', sans-serif;
}

.btn-obronze:hover {
  background: rgba(148, 118, 85, 0.1);
}

.btn-owhite {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: background 0.2s ease;
  font-family: 'Space Grotesk', sans-serif;
}

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

.boosters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.bcard {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.bcard:hover {
  border-color: rgba(148, 118, 85, 0.3);
  transform: translateY(-3px);
}

.bcard-body {
  padding: 20px;
}

.bcard-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.bcard-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
  line-height: 1.5;
}

.bcard-price {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 700;
  color: var(--bronze);
  margin-bottom: 12px;
}

.qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.qty-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.35);
}

.qty-inp {
  width: 56px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 6px 10px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  text-align: center;
}

.qty-tot {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.btn-buy {
  width: 100%;
  padding: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-buy:hover {
  background: rgba(148, 118, 85, 0.1);
  border-color: var(--bronze);
  color: var(--bronze);
}

.transfer-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-send {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(148, 118, 85, 0.15);
  border: 1px solid rgba(148, 118, 85, 0.4);
  border-radius: 6px;
  color: #c9ad8b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: background 0.2s ease;
  font-family: 'Space Grotesk', sans-serif;
}

.btn-send:hover {
  background: rgba(148, 118, 85, 0.25);
}

.btn-send svg {
  width: 14px;
  height: 14px;
}

/* CARTES TCG SECTION */
.cartes-sec {
  padding: 120px 24px 80px;
}

.cartes-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cartes-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--bronze);
  margin-bottom: 8px;
}

.cartes-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.cartes-desc {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
}

.filters-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.fltr-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.35);
}

.fltr-btn {
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  font-family: 'Space Grotesk', sans-serif;
}

.fltr-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
}

.fltr-btn.active {
  background: rgba(148, 118, 85, 0.1);
  border-color: var(--bronze);
  color: var(--bronze);
}

.fltr-count {
  margin-left: auto;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 600;
}

.cartes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.carte {
  aspect-ratio: 3/4;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(30, 15, 50, 0.95), rgba(10, 5, 20, 0.99));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.carte:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(148, 118, 85, 0.3);
}

.carte-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 215, 0, 0.3) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
}

.carte-lock {
  color: rgba(255, 255, 255, 0.2);
  z-index: 1;
}

.carte-lock svg {
  width: 28px;
  height: 28px;
}

.rarity-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.r-common { background: rgba(255, 255, 255, 0.15); }
.r-rare { background: linear-gradient(90deg, #3b82f6, #8b5cf6); }
.r-elite { background: linear-gradient(90deg, #f59e0b, #ef4444); }

/* COMPTE SECTION */
.compte-sec {
  padding: 120px 24px 80px;
}

.compte-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.compte-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.compte-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  letter-spacing: 0.05em;
}

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

.btn-deco {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: background 0.2s ease;
  font-family: 'Space Grotesk', sans-serif;
}

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

.compte-tabs {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 40px;
}

.ctab {
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  background: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
  font-family: 'Space Grotesk', sans-serif;
}

.ctab:hover {
  color: rgba(255, 255, 255, 0.75);
}

.ctab.active {
  color: #fff;
  border-bottom-color: var(--bronze);
}

.ctab svg {
  width: 14px;
  height: 14px;
}

.ctab-content {
  display: none;
}

.ctab-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.compte-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.cstat {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  padding: 24px;
}

.cstat-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}

.cstat-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: #fff;
}

.cblock {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  padding: 24px;
  margin-bottom: 20px;
}

.cblock-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #fff;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cblock-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.pseudo-form {
  display: flex;
  gap: 12px;
}

.pseudo-form .finput {
  flex: 1;
}

.btn-save {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 0 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
  font-family: 'Space Grotesk', sans-serif;
}

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

.quetes-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #fff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.quete-item {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  padding: 16px;
  margin-bottom: 12px;
}

.qrow1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.qname {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.qrew {
  font-size: 12px;
  color: var(--bronze);
}

.qbar-wrap {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  margin-bottom: 10px;
}

.qbar {
  height: 100%;
  border-radius: 2px;
  background: var(--bronze);
}

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

.qprog {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
}

.btn-reclaim {
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  background: rgba(148, 118, 85, 0.1);
  border: 1px solid rgba(148, 118, 85, 0.3);
  border-radius: 6px;
  color: var(--bronze);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Space Grotesk', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.btn-reclaim:hover {
  background: rgba(148, 118, 85, 0.25);
  transform: translateY(-1px);
}

.carte-perso-block {
  border: 1px solid rgba(148, 118, 85, 0.2);
  border-radius: 10px;
  background: rgba(148, 118, 85, 0.03);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.btn-cmd {
  padding: 10px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Space Grotesk', sans-serif;
}

/* MES DECKS SECTION */
.decks-sec {
  padding: 120px 24px 80px;
}

.decks-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.decks-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.btn-newdeck {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, var(--purple-dark), var(--purple));
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s ease, box-shadow 0.2s ease;
}

.btn-newdeck:hover {
  opacity: 0.85;
  box-shadow: 0 0 24px rgba(148, 118, 85, 0.4);
}

.decks-empty {
  text-align: center;
  padding: 80px 20px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.decks-empty svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: block;
  opacity: 0.3;
}

.decks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.deck-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.deck-card:hover {
  border-color: rgba(148, 118, 85, 0.4);
  transform: translateY(-2px);
}

.deck-banner {
  height: 100px;
  background: linear-gradient(135deg, #1f160d, #2e2114);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.deck-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(148, 118, 85, 0.3), transparent 70%);
  pointer-events: none;
}

.deck-banner span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 1;
}

.deck-info {
  padding: 16px;
}

.deck-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.deck-meta {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
}

.deck-actions {
  display: flex;
  gap: 8px;
  padding: 0 16px 16px;
}

.deck-btn {
  flex: 1;
  padding: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s ease;
  font-family: 'Space Grotesk', sans-serif;
}

.deck-btn-edit {
  background: rgba(148, 118, 85, 0.1);
  border: 1px solid rgba(148, 118, 85, 0.3);
  color: #c9ad8b;
}

.deck-btn-edit:hover {
  background: rgba(148, 118, 85, 0.2);
}

.deck-btn-del {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #fca5a5;
}

.deck-btn-del:hover {
  background: rgba(239, 68, 68, 0.15);
}

/* MODAL DECK BUILDER */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background: #0a0a14;
  border: 1px solid rgba(148, 118, 85, 0.25);
  border-radius: 16px;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: sticky;
  top: 0;
  background: #0a0a14;
  z-index: 1;
}

.modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.08em;
}

.modal-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: #fff;
}

.modal-body {
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
}

.builder-pool {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 4px;
}

.builder-card {
  aspect-ratio: 3/4;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(30, 15, 50, 0.95), rgba(10, 5, 20, 0.99));
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.1em;
  transition: border-color 0.2s ease;
  position: relative;
}

.builder-card:hover {
  border-color: rgba(148, 118, 85, 0.5);
}

.builder-card.selected {
  border-color: var(--purple);
  box-shadow: 0 0 12px rgba(148, 118, 85, 0.3);
}

.builder-card.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.builder-card .rarity-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.deck-slots {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.deck-slot {
  height: 36px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.1em;
  transition: border-color 0.2s ease;
}

.deck-slot.filled {
  border-style: solid;
  border-color: rgba(148, 118, 85, 0.35);
  color: #c9ad8b;
  background: rgba(148, 118, 85, 0.06);
}

.modal-foot {
  padding: 16px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* COMBAT EN LIGNE SECTION */
.combat-sec {
  padding: 0;
}

.combat-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 60px;
  position: relative;
  overflow: hidden;
}

.combat-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(148, 118, 85, 0.18), transparent 65%);
  pointer-events: none;
}

.combat-badge-anim {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(148, 118, 85, 0.12);
  border: 1px solid rgba(148, 118, 85, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #c9ad8b;
  margin-bottom: 24px;
}

.combat-badge-anim::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--purple);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.combat-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 8vw, 100px);
  line-height: 0.9;
  margin-bottom: 20px;
}

.combat-title span {
  color: var(--bronze);
}

.combat-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}

.btn-fight {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, var(--purple-dark), var(--purple));
  border: none;
  border-radius: 8px;
  padding: 16px 36px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 32px rgba(148, 118, 85, 0.3);
}

.btn-fight:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(148, 118, 85, 0.45);
}

.combat-modes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  width: 100%;
  margin-top: 60px;
}

.cmode-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  padding: 24px;
  text-align: left;
  transition: border-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.cmode-card:hover {
  border-color: rgba(148, 118, 85, 0.4);
  transform: translateY(-3px);
}

.cmode-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.cmode-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.cmode-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

.cmode-players {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--bronze);
  margin-top: 10px;
}

/* MARCHE SECTION */
.marche-sec {
  padding: 120px 24px 80px;
}

.marche-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.marche-topbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.marche-search {
  flex: 1;
  min-width: 200px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 10px 16px;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}

.marche-search:focus {
  border-color: rgba(148, 118, 85, 0.5);
}

.marche-search::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.marche-tabs {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 4px;
}

.mtab {
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  font-family: 'Space Grotesk', sans-serif;
}

.mtab.active {
  background: rgba(148, 118, 85, 0.15);
  color: #c9ad8b;
}

.marche-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.marche-card {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.marche-card:hover {
  border-color: rgba(148, 118, 85, 0.3);
  transform: translateY(-2px);
}

.marche-card-img {
  height: 140px;
  background: linear-gradient(135deg, #2b1f13, #150d07);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.marche-card-body {
  padding: 12px;
}

.marche-card-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.marche-card-seller {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 10px;
}

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

.marche-price-val {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 700;
  color: var(--bronze);
}

.btn-acheter {
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  background: rgba(148, 118, 85, 0.1);
  border: 1px solid rgba(148, 118, 85, 0.3);
  border-radius: 4px;
  color: var(--bronze);
  cursor: pointer;
  transition: background 0.2s ease;
  font-family: 'Space Grotesk', sans-serif;
}

.btn-acheter:hover {
  background: rgba(148, 118, 85, 0.2);
}

.vendre-block {
  border: 1px solid rgba(148, 118, 85, 0.2);
  border-radius: 12px;
  background: rgba(148, 118, 85, 0.04);
  padding: 24px;
  margin-top: 40px;
}

.vendre-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.vendre-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: flex-end;
}

/* CLASSEMENT SECTION */
.class-sec {
  padding: 120px 24px 80px;
}

.class-inner {
  max-width: 900px;
  margin: 0 auto;
}

.class-podium {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  margin: 40px 0 48px;
}

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

.podium-rank {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
}

.podium-avatar {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  color: #fff;
  border: 3px solid transparent;
}

.podium-1 .podium-avatar {
  width: 80px;
  height: 80px;
  font-size: 28px;
  background: linear-gradient(135deg, #947655, #d6c0a7);
  border-color: #947655;
  box-shadow: 0 0 24px rgba(148, 118, 85, 0.5);
}

.podium-2 .podium-avatar {
  width: 64px;
  height: 64px;
  font-size: 22px;
  background: linear-gradient(135deg, #6b7280, #9ca3af);
  border-color: #9ca3af;
}

.podium-3 .podium-avatar {
  width: 56px;
  height: 56px;
  font-size: 18px;
  background: linear-gradient(135deg, #92400e, #d97706);
  border-color: #d97706;
}

.podium-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #fff;
}

.podium-pts {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.podium-block {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.podium-bar {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px 4px 0 0;
  width: 80px;
}

.podium-1 .podium-bar {
  height: 80px;
  background: rgba(148, 118, 85, 0.15);
  border-color: rgba(148, 118, 85, 0.3);
}

.podium-2 .podium-bar { height: 56px; }
.podium-3 .podium-bar { height: 40px; }

.class-table {
  width: 100%;
  border-collapse: collapse;
}

.class-table th {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.35);
  padding: 10px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.class-table td {
  padding: 12px 16px;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.class-table tr:last-child td {
  border-bottom: none;
}

.class-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.crank-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.3);
}

.crank-1 { color: #947655; }
.crank-2 { color: #9ca3af; }
.crank-3 { color: #d97706; }

.cplayer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cplayer-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.cwins { color: var(--bronze); font-weight: 700; }
.cpts { font-weight: 700; }

.class-tabs {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 32px;
}

.cltab {
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  font-family: 'Space Grotesk', sans-serif;
}

.cltab.active {
  background: rgba(148, 118, 85, 0.15);
  color: var(--bronze);
}

/* POINTS / TOP UP SECTION */
.points-sec {
  padding: 120px 24px 80px;
}

.points-inner {
  max-width: 900px;
  margin: 0 auto;
}

.points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.ppack {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: border-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.ppack:hover {
  border-color: rgba(148, 118, 85, 0.4);
  transform: translateY(-4px);
}

.ppack.popular {
  border-color: rgba(148, 118, 85, 0.5);
  background: rgba(148, 118, 85, 0.05);
}

.ppack-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--purple-dark), var(--purple));
  border-radius: 100px;
  padding: 3px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #fff;
  white-space: nowrap;
}

.ppack-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  line-height: 1;
  color: #fff;
  margin: 12px 0 4px;
}

.ppack-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.ppack-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--bronze);
  margin-bottom: 4px;
}

.ppack-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}

.btn-ppack {
  width: 100%;
  padding: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-ppack-def {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.75);
}

.btn-ppack-def:hover {
  border-color: rgba(148, 118, 85, 0.5);
  color: #c9ad8b;
  background: rgba(148, 118, 85, 0.06);
}

.btn-ppack-pop {
  background: linear-gradient(90deg, var(--purple-dark), var(--purple));
  border: none;
  color: #fff;
  box-shadow: 0 4px 20px rgba(148, 118, 85, 0.3);
}

.btn-ppack-pop:hover {
  opacity: 0.9;
}

.points-faq {
  margin-top: 48px;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 16px 0;
}

.faq-q {
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
}

.faq-q svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.4);
}

.faq-q.open svg {
  transform: rotate(180deg);
}

.faq-a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-a.open {
  max-height: 200px;
  padding-top: 10px;
}

.points-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  justify-content: center;
}

.pay-method {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
}

.pay-method svg {
  width: 20px;
  height: 20px;
}

/* FOOTER */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: #000;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
}

footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

footer nav a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s ease;
}

footer nav a:hover {
  color: var(--bronze);
}

.footer-motto {
  color: var(--bronze);
  letter-spacing: 0.2em;
}

/* TOAST NOTIFICATION */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid rgba(148, 118, 85, 0.4);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 13px;
  color: #fff;
  max-width: 320px;
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-title {
  font-weight: 700;
  color: var(--bronze);
  margin-bottom: 4px;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1023px) {
  .nav-links,
  .nav-socials,
  .btn-login {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .wl-grid {
    grid-template-columns: 1fr;
  }
  .wl-sidebar {
    display: none;
  }
  .cartes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .compte-stats {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .combat-modes {
    grid-template-columns: 1fr 1fr;
  }
  .points-grid {
    grid-template-columns: 1fr;
  }
  .modal-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .persos-grid {
    grid-template-columns: 1fr;
  }
  .cartes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .compte-stats {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .boosters-grid {
    grid-template-columns: 1fr;
  }
  .form-card {
    padding: 24px;
  }
  .grid2 {
    grid-template-columns: 1fr;
  }
  .pseudo-form {
    flex-direction: column;
  }
  .carte-perso-block {
    flex-direction: column;
  }
  .transfer-form {
    flex-direction: column;
  }
  .combat-modes {
    grid-template-columns: 1fr;
  }
  .class-podium {
    gap: 6px;
  }
  .builder-pool {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-title {
    font-size: clamp(42px, 10vw, 72px);
  }
  .wl-title, .regl-title {
    font-size: clamp(40px, 8vw, 64px);
  }
  .points-grid {
    grid-template-columns: 1fr;
  }
  .hero-logo {
    height: 140px;
    max-height: 25vh;
  }
  .hero-title {
    white-space: normal;
    font-size: clamp(24px, 6vw, 36px);
  }
  .bout-title, .cartes-title, .compte-title {
    font-size: 44px;
  }
}

/* ADMIN PANEL STYLES */
.admin-sec {
  padding: 120px 24px 80px;
}

.admin-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.admin-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.admin-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--bronze);
  margin-bottom: 8px;
}

.admin-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  letter-spacing: 0.05em;
  line-height: 1;
}

.admin-sub {
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.astat-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  padding: 20px;
}

.astat-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 6px;
}

.astat-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: #fff;
}

.astat-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.admin-tabs {
  display: flex;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 32px;
  overflow-x: auto;
}

.atab {
  padding: 12px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.45);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
  font-family: 'Space Grotesk', sans-serif;
  white-space: nowrap;
}

.atab:hover {
  color: rgba(255, 255, 255, 0.8);
}

.atab.active {
  color: #fff;
  border-bottom-color: var(--bronze);
}

.admin-tab-content {
  display: none;
}

.admin-tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.wl-app-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  padding: 20px;
  margin-bottom: 16px;
}

.wl-app-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

.wl-app-user {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: #fff;
}

.wl-app-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.wl-app-body {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 16px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.wl-app-actions {
  display: flex;
  gap: 10px;
}

.btn-acc {
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: 6px;
  color: #86efac;
  cursor: pointer;
  transition: background 0.2s ease;
  font-family: 'Space Grotesk', sans-serif;
}

.btn-acc:hover {
  background: rgba(34, 197, 94, 0.25);
}

.btn-ref {
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: 6px;
  color: #fca5a5;
  cursor: pointer;
  transition: background 0.2s ease;
  font-family: 'Space Grotesk', sans-serif;
}

.btn-ref:hover {
  background: rgba(239, 68, 68, 0.25);
}

.audit-stream {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 360px;
  overflow-y: auto;
  padding-right: 4px;
}

.audit-item {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 10px 14px;
  line-height: 1.5;
}

.audit-time {
  font-family: monospace;
  font-size: 11px;
  color: var(--bronze);
  margin-right: 8px;
}

@media (max-width: 1023px) {
  .admin-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .admin-stats-grid {
    grid-template-columns: 1fr;
  }
  .admin-title {
    font-size: 44px;
  }
}