:root {
  --bg: #0a0014;
  --bg-soft: #100020;
  --card: #140024;
  --primary: #ff2bd6;
  --secondary: #9b5cff;
  --text: #eae6ff;
  --muted: #b7a6ff;
  --shadow: 0 12px 45px rgba(255, 43, 214, 0.25);
  --shadow-hover: 0 15px 35px rgba(255, 43, 214, 0.3);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: radial-gradient(1200px 600px at 70% 0%, rgba(155, 92, 255, 0.15), transparent), var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.6;
  transition: background 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4 {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: var(--text);
}

h1 { font-size: 2.4rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }

a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}
a:hover {
  color: white;
  text-shadow: 0 0 8px var(--primary);
}

p {
  margin-bottom: 1rem;
  color: var(--muted);
}

.glow {
  color: var(--primary);
  text-shadow: 0 0 12px var(--primary), 0 0 24px var(--secondary);
  transition: text-shadow 0.3s ease;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 0;
}

main {
  flex-grow: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 5%;
  background: rgba(16, 0, 32, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease, border 0.3s ease;
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.5em;
  text-decoration: none;
}

.logo-img {
  height: 2em;
  aspect-ratio: 1 / 1;
  border-radius: 0.8em;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}
.logo-img:hover {
  transform: scale(1.2);
  box-shadow: 0 0 15px var(--primary), 0 0 25px var(--secondary);
}

.logo .glow {
  display: inline-block;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}
.logo .glow:hover {
  animation: floatText 0.5s ease-in-out infinite alternate;
  text-shadow: 0 0 15px var(--primary), 0 0 30px var(--secondary);
}

@keyframes floatText {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}

.site-header nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.nav-item {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.nav-item:hover {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 25px rgba(155, 92, 255, 0.25) inset;
}

.hero {
  display: grid;
  gap: 28px;
  align-items: center;
  margin: 30px 0;
}

.hero-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 2px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 50px rgba(155, 92, 255, 0.3);
}

.hero-text .cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.hero-center {
  text-align: center;
  padding: 60px 20px;
  margin: 40px 0;
  background: var(--bg-soft);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.grid {
  display: grid;
  gap: 24px;
  margin: 24px 0;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.card .thumb {
  width: 100%;
  height: 160px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, .08);
  margin-bottom: 1rem;
}
.card h4 {
  margin: .6rem 0 .3rem
}
.card p {
  color: var(--muted);
  font-size: .96rem;
  min-height: 2.6em
}
.taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0
}
.tag {
  font-size: .75rem;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(155, 92, 255, .12);
  transition: background 0.3s ease, transform 0.2s ease;
}
.tag:hover {
  background: rgba(155, 92, 255, .2);
  transform: scale(1.05);
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 16px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  box-shadow: var(--shadow);
  font-weight: 600;
  border: 1px solid transparent;
  color: white;
  cursor: pointer;
  text-align: center;
  transition: all 0.25s ease;
}
.btn:hover {
  transform: translateY(-2px) scale(1.05);
  filter: saturate(1.2);
  box-shadow: var(--shadow-hover);
}
.btn.outline {
  background: transparent;
  border-color: var(--secondary);
  color: var(--secondary);
}
.btn.outline:hover {
  color: white;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
}

.form {
  margin: 18px 0;
  padding: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  transition: all 0.3s ease;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
@media(min-width: 600px) {
    .form-row { grid-template-columns: 1fr 1fr; }
}
input, textarea, .form .btn { width: 100%; }
input, textarea {
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--bg-soft);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(155,92,255,.25);
}
textarea { resize: vertical; min-height: 130px; }

.faq {
  max-width: 800px;
  margin: 60px auto;
  text-align: center;
}
.accordion {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 14px;
  overflow: hidden;
  text-align: left;
  transition: all 0.3s ease;
}
.accordion-header {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  position: relative;
  transition: background-color 0.25s ease;
}
.accordion-header:hover {
  background: rgba(155, 92, 255, 0.12);
}
.accordion-header::after {
  content: '+';
  position: absolute;
  right: 22px;
  font-size: 1.6rem;
  transition: transform 0.3s ease;
}
.accordion.active .accordion-header::after {
  content: '−';
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.45s ease;
  padding: 0 22px;
}
.accordion.active .accordion-content {
  max-height: 280px;
  padding: 14px 22px 20px;
}

.site-footer {
  margin-top: 60px;
  padding: 48px 6% 24px;
  background: linear-gradient(180deg, rgba(20,0,40,0.95), rgba(10,0,25,0.95));
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #eaeaf0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 36px;
  margin-bottom: 32px;
}

.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 14px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin-top: 6px;
  border-radius: 4px;
  background: linear-gradient(90deg, #ff2bd6, #7f5cff);
}

.footer-desc {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.6;
}

.links {
  list-style: none;
  padding: 0;
}
.links li {
  margin: 8px 0;
}
.links a {
  opacity: 0.85;
  transition: all 0.25s ease;
}
.links a:hover {
  opacity: 1;
  color: #ff2bd6;
  padding-left: 6px;
}

.links li { margin: 6px 0; } .small { opacity: 0.8; font-size: 0.85rem; } .socials { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 1rem; } .icon-link { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 14px; border: 1px solid rgba(255, 255, 255, 0.12); transition: all 0.3s ease; } .icon-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); border-color: rgba(255, 255, 255, 0.25); } .icon { width: 20px; height: 20px; filter: drop-shadow(0 0 8px rgba(255, 43, 214, 0.6)); }
.icon-link.discord:hover {
  background: rgba(88,101,242,0.15);
  color: #9aa7ff;
}
.icon-link.mail:hover {
  background: rgba(255,43,214,0.15);
  color: #ff6be1;
}

.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.75;
}

@media (max-width: 600px) {
  .socials {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.footer-about-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.footer-logo {
  width: 54px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(255, 43, 214, 0.5));
}

.footer-title h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.footer-desc {
  margin-top: 6px;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
}

@media (max-width: 600px) {
  .footer-about-header {
    justify-content: center;
  }

  .footer-desc {
    text-align: center;
  }
}

.bg-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(2px 2px at 20% 30%, rgba(255, 43, 214, 0.6), transparent 60%),
    radial-gradient(2px 2px at 60% 70%, rgba(155, 92, 255, 0.6), transparent 60%),
    radial-gradient(2px 2px at 80% 20%, rgba(255, 43, 214, 0.6), transparent 60%);
  animation: twinkle 6s linear infinite alternate;
  opacity: 0.55;
  z-index: -1;
}
@keyframes twinkle {
  from { filter: blur(0px); }
  to { filter: blur(2.5px); }
}

@media(min-width: 800px) {
  .hero {
    grid-template-columns: 1.2fr 1fr;
  }
}

@media(max-width: 768px) {
  .site-header {
    flex-direction: column;
    gap: 12px;
  }
  .nav-item {
    padding: 6px 12px;
    font-size: 0.95rem;
  }
}

