:root {
  --rose:         #FFC7F5;
  --rose-vif:     #FF77E6;
  --violet:       #3C007C;
  --violet-clair: #7789FF;
  --violet-deg2:  #5A53BA;
  --magenta:      #8D0091;
  --bleu-nuit:    #0E1350;
  --jaune:        #F8C008;
  --discord:      #5865F2;
  --discord-shadow: #2834B3;
  --ombre:        0 6px 0 0 rgba(141, 0, 143, .97);
}

@font-face {
  font-family: 'Super Bouncer';
  src: url('../fonts/super-bouncer.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body {
  background: var(--rose);
  font-family: 'Poppins', sans-serif;
}

a {
  text-decoration: none;
}

.ls-title {
  font-family: 'Super Bouncer', 'Archivo Black', 'Poppins', sans-serif;
}

/* ===== Navbar ===== */
.ls-navbar {
  background: var(--violet);
  box-shadow: var(--ombre), inset 0 -4px 0 0 var(--rose-vif);
}

.ls-navbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 24px;
  flex-wrap: nowrap;
}

.ls-navbar-logo {
  height: 60px;
  width: auto;
  flex-shrink: 0;
}

.ls-navbar-center {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.ls-navbar-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

.ls-navbar-links a {
  color: #fff;
}

.ls-navbar-links a.active,
.ls-navbar-links a:hover {
  color: var(--rose-vif);
}

.ls-navbar-discord {
  width: 42px;
  height: 42px;
  border-radius: 5px;
  background: var(--discord);
  box-shadow: 0 4px 2px 0 var(--discord-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ls-navbar-discord img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.ls-navbar-boutique {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 16px;
  border-radius: 5px;
  background: var(--rose-vif);
  box-shadow: 0 5px 0 0 var(--magenta);
  color: #fff !important;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
}

.ls-navbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.ls-compte-dropdown {
  position: relative;
}

.ls-compte {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  height: 42px;
  border: 0;
  border-radius: 5px;
  background: rgba(0, 0, 0, .28);
  box-shadow: inset 0 0 0 2px rgba(255, 119, 230, .5);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.ls-compte img {
  border-radius: 4px;
}

.ls-compte i.bi-chevron-down {
  font-size: 11px;
  opacity: .8;
  transition: transform .15s ease;
}

.ls-compte-dropdown.show .ls-compte i.bi-chevron-down {
  transform: rotate(180deg);
}

.ls-dropdown-menu {
  margin-top: 10px !important;
  padding: 8px;
  border: 0;
  border-radius: 10px;
  background: var(--violet);
  box-shadow: var(--ombre), inset 0 -3px 0 0 var(--rose-vif);
}

.ls-dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 7px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

.ls-dropdown-menu .dropdown-item:hover,
.ls-dropdown-menu .dropdown-item:focus {
  background: rgba(255, 119, 230, .18);
  color: var(--rose-vif);
}

.ls-dropdown-menu .dropdown-item i {
  width: 18px;
  text-align: center;
}

.ls-dropdown-menu .dropdown-divider {
  margin: 6px 4px;
  border-color: rgba(255, 255, 255, .15);
}

.ls-solde {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 11px;
  height: 42px;
  border: 0;
  border-radius: 5px;
  background: linear-gradient(#FFFF57 0%, var(--jaune) 100%);
  box-shadow: 0 4px 0 0 #A87F00;
  color: var(--violet);
  font-weight: 800;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: transform .1s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.ls-solde:active {
  transform: translateY(2px);
}

.ls-solde.is-liked {
  box-shadow: 0 4px 0 0 #A87F00, 0 0 0 2px #fff inset;
}

.ls-solde.is-liked i {
  color: var(--magenta);
}

.ls-panier {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 16px;
  border-radius: 5px;
  background: var(--rose-vif);
  box-shadow: 0 5px 0 0 var(--magenta);
  color: #fff !important;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===== Hero ===== */
.ls-hero {
  position: relative;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 40px 20px;
}

.ls-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(50, 0, 120, .65) 0%, rgba(60, 0, 124, .35) 45%, var(--rose) 100%);
}

.ls-hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ls-hero-content h1 {
  font-family: 'Super Bouncer', 'Archivo Black', 'Poppins', sans-serif;
  font-size: 56px;
  color: #fff;
  text-shadow: 0 8px 0 rgba(141, 0, 143, .97);
  letter-spacing: -1px;
  margin: 0;
}

.ls-hero-subtitle {
  margin-top: 16px;
  font-weight: 700;
  font-size: 22px;
  color: var(--rose);
  text-shadow: 0 3px 0 rgba(60, 0, 124, .8);
}

.ls-hero-cta {
  display: flex;
  align-items: center;
  margin-top: 40px;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.ls-hero-discord {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--discord);
  box-shadow: 0 4px 2px 0 var(--discord-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ls-hero-discord img {
  width: 46px;
  height: 46px;
  filter: brightness(0) invert(1);
}

.ls-hero-ip {
  border: 0;
  cursor: pointer;
  padding: 0 40px;
  height: 80px;
  border-radius: 15px;
  background: var(--violet);
  box-shadow: var(--ombre), inset 0 -4px 0 0 var(--rose-vif);
  color: #fff;
  font-family: 'Super Bouncer', 'Archivo Black', 'Poppins', sans-serif;
  font-size: 26px;
}

/* ===== Nous rejoindre ===== */
.ls-join {
  position: relative;
  max-width: 1088px;
  margin: 40px auto;
  padding: 38px 40px;
  border-radius: 20px;
  background: linear-gradient(var(--violet-clair) 0%, rgba(90, 83, 186, .79) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.ls-join-render {
  order: 2;
  flex: 3 1 500px;
  max-width: none;
  width: 100%;
  height: auto;
  margin-left: auto;
}

.ls-join-content {
  position: relative;
  flex: 1 1 300px;
  max-width: 360px;
}

.ls-join-content h2 {
  font-family: 'Super Bouncer', 'Archivo Black', 'Poppins', sans-serif;
  font-size: 32px;
  color: #fff;
  margin: 0;
}

.ls-join-content p {
  margin-top: 18px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.55;
  color: #fff;
}

.ls-btn-copy {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  height: 56px;
  margin-top: 22px;
  border-radius: 7px;
  background: linear-gradient(#4DD138 42.19%, #078600 100%);
  box-shadow: 0 5px 0 0 #045200;
  color: #fff;
  font-weight: 700;
  font-size: 22px;
}

/* ===== Statistiques ===== */
.ls-stats {
  margin-top: 40px;
  padding: 44px 40px 48px;
  background: var(--bleu-nuit);
  box-shadow: inset 0 0 0 8px #0A1CD7, 0 5px 0 0 #240643, inset 0 -15px 0 0 #3D00A6;
}

.ls-stats h2 {
  text-align: center;
  font-family: 'Super Bouncer', 'Archivo Black', 'Poppins', sans-serif;
  font-size: 34px;
  color: #fff;
  text-shadow: 0 5px 0 #3D00A6;
  margin: 0;
}

.ls-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1088px;
  margin: 34px auto 0;
}

.ls-stat-card {
  padding: 26px 16px;
  border-radius: 14px;
  background: rgba(119, 137, 255, .16);
  box-shadow: inset 0 0 0 3px rgba(119, 137, 255, .45);
  text-align: center;
  overflow: hidden;
}

.ls-stat-value {
  font-weight: 800;
  font-size: clamp(20px, 3.4vw, 38px);
  color: var(--jaune);
  line-height: 1.1;
  white-space: nowrap;
}

.ls-stat-label {
  margin-top: 12px;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

/* ===== Réseaux sociaux ===== */
.ls-socials {
  max-width: 1088px;
  margin: 56px auto 0;
  padding: 0 20px;
}

.ls-socials h2 {
  text-align: center;
  font-family: 'Super Bouncer', 'Archivo Black', 'Poppins', sans-serif;
  font-size: 30px;
  color: var(--violet);
}

.ls-socials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.ls-social-btn {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 26px;
  height: 100px;
  border-radius: 16px;
  box-shadow: 0 10px 0 0 rgba(0, 0, 0, .25);
  color: #fff !important;
  font-weight: 800;
  font-size: 26px;
}

.ls-social-btn i {
  font-size: 40px;
}

/* ===== Discord CTA ===== */
.ls-discord-cta {
  position: relative;
  margin-top: 60px;
  padding: 56px 20px 60px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  text-align: center;
}

.ls-discord-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(60, 0, 124, .85) 0%, rgba(14, 19, 80, .9) 100%);
}

.ls-discord-cta-content {
  position: relative;
}

.ls-discord-cta-content h2 {
  font-family: 'Super Bouncer', 'Archivo Black', 'Poppins', sans-serif;
  font-size: 32px;
  color: #fff;
  margin: 0;
}

.ls-discord-cta-content p {
  margin: 22px auto 0;
  max-width: 626px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: var(--rose);
}

.ls-discord-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 0 30px;
  height: 70px;
  border-radius: 10px;
  background: #7289DA;
  box-shadow: 0 6px 0 0 #4B5EA8;
  color: #fff !important;
  font-weight: 700;
  font-size: 18px;
}

.ls-discord-cta-btn img {
  width: 40px;
  height: 40px;
}

/* ===== Actualités ===== */
.ls-news {
  max-width: 1088px;
  margin: 52px auto 0;
  padding: 0 20px 60px;
}

.ls-news h2 {
  text-align: center;
  font-family: 'Super Bouncer', 'Archivo Black', 'Poppins', sans-serif;
  font-size: 32px;
  color: var(--violet);
}

.ls-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 34px;
  margin-top: 30px;
}

.ls-news-card {
  padding: 22px 16px;
  border-radius: 11px;
  background: #111650;
  text-align: center;
}

.ls-news-card img {
  display: block;
  width: 100%;
  height: 220px;
  border-radius: 9px;
  object-fit: cover;
}

.ls-news-card h3 {
  margin-top: 16px;
  font-weight: 700;
  font-size: 18px;
}

.ls-news-card h3 a {
  color: var(--jaune) !important;
}

.ls-news-card p {
  margin: 10px 12px 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .72);
}

.ls-news-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding: 0 6px;
  font-weight: 600;
  font-size: 12px;
  color: rgba(255, 199, 245, .65);
  background: none;
  border: 0;
}

/* ===== Footer ===== */
.ls-footer {
  margin-top: 60px;
  padding: 50px 40px 30px;
  background: linear-gradient(rgba(14, 19, 80, .95) 0%, rgba(34, 0, 32, .97) 100%), var(--bleu-nuit);
}

.ls-footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
}

.ls-footer-brand img {
  height: 80px;
}

.ls-footer-brand p {
  margin-top: 16px;
  font-weight: 500;
  font-size: 13px;
  color: rgba(255, 199, 245, .75);
  max-width: 250px;
}

.ls-footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.ls-footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet) !important;
}

.ls-footer-col h3 {
  font-weight: 700;
  font-size: 15px;
  color: var(--jaune);
  margin: 0;
}

.ls-footer-col {
  display: flex;
  flex-direction: column;
}

.ls-footer-col a {
  margin-top: 10px;
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, .8) !important;
}

