: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;
  }
}