:root {
  --bg: #0B0B0D;
  --bg-2: #111318;
  --ink: #ECEEF3;
  --muted: #9aa3b2;
  --gold: #D4AF37;
  --red: #E50914;
  --blue: #1E2A78;
  --outline: rgba(255,255,255,.1);
  --glass: rgba(255,255,255,.06);
  --radius: 16px;
  --shadow: 0 10px 25px rgba(0,0,0,.24);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  height: 100%;
  scroll-behavior: smooth;
  background: radial-gradient(1200px 600px at 10% -10%, rgba(229,9,20,.15), transparent),
             radial-gradient(1000px 500px at 100% 0%, rgba(212,175,55,.14), transparent),
             linear-gradient(180deg,var(--bg) 0%,var(--bg-2) 100%);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* === GLOBAL === */
a { color: inherit; text-decoration: none; transition: .3s; }
img { max-width: 100%; display: block; border-radius: var(--radius); }
.container { width: min(1180px, 92%); margin-inline: auto; }

/* ======================================================
   🧭 NAVBAR MEEKY’S EVENT (Rouge -> Bordeaux + Gold)
====================================================== */

.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 999;

  /* 🔥 Dégradé MEEKY’S EVENT */
  background: linear-gradient(90deg,
      #7a0000 0%,
      #9b0000 25%,
      #b30000 50%,
      #7a0000 100%
  );

  border-bottom: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .9rem 0;
}

/* LOGO */
.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
}
.brand strong {
  color: var(--gold);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: .4px;
}
.brand small {
  color: #f0f0f0;
  opacity: .85;
}

/* =======================
     NAV LINKS DESKTOP
======================= */
.nav-links {
  display: flex;
  gap: 1.8rem;
}

.nav-links a {
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  position: relative;
  transition: .2s ease;
}

/* LIGNE HOVER GOLD */
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px; left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: .3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--gold);
}

/* =======================
     BURGER
======================= */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.burger span {
  height: 3px;
  width: 28px;
  background: #fff;
  border-radius: 4px;
  transition: .3s ease;
}

/* Animation burger */
.burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =======================
     MENU MOBILE
======================= */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  max-width: 320px;
  height: 100vh;

  /* 🔥 Menu mobile rouge/bordeaux */
  background: linear-gradient(180deg, #7a0000, #b30000);

  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  transition: right .35s ease;

  box-shadow: -5px 0 20px rgba(0,0,0,.35);
  z-index: 1000;
}

.mobile-nav.show {
  right: 0;
}

.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
}
.mobile-nav a:hover {
  color: var(--gold);
}

/* =======================
   OVERLAY
======================= */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  transition: .3s ease;
}
.overlay.show {
  opacity: 1;
  pointer-events: all;
}

/* =======================
   RESPONSIVE
======================= */
@media(max-width: 860px){
  .nav-links,
  .desktop-only {
    display: none !important;
  }

  .burger {
    display: flex;
  }
}
/* === SLIDER === */
.slider-section { position: relative; overflow: hidden; height: 70vh; }
.slider-container { position: relative; width: 100%; height: 100%; }
.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1s ease;
}
.slide img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.6);
}
.slide-caption {
  position: absolute; bottom: 12%; left: 8%;
  color: #fff;
  text-shadow: 0 3px 10px rgba(0,0,0,.7);
}
.slide-caption h2 {
  font-size: clamp(26px, 5vw, 48px);
  font-weight: 900;
  margin-bottom: 10px;
}
.slider-controls {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  display: flex; justify-content: space-between;
  width: 100%; padding: 0 20px;
}
.slider-controls button {
  background: rgba(0,0,0,.4);
  border: none; color: white;
  font-size: 28px;
  border-radius: 50%;
  width: 44px; height: 44px;
  cursor: pointer; transition: .3s;
}
.slider-controls button:hover { background: rgba(255,255,255,.3); }