.ls-footer-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}

.ls-footer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 38px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none !important;
}

.ls-footer-btn-boutique {
  background: var(--rose-vif);
  box-shadow: 0 4px 0 0 var(--magenta);
  color: #fff !important;
}

.ls-footer-btn-discord {
  background: var(--discord);
  box-shadow: 0 4px 0 0 var(--discord-shadow);
  color: #fff !important;
}

.ls-footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 2px solid rgba(255, 199, 245, .18);
  font-weight: 500;
  font-size: 12px;
  color: rgba(255, 199, 245, .6);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .ls-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ls-hero-content h1 {
    font-size: 40px;
  }

  .ls-join {
    flex-direction: column;
    text-align: center;
  }

  .ls-join-render {
    order: 1;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .ls-footer-grid {
    grid-template-columns: 1fr;
  }

  .ls-navbar-inner {
    justify-content: flex-start;
    overflow-x: auto;
  }
}

/* ===== Boutique / Vote (composants Bootstrap réutilisés) ===== */
.card {
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(180deg, rgba(90, 83, 186, .79), var(--violet));
  box-shadow: var(--ombre), inset 0 -4px 0 0 var(--rose-vif);
}

.btn-primary {
  border: 0;
  border-radius: 9px;
  background: var(--rose-vif);
  box-shadow: 0 5px 0 0 var(--magenta);
  font-weight: 700;
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--rose-vif);
  color: #fff;
}