@media(max-width: 600px) {
  h1 { font-size: 2rem; }
}

#categories .card {
  text-align: center;
}

#categories .card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255,255,255,.1);
}

.section {
  display: none;
  padding: 2rem 0;
}

.section.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

.section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.section .grid {
  margin-bottom: 2rem;
}

.section .card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255,255,255,.08);
}

.section .card h3 {
  font-size: 1.2rem;
  margin: .6rem 0;
}

.section .card p {
  color: var(--muted);
  font-size: .95rem;
  min-height: 2.5em;
}

.section .card .price {
  color: var(--primary);
  font-weight: 700;
  margin: .6rem 0 1rem;
  font-size: 1.05rem;
}

.back-btn {
  display: block;
  margin: 0 auto;
  padding: 10px 20px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,.08);
  cursor: pointer;
  text-align: center;
  width: fit-content;
  transition: all .3s ease;
}
.back-btn:hover {
  background: rgba(155, 92, 255, .15);
  border-color: rgba(155, 92, 255, .4);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-content: center;
  text-align: center;
  margin: 60px auto;
  max-width: 900px;
}

.stats .card.stat {
  background: rgba(20, 20, 20, 0.85);
  border: 1px solid rgba(255, 0, 187, 0.2);
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 0 15px rgba(255, 0, 204, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats .card.stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255, 0, 230, 0.711);
}

.stats h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  color: #ff2bd6;
  margin-bottom: 10px;
}

.stats p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #bbb;
}

.subtitle {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.input-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.input-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text);
}

.input-group input.error,
.input-group textarea.error {
  border-color: #ff3860;
  box-shadow: 0 0 0 4px rgba(255, 56, 96, 0.25);
}

.error-message {
  color: #ff3860;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  min-height: 1.2rem;
}