/* === HERO === */
.hero-section {
  padding: 80px 0 60px;
  background: radial-gradient(900px 500px at 0% 0%, rgba(229,9,20,.18), transparent 60%),
              radial-gradient(900px 500px at 100% 0%, rgba(30,42,120,.20), transparent 60%);
}
.hero-section .container {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 30px; align-items: center;
}
.hero-text h1 {
  font-size: clamp(30px, 4.2vw, 54px);
  font-weight: 900;
  margin: 0;
  line-height: 1.1;
}
.highlight-red { background: linear-gradient(90deg, var(--red), #ff5a5a); -webkit-background-clip: text; color: transparent; }
.highlight-gold { background: linear-gradient(90deg, var(--gold), #ffdd87); -webkit-background-clip: text; color: transparent; }

.hero-text p { margin-top: 14px; color: var(--muted); max-width: 640px; line-height: 1.6; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.hero-tags span { font-size: 13px; padding: 8px 12px; border-radius: 999px; background: var(--glass); border: 1px solid var(--outline); }
.hero-actions { display: flex; gap: 12px; margin-top: 20px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 18px; border-radius: 12px;
  font-weight: 800; border: 1px solid transparent; transition: .25s;
}
.btn-gold { background: var(--gold); color: #111; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(212,175,55,.25); }
.btn-dark { background: #0b0b0f; border-color: var(--outline); }
.btn-dark:hover { background: #121219; }

.hero-card {
  border: 1px solid var(--outline);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border-radius: 18px;
  padding: 22px; box-shadow: var(--shadow);
}
.hero-card h3 { margin: 0 0 8px; }
.hero-card p { color: var(--muted); margin: 0; }

/* === FEATURES & ARTISTS === */
.features-section { padding: 70px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.feature-box {
  border: 1px solid var(--outline);
  border-radius: 16px;
  padding: 18px;
  background: rgba(255,255,255,.03);
  transition: .3s;
}
.feature-box:hover { border-color: var(--gold); transform: translateY(-3px); }

/* === UPCOMING EVENTS === */
.upcoming-section { padding: 70px 0; }
.upcoming-section h2 {
  font-weight: 900;
  font-size: 26px;
  margin-bottom: 30px;
}
.upcoming-list { display: flex; flex-direction: column; gap: 18px; }

.event-card {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  background: #131316;
  border-radius: 20px;
  border: 1px solid var(--outline);
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
  transition: .3s;
  flex-wrap: wrap;
}
.event-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212,175,55,.4);
}
.event-date {
  background: #0E0E12;
  border-radius: 14px;
  padding: 10px 16px;
  text-align: center;
  border: 1px solid var(--outline);
  min-width: 70px;
}
.event-date .day {
  font-size: 22px; font-weight: 900;
  color: var(--ink);
  display: block; line-height: 1;
}
.event-date .month {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
}
.event-info { flex: 1; margin-left: 20px; }
.event-info h3 { font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.event-info p { font-size: 14px; color: var(--muted); }
.event-action { text-align: right; }
.event-action .price {
  display: block; font-size: 14px; color: var(--muted); margin-bottom: 6px;
}
.btn-buy {
  background: linear-gradient(90deg,var(--red),#ff4a4a);
  color: #fff; font-weight: 800;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: 0 0 12px rgba(229,9,20,.3);
  transition: .25s;
}
.btn-buy:hover { background: linear-gradient(90deg,#ff6262,var(--red)); transform: translateY(-2px); }

/* === CTA === */
.cta-section {
  padding: 80px 0 100px;
  position: relative;
  text-align: center;
}
.cta-section::before {
  content:"";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 300px at 50% 0%, rgba(212,175,55,.12), transparent 60%);
  pointer-events: none;
}
.btn-glow {
  background: linear-gradient(90deg, var(--gold), #ffdd87);
  color: #111;
  font-weight: 900;
  padding: 14px 20px;
  border-radius: 14px;
  display: inline-block;
  box-shadow: 0 12px 35px rgba(212,175,55,.25);
  transition: .3s;
}
.btn-glow:hover { transform: translateY(-3px); }
/* ================================
   🔥 LOADER MEEKYS EVENT
================================ */
#meekys-loader {
  position: fixed;
  inset: 0;
  background: #0B0B0D;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999999;
  opacity: 1;
  transition: opacity .6s ease;
}

#meekys-loader.hide {
  opacity: 0;
  pointer-events: none;
}

.loader-content {
  text-align: center;
}

/* TEXTE STATIQUE */
.loader-title-top {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 10px;
  opacity: 0.9;
}

/* TEXTE ANIMÉ ÉCRITURE */
.loader-typing {
  color: #D4AF37; /* OR ROYAL */
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  min-height: 40px;
}

/* Curseur clignotant */
.cursor {
  display: inline-block;
  width: 5px;
  background: #D4AF37;
  margin-left: 5px;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Loader circulaire */
.loader-spinner {
  margin: 25px auto 0;
  width: 45px;
  height: 45px;
  border: 4px solid rgba(255,255,255,0.1);
  border-top: 4px solid #D4AF37;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Rotation */
@keyframes spin {
  to { transform: rotate(360deg); }
}


/* =============================================
   🎧 YOUTUBE SECTION – CLEAN & ELEGANT
============================================= */

.youtube-section {
    padding: 50px 0;
    text-align: center;
}

.youtube-section h2 {
    color: #D4AF37;
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 800;
}

/* Player */
.yt-player-box {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}

.yt-player-box iframe {
    width: 100%;
    max-width: 480px;
    height: 260px;
    border-radius: 14px;
    border: 1px solid rgba(212,175,55,0.35);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* List buttons */
.yt-list {
    width: 100%;
    max-width: 480px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.yt-item {
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 10px;
    color: #fff;
    text-align: left;
    cursor: pointer;
    font-size: 0.95rem;
    transition: .25s;
}

.yt-item:hover {
    background: rgba(212,175,55,0.1);
    transform: translateX(4px);
    border-color: rgba(212,175,55,0.5);
}

/* Mobile optimisation */
@media (max-width: 350px){
    .yt-player-box iframe {
        height: 200px;
    }
}

/* =============================================
   🔍 SEARCH BAR – MEEKY’S EVENT PREMIUM GOLD
============================================= */

.search-bar {
    margin: 30px 0;
    display: flex;
    width: 100%;
    max-width: 480px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(212,175,55,0.35);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.3);
}

.search-bar input {
    flex: 1;
    padding: 14px 16px;
    background: transparent;
    border: none;
    color: white;
    font-size: 0.95rem;
    outline: none;
}

.search-bar input::placeholder {
    color: #d7d7d7;
    letter-spacing: 0.3px;
}

.search-bar button {
    background: #D4AF37;
    border: none;
    padding: 0 20px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    transition: .25s;
}

.search-bar button:hover {
    background: #c89c2c;
}

/* MOBILE OPTIMISATION */
@media (max-width: 350px){
    .search-bar {
        max-width: 100%;
    }
}
/* === FORMULAIRES === */
form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="url"],
select,
textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--outline);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--ink);
  font-size: 15px;
  font-family: inherit;
  transition: all .25s ease;
  outline: none;
  width: 100%;
}

input::placeholder,
textarea::placeholder {
  color: var(--muted);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(212,175,55,.3);
  background: rgba(255,255,255,.06);
}

label {
  font-weight: 600;
  color: var(--ink);
  margin-top: 6px;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

button,
.btn--primary {
  background: linear-gradient(90deg, var(--gold), #ffdf7b);
  color: #111;
  font-weight: 900;
  border: none;
  padding: 12px 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: all .25s;
  box-shadow: 0 5px 20px rgba(212,175,55,.25);
}

button:hover,
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212,175,55,.4);
}

.muted {
  color: var(--muted);
  font-size: 14px;
}

/* === UPLOAD FIELD === */
input[type="file"] {
  background: rgba(255,255,255,.03);
  border: 1px dashed var(--outline);
  padding: 12px;
  border-radius: 10px;
  color: var(--muted);
  cursor: pointer;
  transition: .25s;
}

input[type="file"]:hover {
  border-color: var(--gold);
  background: rgba(255,255,255,.06);
}

/* === SECTION TITLES === */
.sec-title {
  font-size: 30px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 12px;
}

/* === RESPONSIVE FORM === */
@media (max-width: 480px) {
  form { padding: 16px !important; }
  input, select, textarea { font-size: 14px; }
  button { width: 100%; }
}
/* === PAGE TARIFS / POURQUOI NOUS REJOINDRE === */
.section {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.04));
  min-height: 100vh;
}

.section__head {
  text-align: center;
  margin-bottom: 40px;
}

.section__title {
  font-size: 34px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 8px;
}

.muted {
  color: var(--muted);
  font-size: 15px;
}

.card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: all .25s ease;
}

.card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* === OFFRES === */
.agenda {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.month {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.05));
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: .3s;
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
}

.month:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(212,175,55,.2);
}

.month__title {
  font-weight: 900;
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--ink);
}

.month p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* === BADGES / TAGS === */
.offer-badge {
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
}

.offer-badge--gold {
  background: linear-gradient(90deg, var(--gold), #ffdf7b);
  color: #111;
}

.offer-badge--red {
  background: linear-gradient(90deg, var(--red), #ff4a4a);
}

.offer-badge--blue {
  background: linear-gradient(90deg, var(--blue), #3b6cff);
}
.choice-grid {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.event-choice {
  background: linear-gradient(90deg,var(--red),#ff3c3c);
  color: #fff;
  border: none;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(229,9,20,.3);
  transition: .3s;
}
.event-choice:hover {
  transform: translateY(-3px);
  background: linear-gradient(90deg,#ff4a4a,var(--red));
}

.smart-form input, .smart-form select, .smart-form textarea {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--outline);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 12px;
  color: var(--ink);
  transition: .25s;
}
.smart-form input:focus, .smart-form select:focus, .smart-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 8px rgba(212,175,55,.3);
}

.ticket-item {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .ticket-item { flex-direction: column; }
  .event-choice { width: 100%; }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .section__title { font-size: 26px; }
  .month__title { font-size: 18px; }
  .card { padding: 20px; }
  .agenda { gap: 16px; }
}
@media (max-width: 420px) {
  .section { padding: 60px 0; }
  .month { padding: 18px; }
}
.btn-small {
  border:none;
  cursor:pointer;
  padding:6px 10px;
  border-radius:8px;
  font-weight:700;
  margin:0 3px;
  transition:.25s;
}
.btn-small.gold {background:var(--gold);color:#111;}
.btn-small.gold:hover {box-shadow:0 0 12px rgba(212,175,55,.4);}
.btn-small.red {background:var(--red);color:#fff;}
.btn-small.red:hover {box-shadow:0 0 12px rgba(229,9,20,.4);}
.btn-small.dark {background:#0B0B0D;color:#fff;border:1px solid var(--outline);}
.btn-small.dark:hover {background:#131316;}
/* === CLASSEMENT LIVE === */
.leaderboard-section {
  padding: 70px 0;
  background: #0E0E12;
}
.bar-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}
.bar-item {
  display: flex;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--outline);
  background: rgba(255,255,255,.03);
  padding: 14px;
  border-radius: 14px;
}
.badge {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(212,175,55,.25), rgba(229,9,14,.22));
  border: 1px solid var(--outline);
  font-weight: 900;
  font-size: 18px;
  color: var(--ink);
}
.bar-wrap { flex: 1; }
.bar {
  height: 10px;
  background: #1a1a22;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--outline);
}
.bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--red));
  box-shadow: 0 0 18px rgba(229,9,20,.35) inset;
  transition: width .8s ease;
}
.bar-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
}
.stats-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:18px;
  margin:30px 0;
}
.stat-box{
  text-align:center;
  padding:20px;
  border-radius:14px;
  border:1px solid var(--outline);
  background:rgba(255,255,255,.03);
}
.stat-box h3{font-size:28px;color:var(--gold);margin:0;}
.stat-box p{color:var(--muted);margin:4px 0 0;}

.classement-list{display:flex;flex-direction:column;gap:16px;margin-top:20px;}
.classement-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  border:1px solid var(--outline);
  padding:10px 16px;
  border-radius:12px;
  background:rgba(255,255,255,.03);
}
.participant-info{display:flex;align-items:center;gap:12px;flex:1;}
.participant-img{
  width:50px;height:50px;object-fit:cover;border-radius:50%;
  border:2px solid var(--gold);
}
.bar-wrap{
  flex:1;margin:0 16px;height:8px;background:#111;
  border-radius:999px;overflow:hidden;border:1px solid var(--outline);
}
.bar-fill{
  height:100%;width:0%;
  background:linear-gradient(90deg,var(--gold),var(--red));
  transition:width .6s ease;
}
.score{min-width:80px;text-align:right;}


form.card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--outline);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
}
form.card input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--outline);
  background: rgba(255,255,255,.05);
  color: var(--ink);
}
form.card input:focus {
  border-color: var(--gold);
  outline: none;
}
.btn--primary {
  background: linear-gradient(90deg,var(--red),var(--gold));
  color:#fff;
  font-weight:800;
  border:none;
  border-radius:12px;
  padding:12px 20px;
  cursor:pointer;
  transition:.3s;
}
.btn--primary:hover {
  transform:translateY(-2px);
  box-shadow:0 6px 18px rgba(229,9,20,.3);
}