.btn-primary:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 0 var(--magenta);
}

/* ===== Page Mes statistiques ===== */
.ls-stats-page {
  max-width: 1088px;
  margin: 0 auto;
}

.ls-stats-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.ls-stats-header img {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  box-shadow: 0 4px 0 0 var(--magenta);
}

.ls-stats-header h1 {
  font-family: 'Super Bouncer', 'Archivo Black', 'Poppins', sans-serif;
  font-size: 30px;
  color: var(--violet);
  margin: 0;
}

.ls-stats-header p {
  margin: 4px 0 0;
  font-weight: 600;
  color: rgba(60, 0, 124, .6);
}

.ls-stats-block {
  margin-bottom: 32px;
  padding: 30px;
  border-radius: 16px;
  background: var(--bleu-nuit);
  box-shadow: inset 0 0 0 6px #0A1CD7, 0 5px 0 0 #240643, inset 0 -12px 0 0 #3D00A6;
}

.ls-stats-block h2 {
  font-family: 'Super Bouncer', 'Archivo Black', 'Poppins', sans-serif;
  font-size: 22px;
  color: #fff;
  text-shadow: 0 3px 0 #3D00A6;
  margin: 0 0 22px;
}

.ls-job-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ls-job-row {
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(119, 137, 255, .16);
  box-shadow: inset 0 0 0 2px rgba(119, 137, 255, .35);
}