.captcha-container {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.captcha-input-group {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.captcha-input-group span {
  font-weight: 600;
  min-width: 150px;
}

.icon-btn {
  background: var(--bg-soft);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: var(--text);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.icon-btn:hover {
  background: rgba(155, 92, 255, 0.2);
  border-color: var(--secondary);
}

.submit-btn {
  position: relative;
  overflow: hidden;
}

.btn-loader {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.status-message {
  padding: 1rem;
  border-radius: 14px;
  margin-top: 1.5rem;
  text-align: center;
  font-weight: 600;
}

.status-message.loading {
  background-color: rgba(255, 193, 7, 0.15);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

.status-message.success {
  background-color: rgba(40, 167, 69, 0.15);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

.status-message.error {
  background-color: rgba(220, 53, 69, 0.15);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.3);
}

.notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: white;
  padding: 12px 20px;
  border-radius: 16px;
  display: none;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-hover);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 1000;
  animation: slideIn 0.3s ease-in-out;
}

.notification.success {
  background: linear-gradient(45deg, #28a745, #20c997);
}

@keyframes slideIn {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .captcha-input-group {
    flex-direction: column;
    align-items: stretch;
  }
  
  .captcha-input-group span {
    text-align: center;
  }
  
  .icon-btn {
    align-self: center;
  }
}

input:focus, 
textarea:focus, 
button:focus,
.icon-btn:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

.nav-item.active {
  background: rgba(155, 92, 255, 0.2);
  border-color: var(--secondary);
}

.card.unavailable {
  position: relative;
  filter: none;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.card.unavailable:hover {
  transform: none;
  box-shadow: var(--shadow);
  cursor: not-allowed;
}

.card.unavailable .thumb,
.card.unavailable h4,
.card.unavailable p,
.card.unavailable .taglist,
.card.unavailable .btn {
  filter: blur(3px) grayscale(0.7);
  transition: filter 0.3s ease;
}

.unavailable-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  z-index: 10;
  border-radius: 20px;
  text-shadow: 0 0 10px var(--primary);
  filter: none !important;
}

.streamers-container {
  margin: 2rem 0;
}

.streamers-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(30, 30, 40, 0.7);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.streamers-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.streamers-count {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
}

.streamers-count i {
  color: #6c5ce7;
}

.last-update {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #aaa;
}

.refresh-btn {
  background: #6c5ce7;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.3s;
}

.refresh-btn:hover {
  background: #5649c0;
}

.refresh-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.refresh-btn .spinner {
  width: 14px;
  height: 14px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.streamers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.streamer-card {
  background: rgba(30, 30, 40, 0.7);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.streamer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.streamer-thumbnail {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.streamer-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e74c3c;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.live-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.5s infinite;
}

.viewer-count {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.streamer-info {
  padding: 1rem;
}

.streamer-profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.streamer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(108, 92, 231, 0.3);
}

.streamer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.streamer-username {
  font-weight: bold;
  color: white;
}

.stream-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.stream-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #aaa;
  margin-bottom: 1rem;
}

.watch-btn {
  display: block;
  width: 100%;
  background: #6c5ce7;
  color: white;
  text-align: center;
  padding: 0.5rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s;
}

.watch-btn:hover {
  background: #5649c0;
}

.offline-streamers {
  margin-top: 2rem;
}

.offline-title {
  text-align: center;
  margin-bottom: 1.5rem;
}

.offline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.offline-card {
  background: rgba(30, 30, 40, 0.5);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  opacity: 0.7;
}

.offline-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 0.75rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.offline-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offline-username {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.offline-status {
  background: #555;
  color: #ddd;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.profile-btn {
  display: block;
  background: transparent;
  color: #6c5ce7;
  border: 1px solid #6c5ce7;
  text-align: center;
  padding: 0.4rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s;
}

.profile-btn:hover {
  background: #6c5ce7;
  color: white;
}

.streamer-notice {
  background: rgba(108, 92, 231, 0.1);
  border: 1px solid rgba(108, 92, 231, 0.3);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.streamer-notice h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.error-alert {
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.no-streamers {
  text-align: center;
  padding: 3rem 1rem;
  background: rgba(30, 30, 40, 0.5);
  border-radius: 8px;
}

.no-streamers-icon {
  width: 60px;
  height: 60px;
  background: rgba(108, 92, 231, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.no-streamers-icon i {
  font-size: 1.5rem;
  color: #6c5ce7;
}

.loading-streamers {
  text-align: center;
  padding: 2rem;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(108, 92, 231, 0.3);
  border-top: 4px solid #6c5ce7;
  border-radius: 50%;
  margin: 0 auto 1rem;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

@media (max-width: 768px) {
  .streamers-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .streamers-grid {
    grid-template-columns: 1fr;
  }
  
  .offline-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

.partners-container {
  margin: 2rem 0;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
}

.partners-header {
  text-align: center;
  margin-bottom: 3rem;
}

.partners-header h1 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.partners-header p {
  font-size: 1.2rem;
  color: #aaa;
  max-width: 600px;
  margin: 0 auto;
}

.partners-content {
  flex: 1;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.partner-card {
  background: rgba(30, 30, 40, 0.7);
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(108, 92, 231, 0.2);
  height: 100%;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(108, 92, 231, 0.2);
  border-color: rgba(108, 92, 231, 0.4);
}

.partner-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.partner-logo {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.partner-badge {
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(108, 92, 231, 0.2);
  color: #6c5ce7;
  border: 1px solid rgba(108, 92, 231, 0.3);
}

.partner-content {
  margin-bottom: 1.5rem;
}

.partner-content h3 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: white;
}

.partner-content p {
  color: #ccc;
  line-height: 1.6;
}

.partner-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #6c5ce7;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.partner-link:hover {
  color: #8c7ae6;
}

.no-partners {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(30, 30, 40, 0.5);
  border-radius: 12px;
  margin-bottom: 2rem;
}

.no-partners-icon {
  font-size: 3rem;
  color: #6c5ce7;
  margin-bottom: 1rem;
}

.no-partners h3 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.no-partners p {
  color: #aaa;
  max-width: 500px;
  margin: 0 auto;
}

.partnership-info {
  background: rgba(108, 92, 231, 0.1);
  border: 1px solid rgba(108, 92, 231, 0.3);
  border-radius: 12px;
  padding: 2rem;
  margin-top: auto;
}

.partnership-info h2 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.partnership-info p {
  color: #ccc;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  text-align: center;
}

.partnership-cta {
  margin-top: 1.5rem;
  text-align: center;
}

.btn-partner {
  display: inline-block;
  background: #6c5ce7;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-partner:hover {
  background: #5649c0;
}

@media (max-width: 768px) {
  .partners-header h1 {
    font-size: 2rem;
  }
  
  .partners-header p {
    font-size: 1rem;
  }
  
  .partners-grid {
    grid-template-columns: 1fr;
  }
  
  .partner-header {
    flex-direction: column;
    gap: 1rem;
  }
  
  .partner-badge {
    align-self: flex-start;
  }
  
  .partnership-info {
    padding: 1.5rem;
  }
}

.info-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(155, 92, 255, 0.15), rgba(255, 43, 214, 0.15));
  border: 1px solid rgba(255, 43, 214, 0.3);
  border-radius: 16px;
  padding: 20px;
  margin: 24px 0;
  box-shadow: 0 8px 30px rgba(155, 92, 255, 0.2);
  transition: all 0.3s ease;
}

.info-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(155, 92, 255, 0.25);
  border-color: rgba(255, 43, 214, 0.5);
}

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  border-radius: 12px;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.info-content h3 {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.2rem;
}

.info-content p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .info-box {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .info-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

.vote-header {
  text-align: center;
  margin-bottom: 2rem;
}

.vote-header .subtitle {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: var(--muted);
}

.vote-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(155, 92, 255, 0.2);
  border-color: rgba(255, 43, 214, 0.3);
}

.stat-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
  display: block;
}

.stat-card .count {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  font-family: 'Orbitron', sans-serif;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.stat-card .label {
  color: var(--muted);
  font-size: 0.9rem;
}

.vote-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: white;
  border-color: transparent;
  box-shadow: 0 5px 15px rgba(155, 92, 255, 0.3);
}

.vote-instructions {
  margin: 4rem 0 2rem;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.vote-instructions h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--text);
}

.instructions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.instruction-step {
  text-align: center;
  padding: 1.5rem;
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto 1rem;
  font-family: 'Orbitron', sans-serif;
}

.instruction-step h3 {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.instruction-step p {
  color: var(--muted);
  font-size: 0.95rem;
}

.vote-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.vote-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.vote-card .vote-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.vote-card .vote-logo {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
}

.vote-card .vote-title {
  flex: 1;
}

.vote-card .vote-title h3 {
  margin: 0 0 0.3rem 0;
  font-size: 1.2rem;
}

.vote-card .vote-title p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.vote-card .vote-reward {
  background: rgba(155, 92, 255, 0.15);
  border: 1px solid rgba(155, 92, 255, 0.3);
  border-radius: 8px;
  padding: 0.5rem 0.8rem;
  font-size: 0.85rem;
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vote-card .vote-reward i {
  color: var(--primary);
}

.vote-card .vote-timer {
  background: rgba(255, 43, 214, 0.15);
  border: 1px solid rgba(255, 43, 214, 0.3);
  border-radius: 8px;
  padding: 0.5rem 0.8rem;
  font-size: 0.85rem;
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
}

.vote-card .vote-timer i {
  color: var(--primary);
}

.vote-card .vote-btn {
  width: 100%;
  padding: 0.8rem;
  border-radius: 12px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.vote-card .vote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(155, 92, 255, 0.4);
}

.vote-card .vote-btn:disabled {
  background: rgba(255, 255, 255, 0.1);
  color: var(--muted);
  cursor: not-allowed;
}

.vote-card .vote-btn:disabled:hover {
  transform: none;
  box-shadow: none;
}

.status-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.status-available {
  background: rgba(40, 167, 69, 0.2);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

.status-cooldown {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

@media (max-width: 768px) {
  .vote-stats {
    grid-template-columns: 1fr;
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
  }
  
  .vote-filters {
    flex-direction: column;
    align-items: center;
  }
  
  .filter-btn {
    width: 100%;
    max-width: 250px;
  }
}

.boutique-hero {
  text-align: center;
  padding: 3rem 2rem;
  margin: 2rem 0;
  background: linear-gradient(135deg, rgba(155, 92, 255, 0.1), rgba(255, 43, 214, 0.1));
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.boutique-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.boutique-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.boutique-hero .subtitle {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.highlight {
  color: var(--primary);
  font-weight: 600;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-stats .stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stats .stat i {
  color: var(--primary);
}

.hero-stats .stat .count {
  font-weight: 700;
  color: var(--text);
}

.boutique-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: white;
  border-color: transparent;
  box-shadow: 0 5px 15px rgba(155, 92, 255, 0.3);
}

.boutique-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.product-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card .product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
}

.badge-popular {
  background: rgba(255, 43, 214, 0.2);
  color: var(--primary);
  border: 1px solid rgba(255, 43, 214, 0.3);
}

.badge-new {
  background: rgba(40, 167, 69, 0.2);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

.badge-sale {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

.product-image {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-card h3 {
  font-size: 1.3rem;
  margin: 0.5rem 0;
}

.product-card .product-description {
  color: var(--muted);
  font-size: 0.95rem;
  min-height: 2.8em;
  margin-bottom: 1rem;
}

.product-card .product-price {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 1rem 0;
  display: block;
}

.product-card .product-actions {
  display: flex;
  gap: 0.8rem;
}

.product-card .btn {
  flex: 1;
  padding: 0.8rem;
  border-radius: 12px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-details {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.btn-details:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.testimonials {
  margin: 5rem 0;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(155, 92, 255, 0.2);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 43, 214, 0.3);
}

.user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-info h4 {
  margin: 0 0 0.3rem 0;
  font-size: 1rem;
}

.rating {
  color: #ffc107;
  font-size: 0.9rem;
}

.testimonial-card p {
  font-style: italic;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.cart-icon {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: bold;
}

.cart-modal {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  height: 100vh;
  background: var(--bg-soft);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
}

.cart-modal.open {
  right: 0;
}

.cart-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-cart {
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-cart:hover {
  color: var(--primary);
}

.cart-items {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-image {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
}

.cart-item-name {
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.cart-item-price {
  color: var(--primary);
  font-weight: 700;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #dc3545;
  cursor: pointer;
  font-size: 1rem;
}

.cart-total {
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
}

.checkout-btn {
  margin: 0 1.5rem 1.5rem;
}

.floating-coins {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.floating-coins::before,
.floating-coins::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, var(--primary) 30%, transparent 70%);
  border-radius: 50%;
  opacity: 0.6;
  animation: float 8s infinite linear;
}

.floating-coins::before {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 15s;
}

.floating-coins::after {
  top: 70%;
  left: 80%;
  animation-delay: 2s;
  animation-duration: 12s;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(0) rotate(360deg);
    opacity: 0.6;
  }
}

@media (max-width: 768px) {
  .boutique-hero h1 {
    font-size: 2.2rem;
  }
  
  .hero-stats {
    flex-direction: column;
    align-items: center;
  }
  
  .boutique-grid {
    grid-template-columns: 1fr;
  }
  
  .cart-modal {
    width: 100%;
    right: -100%;
  }
}

.reprendre-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(45deg, #ff9500, #ff5e00);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 20;
  box-shadow: 0 4px 15px rgba(255, 94, 0, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: pulse-orange 2s infinite;
}

@keyframes pulse-orange {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 94, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 94, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 94, 0, 0);
  }
}

.card.a-reprendre {
  border: 1px solid rgba(255, 149, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.card.a-reprendre::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff9500, #ff5e00);
  z-index: 10;
}

.card.a-reprendre:hover {
  border-color: rgba(255, 149, 0, 0.5);
  box-shadow: 0 12px 45px rgba(255, 149, 0, 0.2);
}

.card.unavailable.a-reprendre {
  border-color: rgba(255, 149, 0, 0.3);
}

.card.unavailable.a-reprendre .reprendre-badge {
  top: 50px;
  animation: none;
  background: linear-gradient(45deg, #ff5e00, #ff2a00);
}

@media (max-width: 600px) {
  .reprendre-badge {
    font-size: 0.7rem;
    padding: 4px 8px;
    top: 10px;
    right: 10px;
  }
  
  .card.unavailable.a-reprendre .reprendre-badge {
    top: 40px;
  }
}

.job-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  border-color: transparent;
}

/* ============================================
   STYLES SPÉCIFIQUES POUR LES PAGES LÉGALES
   (Politique de confidentialité & Mentions légales)
   ============================================ */

/* Styles pour les sections de contenu légal */
main .container > div {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Styles pour les blocs d'information légale */
main .container > div > div {
  transition: all 0.3s ease;
}

main .container > div > div:hover {
  transform: translateY(-3px);
}

/* Style pour les listes dans les pages légales */
main ul {
  list-style: none;
  padding-left: 0;
}

main ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--muted);
  line-height: 1.6;
}

main ul li::before {
  content: "▹";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 0.9rem;
}

/* Style pour les liens dans les pages légales */
main a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px dotted transparent;
}

main a:hover {
  color: white;
  text-shadow: 0 0 8px var(--primary);
  border-bottom-color: var(--primary);
}

/* Style pour les titres de sections */
main h2 {
  font-size: 1.6rem;
  margin-top: 0;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

main h2 i {
  font-size: 1.4rem;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Style pour les blocs avec fond (déjà existant mais renforcé) */
main .container > div > div {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 2rem;
  margin: 1.5rem 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Style pour la date de mise à jour */
main .container > div > p:first-of-type {
  text-align: center;
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

/* Style pour le bandeau d'acceptation en bas de page */
main .container > div > div:last-child {
  background: linear-gradient(135deg, rgba(155, 92, 255, 0.1), rgba(255, 43, 214, 0.1));
  border-color: rgba(255, 43, 214, 0.2);
  text-align: center;
}

main .container > div > div:last-child p {
  margin-bottom: 0;
  color: var(--text);
}

/* Style responsif pour les pages légales */
@media (max-width: 768px) {
  main h2 {
    font-size: 1.3rem;
    flex-wrap: wrap;
  }
  
  main h2 i {
    font-size: 1.2rem;
  }
  
  main .container > div > div {
    padding: 1.5rem;
  }
  
  main ul li {
    padding-left: 1.2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  main .container > div > div {
    padding: 1rem;
    margin: 1rem 0;
  }
  
  main h2 {
    font-size: 1.2rem;
  }
  
  main ul li {
    padding-left: 1rem;
    font-size: 0.85rem;
  }
}

.admin-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.admin-icon:hover {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 25px rgba(155, 92, 255, 0.25) inset;
  color: var(--primary);
  transform: rotate(45deg);
}

/* ============================================
   PAGE "NOTRE ÉQUIPE" — LINSY-CITY-RP
   À inclure APRÈS style.css
   ============================================ */

.team-hero {
  text-align: center;
  padding: 3rem 1.5rem;
  margin: 1.5rem 0 2.5rem;
  background: linear-gradient(135deg, rgba(155, 92, 255, 0.1), rgba(255, 43, 214, 0.1));
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.team-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.team-hero h1 {
  margin-bottom: 0.8rem;
}

.team-hero p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
}

.team-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0 0 2rem;
  flex-wrap: wrap;
}

.team-grid {
  display: grid;
  gap: 26px;
  margin: 24px 0 3rem;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.team-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 26px 22px 22px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.team-photo-wrap {
  width: 110px;
  height: 110px;
  margin-bottom: 1rem;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  flex-shrink: 0;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--bg);
  display: block;
}

.team-photo-fallback {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: white;
  background: var(--bg-soft);
}

.team-body {
  width: 100%;
}

.team-name {
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.team-pseudo {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.team-role {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--muted);
  background: rgba(155, 92, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 0.8rem;
}

.team-badges {
  justify-content: center;
  margin-bottom: 0.6rem;
}

.team-bio {
  font-size: 0.9rem;
  color: var(--muted);
  min-height: 2.6em;
  margin-bottom: 1rem;
}

.team-discord-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(88, 101, 242, 0.12);
  border: 1px solid rgba(88, 101, 242, 0.3);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-bottom: 0.8rem;
}

.team-discord-btn:hover {
  background: rgba(88, 101, 242, 0.22);
  border-color: rgba(88, 101, 242, 0.5);
  transform: translateY(-2px);
}

.team-discord-btn i.fa-discord {
  color: #9aa7ff;
}

.team-discord-btn .copy-icon {
  margin-left: auto;
  opacity: 0.6;
  font-size: 0.8rem;
}

.team-joined {
  font-size: 0.8rem;
  color: var(--muted);
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 0.6rem;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 0.4rem;
}

.team-social-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.25s ease;
}

.team-social-icon:hover {
  border-color: var(--secondary);
  background: rgba(155, 92, 255, 0.15);
  transform: translateY(-2px);
}

.team-stats {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.team-stats .stat {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.team-stats .stat i {
  color: var(--primary);
}

.team-stats .stat .count {
  font-weight: 700;
  color: var(--text);
  font-family: 'Orbitron', sans-serif;
}

.team-join-cta {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(155, 92, 255, 0.08);
  border: 1px solid rgba(155, 92, 255, 0.25);
  border-radius: 20px;
  margin: 3rem 0 1rem;
}

.team-join-cta h2 {
  margin-bottom: 0.6rem;
}

.team-join-cta p {
  max-width: 560px;
  margin: 0 auto 1.4rem;
}

@media (max-width: 600px) {
  .team-hero h1 {
    font-size: 2rem;
  }
  .team-photo-wrap {
    width: 96px;
    height: 96px;
  }
}

.card { position: relative; }
.prod-badge-tag, .prod-indispo-tag {
  position: absolute; top: 10px; right: 10px;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  padding: 3px 10px; border-radius: 999px; letter-spacing: 0.4px;
  background: rgba(255,43,214,0.9); color: #fff; z-index: 2;
}
.prod-indispo-tag { top: auto; bottom: 10px; right: 10px; background: rgba(220,53,69,0.9); }
.produit-indisponible { opacity: 0.55; }
.btn-disabled { opacity: 0.6; cursor: not-allowed; pointer-events: none; }

.team-card{
    position:relative;
    overflow:visible;
}

.veteran-badge{
    position:absolute;
    top:-12px;
    left:-12px;

    display:flex;
    align-items:center;
    gap:8px;

    padding:8px 14px;

    background:linear-gradient(135deg,#ffd700,#ff9800);
    color:#111;

    font-weight:800;
    font-size:.72rem;
    text-transform:uppercase;
    letter-spacing:.08em;

    border-radius:999px;
    border:2px solid rgba(255,255,255,.35);

    box-shadow:
        0 0 12px rgba(255,215,0,.8),
        0 0 30px rgba(255,170,0,.5);

    z-index:50;

    animation:veteranGlow 2s infinite alternate;
}

.veteran-badge i{
    color:#fff;
    text-shadow:0 0 8px rgba(255,255,255,.8);
}

@keyframes veteranGlow{
    from{
        transform:scale(1);
        box-shadow:
            0 0 10px rgba(255,215,0,.6),
            0 0 25px rgba(255,170,0,.4);
    }

    to{
        transform:scale(1.04);
        box-shadow:
            0 0 18px rgba(255,215,0,1),
            0 0 45px rgba(255,170,0,.8);
    }
}

.btn-edit{
    background:#3b82f6;
    color:white;
    border:none;
    padding:8px 14px;
    border-radius:10px;
    cursor:pointer;
    margin-right:8px;
}

.btn-edit:hover{
    background:#2563eb;
}


/* ============================================
   PARTIE "OUVERTURE" — LINSY-CITY-RP
   ============================================ */

.opening-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    max-width: 750px;
    margin: 25px auto;
    padding: 18px 24px;
    background: rgba(255, 43, 214, 0.12);
    border: 1px solid rgba(255, 43, 214, 0.5);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 25px rgba(255, 43, 214, 0.2);
    animation: pulseBanner 2.5s infinite;
}

.opening-banner i {
    font-size: 2rem;
    color: #ff2bd6;
}

.opening-banner strong {
    display: block;
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.opening-banner span {
    color: #ddd;
    font-size: 0.95rem;
    line-height: 1.5;
}

@keyframes pulseBanner {
    0%,100% {
        box-shadow: 0 0 20px rgba(255,43,214,.25);
    }
    50% {
        box-shadow: 0 0 35px rgba(255,43,214,.55);
    }
}

@media (max-width: 768px) {
    .opening-banner {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }

    .opening-banner i {
        font-size: 1.8rem;
    }
}

/* ================= POPUP ================= */

.popup-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.78);
    backdrop-filter:blur(8px);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
    padding:20px;
    animation:fadePopup .35s;
}

.popup-overlay.hide{
    display:none;
}

.popup-box{
    width:100%;
    max-width:720px;
    background:#12001f;
    border:2px solid rgba(255,43,214,.45);
    border-radius:22px;
    padding:35px;
    color:white;
    position:relative;
    text-align:center;
    box-shadow:0 0 45px rgba(255,43,214,.35);
}

.popup-box h2{
    color:#ff2bd6;
    margin-bottom:15px;
    font-size:2rem;
}

.popup-subtitle{
    color:#d6d6d6;
    margin-bottom:30px;
    line-height:1.7;
}

.popup-info{
    display:grid;
    gap:15px;
    margin-bottom:30px;
}

.popup-item{
    background:rgba(255,255,255,.05);
    border-left:4px solid #ff2bd6;
    border-radius:10px;
    padding:18px;
    text-align:left;
}

.popup-buttons{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
    margin-bottom:25px;
}

.popup-btn{
    padding:13px 22px;
    border-radius:10px;
    background:linear-gradient(45deg,#ff2bd6,#9b5cff);
    color:white;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

.popup-btn:hover{
    transform:translateY(-3px);
}

.popup-btn.secondary{
    background:#232323;
}

.popup-confirm{
    padding:14px 28px;
    border:none;
    border-radius:10px;
    background:#ff2bd6;
    color:white;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

.popup-confirm:hover{
    transform:translateY(-2px);
    box-shadow:0 0 20px rgba(255,43,214,.5);
}

.popup-close{
    position:absolute;
    right:15px;
    top:15px;
    background:none;
    border:none;
    color:white;
    font-size:24px;
    cursor:pointer;
}

@keyframes fadePopup{
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
}

@media(max-width:768px){

    .popup-box{
        padding:25px;
    }

    .popup-buttons{
        flex-direction:column;
    }

}

/* === BOUTON FLOTTANT VISION === */
.floating-vision-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff2bd6, #9b5cff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(255, 43, 214, 0.5);
    z-index: 9999;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: pulseVision 2s infinite;
}

.floating-vision-btn:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 8px 35px rgba(255, 43, 214, 0.8);
    color: white;
}

.floating-vision-btn .tooltip {
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 43, 214, 0.3);
    font-family: 'Inter', sans-serif;
}

.floating-vision-btn:hover .tooltip {
    opacity: 1;
    transform: translateX(-5px);
}

.floating-vision-btn .tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 8px solid rgba(0, 0, 0, 0.85);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

@keyframes pulseVision {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(255, 43, 214, 0.5);
    }
    50% {
        box-shadow: 0 4px 40px rgba(255, 43, 214, 0.8), 0 0 60px rgba(155, 92, 255, 0.3);
    }
}

/* Version mobile */
@media (max-width: 768px) {
    .floating-vision-btn {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        bottom: 20px;
        right: 20px;
    }
    
    .floating-vision-btn .tooltip {
        display: none;
    }
}

/* Thème sombre (pour les pages où le fond est différent) */
.floating-vision-btn.dark-theme {
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Animation d'entrée */
.floating-vision-btn {
    animation: slideInVision 0.6s ease-out, pulseVision 2s 0.6s infinite;
}

@keyframes slideInVision {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ============================================
   PAGE CONTACT — AMÉLIORATIONS PROFESSIONNELLES
   ============================================ */

/* --- EN-TÊTE HERO --- */
.contact-hero {
  text-align: center;
  padding: 3rem 1.5rem 2rem;
  margin: 0 0 2.5rem 0;
  background: linear-gradient(135deg, rgba(155, 92, 255, 0.08), rgba(255, 43, 214, 0.06));
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
  background-size: 200% 100%;
  animation: shimmerBorder 4s linear infinite;
}

@keyframes shimmerBorder {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

.contact-hero-content {
  position: relative;
  z-index: 1;
}

.hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  border-radius: 20px;
  font-size: 2rem;
  color: white;
  margin-bottom: 1.2rem;
  box-shadow: 0 8px 30px rgba(155, 92, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-icon:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(155, 92, 255, 0.5);
}

.contact-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 0.8rem;
  background: linear-gradient(45deg, #fff, var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-hero .subtitle {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}

/* --- BANDEAUX D'INFORMATIONS --- */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem 1.2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(155, 92, 255, 0.3);
  box-shadow: 0 10px 30px rgba(155, 92, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
}

.info-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(45deg, rgba(255, 43, 214, 0.15), rgba(155, 92, 255, 0.15));
  border-radius: 14px;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
  transition: all 0.3s ease;
}

.info-card:hover .info-card-icon {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: white;
  transform: scale(1.1);
}

.info-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.info-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* --- ENVELOPPE DU FORMULAIRE --- */
.form-wrapper {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h2 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--text);
}

.form-header h2 i {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.form-header p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* --- AMÉLIORATIONS DU FORMULAIRE EXISTANT --- */
.form .input-group label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.form .input-group label i {
  color: var(--primary);
  font-size: 0.9rem;
}

.form input,
.form textarea {
  transition: all 0.3s ease;
}

.form input:focus,
.form textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(155, 92, 255, 0.15), 0 0 20px rgba(155, 92, 255, 0.05);
}

/* --- CAPTCHA AMÉLIORÉ --- */
.captcha-container {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.captcha-container:focus-within {
  border-color: rgba(155, 92, 255, 0.3);
  box-shadow: 0 0 0 4px rgba(155, 92, 255, 0.08);
}

.captcha-container label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.captcha-container label i {
  color: var(--primary);
}

.captcha-input-group {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.captcha-input-group span {
  font-weight: 700;
  font-size: 1.1rem;
  min-width: 160px;
  padding: 0.4rem 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  text-align: center;
}

.captcha-input-group input {
  flex: 1;
  min-width: 120px;
}

.icon-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--text);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.icon-btn:hover {
  background: rgba(155, 92, 255, 0.2);
  border-color: var(--secondary);
  transform: rotate(60deg);
}

/* --- BOUTON D'ENVOI AMÉLIORÉ --- */
.submit-btn {
  position: relative;
  overflow: hidden;
  padding: 14px 28px;
  font-size: 1.05rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(155, 92, 255, 0.3);
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(155, 92, 255, 0.5);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.submit-btn .btn-text {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-loader {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* --- SECTION CONTACT ALTERNATIF --- */
.contact-alternative {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin: 2rem 0 3rem;
}

.alt-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.alt-card:hover {
  transform: translateY(-5px);
  border-color: rgba(155, 92, 255, 0.3);
  box-shadow: 0 10px 35px rgba(155, 92, 255, 0.12);
}

.alt-card i {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
  display: block;
}

.alt-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.alt-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.alt-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 10px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 0.9rem;
}

.alt-btn:hover {
  background: rgba(155, 92, 255, 0.15);
  border-color: var(--secondary);
  color: white;
  transform: translateY(-2px);
}

.alt-btn i {
  font-size: 1.1rem;
  color: var(--primary);
  margin: 0;
}

.alt-card:first-child .alt-btn i {
  color: #9aa7ff;
}

/* --- STATUS MESSAGES AMÉLIORÉS --- */
.status-message {
  padding: 1rem 1.2rem;
  border-radius: 16px;
  margin-top: 1.5rem;
  text-align: center;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.status-message.loading {
  background-color: rgba(255, 193, 7, 0.12);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.25);
}

.status-message.success {
  background-color: rgba(40, 167, 69, 0.12);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.25);
}

.status-message.error {
  background-color: rgba(220, 53, 69, 0.12);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.25);
}

/* --- NOTIFICATION AMÉLIORÉE --- */
.notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: white;
  padding: 14px 24px;
  border-radius: 16px;
  display: none;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 35px rgba(155, 92, 255, 0.4);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 1000;
  animation: slideIn 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.notification.success {
  background: linear-gradient(45deg, #28a745, #20c997);
  box-shadow: 0 8px 35px rgba(40, 167, 69, 0.4);
}

.notification i {
  font-size: 1.2rem;
}

@keyframes slideIn {
  from {
    transform: translateX(80px) scale(0.9);
    opacity: 0;
  }
  to {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-hero .subtitle {
    font-size: 1rem;
  }

  .hero-icon {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }

  .form-wrapper {
    padding: 1.2rem;
  }

  .form-header h2 {
    font-size: 1.3rem;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-alternative {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .captcha-input-group {
    flex-direction: column;
    align-items: stretch;
  }

  .captcha-input-group span {
    text-align: center;
    min-width: unset;
  }

  .icon-btn {
    align-self: center;
  }

  .notification {
    bottom: 20px;
    right: 20px;
    left: 20px;
    padding: 12px 18px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 2rem 1rem 1.5rem;
  }

  .contact-hero h1 {
    font-size: 1.6rem;
  }

  .form-wrapper {
    padding: 1rem;
  }

  .alt-card {
    padding: 1.5rem 1rem;
  }

  .submit-btn {
    font-size: 0.95rem;
    padding: 12px 20px;
  }
}

/* ============================================
   PAGE LIENS — AMÉLIORATIONS PROFESSIONNELLES
   ============================================ */

/* --- EN-TÊTE HERO --- */
.links-hero {
  text-align: center;
  padding: 3rem 1.5rem 2rem;
  margin: 0 0 2.5rem 0;
  background: linear-gradient(135deg, rgba(155, 92, 255, 0.08), rgba(255, 43, 214, 0.06));
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.links-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
  background-size: 200% 100%;
  animation: shimmerBorder 4s linear infinite;
}

.links-hero-content {
  position: relative;
  z-index: 1;
}

.links-hero .hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  border-radius: 20px;
  font-size: 2rem;
  color: white;
  margin-bottom: 1.2rem;
  box-shadow: 0 8px 30px rgba(155, 92, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.links-hero .hero-icon:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(155, 92, 255, 0.5);
}

.links-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 0.8rem;
  background: linear-gradient(45deg, #fff, var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.links-hero .subtitle {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}

.links-hero .subtitle strong {
  color: var(--primary);
}

/* --- STATISTIQUES --- */
.links-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.stat-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: rgba(155, 92, 255, 0.3);
  box-shadow: 0 10px 30px rgba(155, 92, 255, 0.1);
}

.stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  font-family: 'Orbitron', sans-serif;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.stat-number i {
  font-size: 1.8rem;
  color: var(--primary);
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

/* --- EN-TÊTE DE LA GRILLE --- */
.links-grid-wrapper {
  margin: 2rem 0 3rem;
}

.links-header {
  text-align: center;
  margin-bottom: 2rem;
}

.links-header h2 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--text);
}

.links-header h2 i {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.links-header p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* --- CARTES DES LIENS AMÉLIORÉES --- */
#liensGrid .card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#liensGrid .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

#liensGrid .card:hover::before {
  opacity: 1;
}

#liensGrid .card:hover {
  transform: translateY(-6px);
  border-color: rgba(155, 92, 255, 0.3);
  box-shadow: 0 12px 35px rgba(155, 92, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
}

#liensGrid .card .card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(45deg, rgba(255, 43, 214, 0.12), rgba(155, 92, 255, 0.12));
  border-radius: 16px;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

#liensGrid .card:hover .card-icon {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: white;
  transform: scale(1.1) rotate(-5deg);
}

#liensGrid .card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

#liensGrid .card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
  flex: 1;
}

#liensGrid .card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

#liensGrid .card .card-link i {
  font-size: 0.8rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

#liensGrid .card:hover .card-link i {
  transform: translateX(4px);
}

#liensGrid .card .card-link:hover {
  background: rgba(155, 92, 255, 0.15);
  border-color: var(--secondary);
  color: white;
}

/* Badge "Externe" pour les liens sortants */
#liensGrid .card .external-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.65rem;
  padding: 3px 8px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

/* --- SECTION ACCÈS RAPIDE --- */
.links-quick-access {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0 2rem;
}

.quick-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.quick-card:hover {
  transform: translateY(-4px);
  border-color: rgba(155, 92, 255, 0.3);
  box-shadow: 0 10px 30px rgba(155, 92, 255, 0.1);
}

.quick-card.discord-highlight {
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.12), rgba(88, 101, 242, 0.04));
  border-color: rgba(88, 101, 242, 0.25);
}

.quick-card.discord-highlight:hover {
  border-color: rgba(88, 101, 242, 0.5);
  box-shadow: 0 10px 30px rgba(88, 101, 242, 0.15);
}

.quick-card > i {
  font-size: 2.2rem;
  color: var(--primary);
  flex-shrink: 0;
}

.quick-card.discord-highlight > i {
  color: #9aa7ff;
}

.quick-content {
  flex: 1;
}

.quick-content h3 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
  color: var(--text);
}

.quick-content p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

.quick-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 8px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.quick-btn:hover {
  background: rgba(155, 92, 255, 0.15);
  border-color: var(--secondary);
  color: white;
  transform: translateY(-2px);
}

.quick-card.discord-highlight .quick-btn {
  background: rgba(88, 101, 242, 0.2);
  border-color: rgba(88, 101, 242, 0.3);
  color: #9aa7ff;
}

.quick-card.discord-highlight .quick-btn:hover {
  background: rgba(88, 101, 242, 0.35);
  border-color: rgba(88, 101, 242, 0.5);
  color: white;
}

.quick-btn i {
  font-size: 1rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .links-hero h1 {
    font-size: 2rem;
  }

  .links-hero .subtitle {
    font-size: 1rem;
  }

  .links-hero .hero-icon {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }

  .links-stats {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .stat-item {
    padding: 1rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .links-header h2 {
    font-size: 1.3rem;
  }

  .quick-card {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .quick-content {
    flex: 1 1 100%;
    text-align: center;
  }

  .quick-btn {
    width: 100%;
    justify-content: center;
  }

  #liensGrid .card {
    padding: 1.2rem;
  }

  #liensGrid .card .card-icon {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .links-hero {
    padding: 2rem 1rem 1.5rem;
  }

  .links-hero h1 {
    font-size: 1.6rem;
  }

  .links-quick-access {
    grid-template-columns: 1fr;
  }

  .quick-card {
    padding: 1.2rem;
  }

  #liensGrid {
    grid-template-columns: 1fr;
  }
}

/* Animation d'entrée pour les cartes */
#liensGrid .card {
  animation: fadeInUp 0.6s ease-out both;
}

#liensGrid .card:nth-child(1) { animation-delay: 0.05s; }
#liensGrid .card:nth-child(2) { animation-delay: 0.1s; }
#liensGrid .card:nth-child(3) { animation-delay: 0.15s; }
#liensGrid .card:nth-child(4) { animation-delay: 0.2s; }
#liensGrid .card:nth-child(5) { animation-delay: 0.25s; }
#liensGrid .card:nth-child(6) { animation-delay: 0.3s; }
#liensGrid .card:nth-child(7) { animation-delay: 0.35s; }
#liensGrid .card:nth-child(8) { animation-delay: 0.4s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= POPUP AMÉLIORÉE ================= */

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 20px;
    animation: popupFadeIn 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.popup-overlay.hide {
    display: none;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* === BOX === */
.popup-box {
    width: 100%;
    max-width: 620px;
    background: linear-gradient(145deg, #0f001a, #1a0030);
    border: 1px solid rgba(255, 43, 214, 0.3);
    border-radius: 28px;
    padding: 40px 35px 30px;
    color: #fff;
    position: relative;
    text-align: center;
    overflow: hidden;
    box-shadow:
        0 0 60px rgba(255, 43, 214, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* === FOND ANIMÉ === */
.popup-bg-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 50% 30%, rgba(155, 92, 255, 0.12), transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(255, 43, 214, 0.06), transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: bgPulse 6s ease-in-out infinite alternate;
}

@keyframes bgPulse {
    0% { transform: scale(1) rotate(0deg); opacity: 0.6; }
    100% { transform: scale(1.1) rotate(3deg); opacity: 1; }
}

/* === PARTICULES === */
.popup-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.popup-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatParticle 8s infinite ease-in-out;
}

.popup-particles span:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.popup-particles span:nth-child(2) { top: 20%; right: 15%; animation-delay: 1.5s; width: 6px; height: 6px; }
.popup-particles span:nth-child(3) { bottom: 25%; left: 20%; animation-delay: 3s; }
.popup-particles span:nth-child(4) { bottom: 15%; right: 25%; animation-delay: 4.5s; width: 5px; height: 5px; }
.popup-particles span:nth-child(5) { top: 50%; left: 5%; animation-delay: 6s; width: 3px; height: 3px; }

@keyframes floatParticle {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.2; }
    50% { transform: translateY(-30px) scale(1.5); opacity: 0.6; }
}

/* === BOUTON FERMER === */
.popup-close {
    position: absolute;
    right: 16px;
    top: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
    background: rgba(255, 43, 214, 0.2);
    color: #fff;
    transform: rotate(90deg);
    border-color: rgba(255, 43, 214, 0.3);
}

/* === ICÔNE === */
.popup-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(255, 43, 214, 0.2), rgba(155, 92, 255, 0.2));
    border-radius: 24px;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 18px;
    border: 1px solid rgba(255, 43, 214, 0.2);
    animation: iconPulse 2.5s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 43, 214, 0.15); }
    50% { box-shadow: 0 0 40px rgba(255, 43, 214, 0.3), 0 0 60px rgba(155, 92, 255, 0.1); }
}

/* === SCROLL CONTENT === */
.popup-scroll-content {
    position: relative;
    z-index: 1;
    overflow-y: auto;
    padding-right: 4px;
    max-height: 75vh;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 43, 214, 0.3) transparent;
}

/* Personnalisation de la scrollbar - WebKit */
.popup-scroll-content::-webkit-scrollbar {
    width: 4px;
}

.popup-scroll-content::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 4px;
}

.popup-scroll-content::-webkit-scrollbar-thumb {
    background: rgba(255, 43, 214, 0.3);
    border-radius: 4px;
    transition: background 0.3s ease;
}

.popup-scroll-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 43, 214, 0.5);
}

/* === TITRE === */
.popup-box h2 {
    position: relative;
    z-index: 1;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: #fff;
}

.popup-box h2 .glow-text {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 25px rgba(255, 43, 214, 0.2);
}

/* === SOUS-TITRE === */
.popup-subtitle {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.popup-subtitle strong {
    color: #fff;
}

/* === COMPTEUR === */
.popup-counter {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-bottom: 18px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 42px;
}

.counter-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.counter-label {
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 600;
}

.counter-separator {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

/* === INFOS === */
.popup-info {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.popup-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
    text-align: left;
}

.popup-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 43, 214, 0.12);
}

.popup-item.highlight {
    background: rgba(255, 43, 214, 0.05);
    border-color: rgba(255, 43, 214, 0.15);
}

.item-icon {
    font-size: 1rem;
    flex-shrink: 0;
    width: 28px;
    text-align: center;
}

.item-content {
    flex: 1;
}

.item-content strong {
    display: block;
    font-size: 0.78rem;
    color: #fff;
    margin-bottom: 1px;
}

.item-content span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
}

.item-content span strong {
    display: inline;
    color: var(--primary);
    font-size: inherit;
}

/* === BOUTONS === */
.popup-buttons {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.popup-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.8rem;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid transparent;
    cursor: pointer;
}

.popup-btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 3px 15px rgba(155, 92, 255, 0.25);
}

.popup-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(155, 92, 255, 0.4);
}

.popup-btn.secondary {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.06);
}

.popup-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.popup-btn i {
    font-size: 0.95rem;
}

/* === CONFIRMATION === */
.popup-confirm {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 30px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.popup-confirm:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transform: translateY(-2px);
}

.popup-confirm i {
    color: var(--primary);
}

/* === FOOTER === */
.popup-footer {
    position: relative;
    z-index: 1;
    margin-top: 14px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.popup-footer i {
    color: rgba(255, 255, 255, 0.15);
}

/* === INDICATEUR DE SCROLL === */
.popup-scroll-indicator {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    animation: bounceIndicator 2s ease-in-out infinite;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.popup-scroll-content {
    scrollbar-width: thin;
}

@keyframes bounceIndicator {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(4px); }
}

/* === RESPONSIVE === */
@media (max-width: 640px) {
    .popup-box {
        padding: 22px 18px 16px;
        border-radius: 18px;
        max-width: 100%;
        max-height: 95vh;
    }

    .popup-scroll-content {
        max-height: 80vh;
        padding-right: 2px;
    }

    .popup-box h2 {
        font-size: 1.3rem;
    }

    .popup-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        border-radius: 16px;
        margin-bottom: 10px;
    }

    .popup-counter {
        padding: 8px 12px;
        gap: 2px;
    }

    .counter-number {
        font-size: 1.2rem;
    }

    .counter-item {
        min-width: 34px;
    }

    .counter-separator {
        font-size: 1rem;
        padding-bottom: 6px;
    }

    .counter-label {
        font-size: 0.45rem;
    }

    .popup-item {
        padding: 8px 12px;
        gap: 10px;
    }

    .item-content strong {
        font-size: 0.74rem;
    }

    .item-content span {
        font-size: 0.7rem;
    }

    .popup-buttons {
        flex-direction: column;
        gap: 6px;
    }

    .popup-btn {
        justify-content: center;
        padding: 9px 16px;
        font-size: 0.78rem;
    }

    .popup-confirm {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .popup-close {
        width: 28px;
        height: 28px;
        font-size: 12px;
        right: 10px;
        top: 10px;
    }

    .popup-subtitle {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }

    .popup-scroll-indicator {
        display: none;
    }
}

@media (max-width: 400px) {
    .popup-box {
        padding: 18px 14px 14px;
        border-radius: 14px;
    }

    .popup-box h2 {
        font-size: 1.1rem;
    }

    .counter-number {
        font-size: 1rem;
    }

    .counter-item {
        min-width: 28px;
    }

    .popup-counter {
        padding: 6px 8px;
    }

    .popup-item {
        padding: 6px 10px;
    }

    .popup-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .popup-btn {
        padding: 8px 14px;
        font-size: 0.72rem;
    }

    .popup-confirm {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
}

/* === DATE D'OUVERTURE === */
.popup-opening-date {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin: -8px 0 16px 0;
    padding: 6px 14px;
    background: rgba(255, 43, 214, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 43, 214, 0.08);
    font-weight: 400;
}

.popup-opening-date i {
    color: var(--primary);
    font-size: 0.9rem;
}

.popup-opening-date strong {
    color: #fff;
    font-weight: 700;
}

.popup-opening-date strong:last-child {
    color: var(--primary);
}

/* Version responsive */
@media (max-width: 640px) {
    .popup-opening-date {
        font-size: 0.7rem;
        padding: 4px 12px;
        gap: 6px;
        margin: -4px 0 12px 0;
    }
}

@media (max-width: 400px) {
    .popup-opening-date {
        font-size: 0.65rem;
        padding: 4px 10px;
        flex-wrap: wrap;
    }
}