/* === FOOTER === */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--outline);
  background: #0B0B0D;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

/* === RESPONSIVE === */
@media (max-width: 960px) {
  .hero-section .container { grid-template-columns: 1fr; text-align: center; }
  .hero-text { order: 2; }
  .hero-card { margin-top: 20px; }
}
@media (max-width: 760px) {
  nav { display: none; }
  header { flex-wrap: wrap; gap: 10px; }
}
@media (max-width: 480px) {
  .event-card { flex-direction: column; align-items: flex-start; gap: 12px; }
  .event-action { text-align: left; }
  .hero-text h1 { font-size: 28px; }
  .btn, .btn-buy, .btn-gold { font-size: 13px; padding: 10px 14px; }
}
/* ============================================================
   📱 VERSION B – MOBILE GOLD PREMIUM (Ultra luxe MEEKY’S)
   Optimisé pour écrans < 360px (320px / 300px / 280px)
============================================================ */

@media (max-width: 360px) {

    /* === RESET ANTI-DÉBORDEMENT === */
    html, body {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        overflow-x: hidden !important;
        background: #0B0B0D !important;
    }

    * {
        max-width: 100% !important;
        box-sizing: border-box;
    }

    /* === COULEURS PREMIUM === */
    :root {
        --gold: #D4AF37;
        --black: #0B0B0D;
        --text-light: #ECEEF3;
        --muted: #9aa3b2;
    }

    /* === TITRES === */
    h1, h2, h3, h4 {
        color: var(--text-light) !important;
        line-height: 1.25 !important;
        font-weight: 700 !important;
    }

    h1 { font-size: 1.25rem !important; }
    h2 { font-size: 1.1rem !important; }
    h3 { font-size: 1rem !important; }

    /* === CONTAINER === */
    .container {
        width: 94% !important;
        margin: auto;
        padding: 0;
    }

    /* === HERO === */
    .hero-section {
        padding: 20px 0 !important;
        background: linear-gradient(180deg, #0B0B0D 0%, #141418 100%);
    }

    .hero-text h1 .highlight-red {
        color: var(--gold) !important;
        font-weight: 800;
    }

    .hero-text p {
        font-size: 0.85rem !important;
        color: var(--muted);
    }

    .hero-tags span {
        background: rgba(255,255,255,0.04);
        color: var(--gold);
        border: 1px solid rgba(212,175,55,0.3);
        font-size: 0.65rem;
        padding: 4px 7px;
        border-radius: 6px;
    }

    .hero-actions a {
        padding: 9px 14px !important;
        font-size: 0.75rem !important;
        border-radius: 8px;
        font-weight: 600;
    }

    /* BTN GOLD */
    .btn-gold {
        background: var(--gold) !important;
        color: #000 !important;
    }

    /* BTN DARK */
    .btn-dark {
        background: #111 !important;
        border: 1px solid #333;
        color: white;
    }

    /* === SLIDER === */
    .slider-container img {
        height: 180px !important;
        object-fit: cover;
        border-radius: 10px;
    }

    .slide-caption h2 {
        background: rgba(0,0,0,0.5);
        padding: 4px 10px;
        border-radius: 6px;
        font-size: 0.85rem !important;
        color: var(--gold) !important;
        font-weight: 700;
    }

    /* === PLAYLIST SPOTIFY GOLD === */
    .spotify-playlist {
        background: #111 !important;
        border: 1px solid rgba(212,175,55,0.25) !important;
        border-radius: 12px;
        padding: 14px !important;
    }

    .spotify-item {
        background: rgba(255,255,255,0.02);
        border: 1px solid rgba(212,175,55,0.15);
        border-radius: 10px;
        padding: 10px;
        gap: 10px;
        transition: 0.2s;
    }

    .spotify-item:hover {
        background: rgba(212,175,55,0.10);
        transform: scale(1.02);
    }

    .spotify-thumb {
        width: 48px !important;
        height: 48px !important;
        border-radius: 6px;
        border: 1px solid rgba(212,175,55,0.4);
    }

    .spotify-info h4 {
        font-size: 0.85rem !important;
        color: var(--gold) !important;
    }

    .spotify-info p {
        font-size: 0.75rem !important;
        color: var(--muted) !important;
    }

    .spotify-btn {
        width: 30px !important;
        height: 30px !important;
        background: var(--gold) !important;
        border-radius: 50%;
        color: black !important;
        font-size: 0.8rem;
        border: none;
    }

    /* === PLAYER === */
    .spotify-player iframe {
        height: 200px !important;
        border: 1px solid rgba(212,175,55,0.2);
        border-radius: 12px;
    }

    /* === CARDS ÉVÉNEMENTS === */
    .event-card {
        background: #111 !important;
        border-radius: 12px;
        padding: 12px !important;
        color: white !important;
        border: 1px solid rgba(212,175,55,0.2);
        flex-direction: column;
    }

    .event-img {
        width: 100%;
        height: 160px;
        border-radius: 10px;
        object-fit: cover;
        border: 1px solid rgba(212,175,55,0.25);
    }

    .event-date .day {
        font-size: 1.2rem !important;
        color: var(--gold);
    }

    .event-date .month {
        font-size: 0.8rem !important;
        color: var(--muted);
    }

    .price {
        color: var(--gold) !important;
        font-weight: 700;
    }

    .btn-buy {
        background: var(--gold) !important;
        color: black !important;
        padding: 8px 12px !important;
        border-radius: 6px;
        font-size: 0.75rem;
    }
}