.ls-job-row-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  font-weight: 700;
  color: #fff;
  font-size: 15px;
}

.ls-job-row-top .ls-job-level {
  color: var(--jaune);
  white-space: nowrap;
}

.ls-job-progress {
  margin-top: 10px;
  height: 10px;
  border-radius: 6px;
  background: rgba(0, 0, 0, .3);
  overflow: hidden;
}

.ls-job-progress-fill {
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--rose-vif), var(--jaune));
}

.ls-collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.ls-collection-card {
  padding: 18px;
  border-radius: 12px;
  background: rgba(119, 137, 255, .16);
  box-shadow: inset 0 0 0 2px rgba(119, 137, 255, .35);
}

.ls-collection-card h3 {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  margin: 0 0 8px;
}

.ls-collection-card .ls-job-progress {
  margin-top: 8px;
}

.ls-collection-meta {
  margin-top: 8px;
  font-weight: 600;
  font-size: 12px;
  color: rgba(255, 255, 255, .7);
}

.ls-stats-empty {
  max-width: 1088px;
  margin: 0 auto;
  padding: 60px 30px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--ombre), inset 0 -4px 0 0 var(--rose-vif);
  text-align: center;
}

.ls-stats-empty h2 {
  font-family: 'Super Bouncer', 'Archivo Black', 'Poppins', sans-serif;
  font-size: 26px;
  color: var(--violet);
  margin: 0 0 12px;
}

.ls-stats-empty p {
  font-weight: 500;
  color: rgba(60, 0, 124, .7);
}

.ls-search-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto 40px;
  flex-wrap: wrap;
}

.ls-search-form input {
  flex: 1 1 260px;
  height: 52px;
  padding: 0 18px;
  border: 0;
  border-radius: 9px;
  background: #fff;
  box-shadow: inset 0 0 0 2px rgba(60, 0, 124, .15);
  color: var(--violet);
  font-weight: 600;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
}

.ls-search-form input::placeholder {
  color: rgba(60, 0, 124, .45);
}

.ls-search-form input:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px var(--rose-vif);
}

.ls-search-form button {
  flex: 0 0 auto;
  height: 52px;
  padding: 0 28px;
  border: 0;
  border-radius: 9px;
  background: var(--rose-vif);
  box-shadow: 0 4px 0 0 var(--magenta);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}

.ls-search-form button:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 0 var(--magenta);
}


/* ===== Page Vote ===== */
.ls-vote-page {
  max-width: 1000px;
  margin: 0 auto;
}

/* --- Hero / carte de vote --- */
.ls-vote-hero {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  padding: 46px 16px 70px;
  margin-bottom: 34px;
}

.ls-vote-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 0, 50, .55) 0%, rgba(20, 0, 50, .8) 100%);
}

.ls-vote-hero-card {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(90, 83, 186, .88) 0%, var(--violet) 100%);
  border-radius: 22px;
  box-shadow: var(--ombre), inset 0 -4px 0 0 var(--rose-vif);
  padding: 40px 34px 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 10px;
}

.ls-vote-badge {
  position: absolute;
  top: -20px;
  left: 34px;
  background: linear-gradient(180deg, #FFFF57 0%, var(--jaune) 100%);
  color: var(--violet);
  font-family: 'Super Bouncer', 'Archivo Black', 'Poppins', sans-serif;
  font-size: 20px;
  padding: 10px 24px;
  border-radius: 10px;
  box-shadow: 0 5px 0 0 #B98600;
  transform: rotate(-4deg);
}

.ls-vote-status-pill {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--rose-vif);
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .5px;
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: 0 3px 0 0 var(--magenta);
  white-space: nowrap;
}

.ls-vote-hero-content {
  flex: 1 1 420px;
  padding-top: 16px;
  min-width: 0;
}

.ls-vote-hero-content h1 {
  font-family: 'Super Bouncer', 'Archivo Black', 'Poppins', sans-serif;
  font-size: 24px;
  line-height: 1.35;
  color: #fff;
  text-shadow: 0 3px 0 #3D00A6;
  margin: 0 0 22px;
}

.ls-vote-render {
  flex: 0 0 auto;
  width: 170px;
  max-width: 40%;
  height: auto;
  align-self: flex-end;
  filter: drop-shadow(0 10px 12px rgba(0, 0, 0, .35));
}

/* --- Formulaire pseudo (étape 1) --- */
.ls-vote-name-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.ls-vote-name-form .form-control {
  flex: 1 1 220px;
  max-width: 300px;
  height: 50px;
  padding: 0 16px;
  border: 0;
  border-radius: 9px;
  background: #fff;
  box-shadow: inset 0 0 0 2px rgba(60, 0, 124, .15);
  color: var(--violet);
  font-weight: 600;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
}

.ls-vote-name-form .form-control::placeholder {
  color: rgba(60, 0, 124, .45);
}

.ls-vote-name-form .form-control:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px var(--rose-vif);
}

.ls-vote-name-form .btn {
  height: 50px;
}

/* --- Grille des sites de vote (étape 2) --- */
.ls-vote-sites {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.ls-vote-site-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(119, 137, 255, .25);
  box-shadow: inset 0 0 0 2px rgba(119, 137, 255, .5);
  color: #fff;
  transition: transform .15s ease, background .15s ease;
}

.ls-vote-site-btn:hover {
  background: rgba(119, 137, 255, .4);
  color: #fff;
  transform: translateY(-2px);
}

.ls-vote-site-btn.disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
}

.ls-vote-site-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rose-vif);
  box-shadow: 0 3px 0 0 var(--magenta);
  font-size: 16px;
}

.ls-vote-site-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .3px;
}

.ls-vote-site-btn .vote-timer {
  display: none;
  width: fit-content;
  padding: 2px 8px;
  border-radius: 6px;
  background: rgba(0, 0, 0, .3);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.ls-vote-site-btn .vote-timer:not(:empty) {
  display: inline-block;
}

/* --- Récompenses obtenables --- */
.ls-vote-rewards-banner {
  max-width: 880px;
  margin: 0 auto 34px;
  background: linear-gradient(180deg, #FFFF57 0%, var(--jaune) 100%);
  border-radius: 20px;
  box-shadow: var(--ombre);
  padding: 26px 30px 30px;
  text-align: center;
}

.ls-vote-rewards-banner h2 {
  font-family: 'Super Bouncer', 'Archivo Black', 'Poppins', sans-serif;
  color: var(--violet);
  font-size: 18px;
  margin: 0 0 20px;
}

.ls-vote-rewards-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.ls-vote-reward-card {
  flex: 1 1 170px;
  max-width: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--violet);
  border-radius: 12px;
  box-shadow: 0 4px 0 0 #240643;
  padding: 16px 14px;
  color: #fff;
}

.ls-vote-reward-card img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.ls-vote-reward-icon {
  font-size: 30px;
  color: var(--jaune);
}

.ls-vote-reward-name {
  font-weight: 700;
  font-size: 13px;
}

.ls-vote-reward-chance {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  background: var(--jaune);
  color: var(--violet);
  font-weight: 700;
  font-size: 11px;
}

/* --- Objectif de votes --- */
.ls-vote-goal {
  max-width: 880px;
  margin: 0 auto 34px;
  padding: 26px 30px;
  border-radius: 16px;
  background: var(--bleu-nuit);
  box-shadow: inset 0 0 0 6px #0A1CD7, 0 5px 0 0 #240643, inset 0 -12px 0 0 #3D00A6;
}

.ls-vote-goal h2 {
  font-family: 'Super Bouncer', 'Archivo Black', 'Poppins', sans-serif;
  font-size: 18px;
  color: #fff;
  text-shadow: 0 3px 0 #3D00A6;
  margin: 0 0 16px;
}

.ls-vote-goal .progress {
  height: 16px;
  border-radius: 8px;
  background: rgba(0, 0, 0, .3);
  overflow: hidden;
  box-shadow: inset 0 0 0 2px rgba(119, 137, 255, .35);
}

.ls-vote-goal .progress-bar {
  background: linear-gradient(90deg, var(--rose-vif), var(--jaune));
}

.ls-vote-goal-text {
  margin: 10px 0 0;
  text-align: center;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
}

/* --- Classement des votes --- */
.ls-vote-leaderboard {
  max-width: 680px;
  margin: 0 auto;
}

.ls-vote-leaderboard h2 {
  text-align: center;
  font-family: 'Super Bouncer', 'Archivo Black', 'Poppins', sans-serif;
  color: var(--violet);
  font-size: 20px;
  margin: 0 0 22px;
}

.ls-vote-lb-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ls-vote-lb-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 20px;
  border-radius: 40px;
  background: rgba(255, 255, 255, .55);
  box-shadow: inset 0 0 0 2px rgba(60, 0, 124, .1);
}

.ls-vote-lb-row.odd {
  background: rgba(255, 255, 255, .3);
}

.ls-vote-lb-row.rank-1 {
  background: linear-gradient(90deg, var(--jaune) 0%, #FFE27A 100%);
}

.ls-vote-lb-row.rank-2 {
  background: linear-gradient(90deg, #C7C7D6 0%, #E4E4EE 100%);
}

.ls-vote-lb-row.rank-3 {
  background: linear-gradient(90deg, #E5A15A 0%, #F3C892 100%);
}

.ls-vote-lb-rank {
  flex: 0 0 30px;
  text-align: center;
  font-weight: 800;
  font-size: 15px;
  color: var(--violet);
}

.ls-vote-lb-row.rank-1 .ls-vote-lb-rank {
  color: #B98600;
  font-size: 18px;
}

.ls-vote-lb-row.rank-2 .ls-vote-lb-rank {
  color: #6E6E82;
  font-size: 18px;
}

.ls-vote-lb-row.rank-3 .ls-vote-lb-rank {
  color: #A85A1E;
  font-size: 18px;
}

.ls-vote-lb-row img {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, .2);
}

.ls-vote-lb-name {
  flex: 1;
  min-width: 0;
  font-weight: 700;
  font-size: 14px;
  color: var(--violet);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ls-vote-lb-votes {
  flex: 0 0 auto;
  font-weight: 800;
  font-size: 13px;
  color: var(--violet);
  background: rgba(255, 255, 255, .6);
  padding: 4px 14px;
  border-radius: 20px;
}

.ls-vote-note {
  margin: 16px 0 0;
  text-align: center;
  font-weight: 600;
  color: rgba(60, 0, 124, .7);
}

/* --- Alertes de vote --- */
.ls-vote-page #status-message {
  max-width: 880px;
  margin: 0 auto 20px;
}

.ls-vote-page #status-message .alert:last-child {
  margin-bottom: 0;
}

.ls-vote-page .alert {
  border: 0;
  border-radius: 9px;
  padding: 14px 18px;
  font-weight: 600;
  text-align: left;
}

.ls-vote-page .alert-info {
  background: rgba(119, 137, 255, .3);
  color: #fff;
}

.ls-vote-page .alert-warning {
  background: rgba(248, 192, 8, .3);
  color: #fff;
}

.ls-vote-page .alert-success {
  background: rgba(72, 199, 116, .3);
  color: #fff;
}

.ls-vote-page .alert-danger {
  background: rgba(255, 77, 109, .3);
  color: #fff;
}

/* --- Responsive --- */
@media (max-width: 700px) {
  .ls-vote-hero-card {
    padding: 40px 22px 24px;
  }

  .ls-vote-render {
    display: none;
  }

  .ls-vote-sites {
    grid-template-columns: 1fr;
  }

  .ls-vote-lb-name {
    font-size: 13px;
  }
}
