body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  background: #111;
  color: #fff;
}

.hero {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
              url('images/banner.jpg') center/cover no-repeat;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.hero::after {
  content: """";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('images/smoke-pink.gif') center/cover no-repeat;
  opacity: 0.25;
  z-index: 1;
  animation: pulseSmoke 10s infinite ease-in-out;
  filter: brightness(1.1) contrast(1.2);
  pointer-events: none;
}
@keyframes pulseSmoke {
  0% { transform: scale(1); opacity: 0.25; }
  50% { transform: scale(1.05); opacity: 0.35; }
  100% { transform: scale(1); opacity: 0.25; }
}

/* Étincelles sensuelles rouges */
@keyframes sparkles {
  0% { transform: translateY(0) scale(1); opacity: 0.8; }
  100% { transform: translateY(-200px) scale(0.5); opacity: 0; }
}

.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, #ff3366, #ff0033);
  border-radius: 50%;
  animation: sparkles 4s linear infinite;
  pointer-events: none;
  z-index: 2;
  opacity: 0.6;
}

.hero {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.hero-content {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 25px rgba(255, 51, 102, 0.4), 0 0 60px rgba(255, 51, 102, 0.15);
  animation: glowSoft 4s infinite ease-in-out;
}

@keyframes glowSoft {
  0% {
    box-shadow: 0 0 25px rgba(255, 51, 102, 0.3), 0 0 60px rgba(255, 51, 102, 0.12);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 35px rgba(255, 51, 102, 0.5), 0 0 70px rgba(255, 51, 102, 0.25);
    transform: scale(1.015);
  }
  100% {
    box-shadow: 0 0 25px rgba(255, 51, 102, 0.3), 0 0 60px rgba(255, 51, 102, 0.12);
    transform: scale(1);
  }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8em;
  margin-bottom: 10px;
  color: #fff;
  animation: fadeInDown 1s ease forwards;
  opacity: 0;
}
.hero p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1em;
  color: #ddd;
  animation: fadeInUp 1.5s ease forwards;
  opacity: 0;
}
@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.highlight {
  color: #ff3366;
  font-weight: bold;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  background: #ff3366;
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}
.cta-button:hover {
  background: #e02b5d;
}

.scroll-arrow {
  display: block;
  margin: 30px auto 0;
  font-size: 2.5rem;
  animation: bounce 2s infinite;
  color: #ff3366;
  text-decoration: none;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(10px); }
  60% { transform: translateY(5px); }
}

.gallery {
  padding: 60px 20px;
  text-align: center;
  background: #1c1c1c;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.gallery-item video {
  width: 100%;
  border-radius: 15px;
  filter: blur(12px);
  pointer-events: none;
  object-fit: cover;
  height: 200px;
}

.about {
  background: linear-gradient(to right, #1f1f1f, #2a2a2a);
  padding: 60px 20px;
  color: #fff;
  text-align: center;
}
.about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  max-width: 800px;
  margin: 0 auto;
}
.about-photo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #ff3366;
  box-shadow: 0 0 20px rgba(255, 51, 102, 0.4);
}
.about-text h2 {
  font-size: 2em;
  margin-bottom: 10px;
  color: #ff3366;
}
.about-text p {
  font-size: 1.1em;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}
.audio-bubble {
  background: #1c1c1c;
  border: 2px solid #ff3366;
  border-radius: 20px;
  padding: 20px;
  margin-top: 20px;
  text-align: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 15px rgba(255, 51, 102, 0.2);
}
.audio-bubble p {
  margin: 0 0 10px;
  font-style: italic;
  color: #ff99b3;
}
.audio-bubble audio {
  width: 100%;
  outline: none;
  border-radius: 10px;
}

.services {
  background: #1a1a1a;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}
.services h2 {
  font-size: 2em;
  color: #ff3366;
  margin-bottom: 10px;
}
.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}
.service {
  background: #222;
  padding: 25px;
  border-radius: 15px;
  border: 1px solid #333;
  transition: transform 0.3s ease;
}
.service:hover {
  transform: scale(1.05);
}
.service h3 {
  margin-top: 0;
  color: #ff99b3;
}
.price {
  display: inline-block;
  margin-top: 15px;
  font-weight: bold;
  color: #ff3366;
  font-size: 1.2em;
}

.order-form {
  background: #1a1a1a;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}
.order-form h2 {
  color: #ff3366;
  margin-bottom: 20px;
}
.order-form form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}
.order-form label {
  display: block;
  margin: 15px 0 5px;
  font-weight: bold;
  color: #ff99b3;
}
.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  padding: 10px;
  background: #2a2a2a;
  border: 1px solid #444;
  border-radius: 10px;
  color: #fff;
  font-size: 1em;
}
.order-form button {
  margin-top: 20px;
  width: 100%;
}

.confirmation-message {
  display: none;
  margin-top: 20px;
  color: #ff99b3;
  font-size: 1.1em;
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.social-btn:hover {
  transform: scale(1.05);
}

/* === Responsive Mobile === */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 60px 20px;
  }
  .hero h1 {
    font-size: 2em;
  }
  .hero p {
    font-size: 1em;
  }
  .cta-button {
    width: 100%;
    padding: 14px;
    font-size: 1em;
  }
  .scroll-arrow {
    font-size: 2em;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .service-list {
    grid-template-columns: 1fr;
  }
  .about-container {
    padding: 0 10px;
  }
  .about-text h2 {
    font-size: 1.5em;
  }
  .about-text p {
    font-size: 1em;
  }
  .about-photo {
    width: 150px;
    height: 150px;
  }
  .order-form form {
    padding: 0 10px;
  }
  .order-form input,
  .order-form select,
  .order-form textarea {
    font-size: 0.95em;
  }

}
@media screen and (max-width: 600px) {
  .hero-content {
    padding-top: 140px;
    padding-bottom: 60px;
  }

  .hero-content h1 {
    font-size: 1.6em;
    line-height: 1.3em;
    text-align: center;
    margin-top: 20px;
  }

  .hero-content p {
    font-size: 1em;
    text-align: center;
  }

  .cta-button,
  .scroll-arrow {
    transform: scale(0.9);
  }
}
.socials {
  background: #111;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.socials-inner {
  max-width: 800px;
  margin: 0 auto;
}

.socials h2 {
  font-size: 1.8em;
  color: #ff3366;
  margin-bottom: 10px;
}

.socials p {
  font-size: 1em;
  color: #ddd;
  margin-bottom: 30px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.social-btn {
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 1em;
  transition: background 0.3s ease, transform 0.3s ease;
}

.social-btn.instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.social-btn.reveal {
  background: linear-gradient(45deg, #ff5f6d, #ffc371);
}

.social-btn.youtube {
  background: linear-gradient(45deg, #ff0000, #cc0000);
}
.social-btn.telegram {
  background: linear-gradient(45deg, #0088cc, #00aaff);
}


.social-btn:hover {
  transform: scale(1.05);
}

@media screen and (max-width: 600px) {
  .social-links {
    flex-direction: column;
    align-items: center;
  }
}
.smoke-container {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.smoke-svg {
  width: 100%;
  height: 100%;
  opacity: 0.2;
  background: transparent;
}
.cta-button {
  position: relative;
  z-index: 2;
  animation: pulse-glow 2s infinite;
  box-shadow: 0 0 10px #ff007f, 0 0 20px #ff007f;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #ff007f, 0 0 20px #ff007f; }
  50% { box-shadow: 0 0 20px #ff007f, 0 0 30px #ff007f; }
  100% { box-shadow: 0 0 10px #ff007f, 0 0 20px #ff007f; }
}
.sexy-stats {
  background: linear-gradient(to right, #1f1f1f, #2c1a1f);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.sexy-stats h2 {
  font-size: 2em;
  color: #ff3366;
  margin-bottom: 40px;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.stat {
  background: #222;
  padding: 30px;
  border-radius: 15px;
  width: 200px;
  box-shadow: 0 0 15px rgba(255, 51, 102, 0.3);
  transition: transform 0.3s ease;
}

.stat:hover {
  transform: scale(1.05);
}

.stat-number {
  display: block;
  font-size: 2.5em;
  font-weight: bold;
  color: #ff99b3;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .stat {
    width: 90%;
    margin: 15px auto;
    border: 1px solid #ff3366;
    background: #2a2a2a;
    box-shadow: 0 0 10px rgba(255, 51, 102, 0.3);
    border-radius: 15px;
    padding: 20px;
  }

  .stat-number {
    font-size: 2em;
  }

  .sexy-stats h2 {
    font-size: 1.6em;
    padding: 0 10px;
  }

  .stats-container {
    flex-direction: column;
    gap: 0;
  }
}
.seo-text {
  background: #101010;
  color: #ccc;
  padding: 40px 20px;
  text-align: center;
  font-size: 1em;
}
.seo-text h2 {
  color: #ff3366;
  margin-bottom: 15px;
  font-size: 1.4em;
}
.seo-text p {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(to right, #1c1c1e, #2c003e);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
  animation: slideDown 0.7s ease-in-out;
}

@keyframes slideDown {
  from { top: -80px; opacity: 0; }
  to { top: 0; opacity: 1; }
}

.navbar .logo {
  font-size: 1.5rem;
  color: #ff4da6;
  font-weight: bold;
}

.menu-icon {
  font-size: 28px;
  color: #fff;
  display: none;
  cursor: pointer;
}

.nav-links ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-links ul li a:hover {
  color: #ff66c4;
  text-shadow: 0 0 8px #ff66c4;
}

.nav-links ul li a i {
  margin-right: 6px;
  color: #ff66c4;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: #1a1a1d;
  min-width: 180px;
  display: none;
  flex-direction: column;
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
  border-radius: 4px;
  z-index: 1000;
}

.dropdown-content li a {
  padding: 10px;
  display: block;
  color: #fff;
  border-bottom: 1px solid #2c003e;
}

.dropdown-content li a:hover {
  background-color: #2c003e;
  color: #ff66c4;
  text-shadow: 0 0 6px #ff66c4;
}

.dropdown:hover .dropdown-content {
  display: flex;
}

#menu-toggle {
  display: none;
}

@media screen and (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #1a1a1d;
    display: none;
    flex-direction: column;
  }

  .nav-links ul {
    flex-direction: column;
    width: 100%;
  }

  .nav-links ul li {
    text-align: center;
    padding: 10px 0;
  }

  #menu-toggle:checked + .menu-icon + .nav-links {
    display: flex;
  }

  .dropdown:hover .dropdown-content {
    position: static;
  }
}

/* Marge de compensation pour éviter que le menu cache le contenu */
body {
  padding-top: 70px;
}

/* Bulle Telegram fixe */
.telegram-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #0088cc;
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 15px rgba(0, 136, 204, 0.6);
  z-index: 9999;
  transition: background 0.3s ease;
}

.telegram-float:hover {
  background: #0077b3;
}
.floating-socials {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 25px;
  z-index: 999;
  backdrop-filter: blur(6px);
}

.floating-socials a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background: #1a1a1d;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  justify-content: center;
  box-shadow: 0 0 15px rgba(255, 102, 196, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-socials a:hover {
  transform: scale(1.15);
  box-shadow: 0 0 20px #ff66c4;
}

.floating-socials i {
  font-size: 22px;
  color: #ff66c4;
}

.floating-socials span {
  font-size: 10px;
  color: #fff;
  margin-top: 4px;
}

/* Responsive pour mobile */
@media screen and (max-width: 600px) {
  .floating-socials {
    gap: 12px;
    top: 15px;
  }

  .floating-socials a {
    width: 48px;
    height: 48px;
  }

  .floating-socials i {
    font-size: 18px;
  }

  .floating-socials span {
    font-size: 9px;
  }
}
body {
  margin: 0;
  padding: 0;
}
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

.social-bubbles {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
  font-family: 'Bebas Neue', cursive;
}

.social-bubbles .bubble {
  text-decoration: none;
  color: #fff;
  padding: 10px 16px;
  border-radius: 25px;
  font-size: 1em;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 10px rgba(255, 105, 180, 0.6);
  transition: all 0.3s ease;
  background: #2c003e;
}

.social-bubbles .bubble:hover {
  transform: scale(1.05);
  background: #ff4da6;
  box-shadow: 0 0 15px #ff4da6;
}

.bubble.telegram { background: #0088cc; }
.bubble.instagram { background: #dd2a7b; }
.bubble.reveal { background: #ff5f6d; }
.bubble.youtube { background: #cc0000; }
.teaser-footer {
  background: linear-gradient(to right, #1c1c1c, #2a0f1f);
  color: #fff;
  padding: 50px 20px;
  text-align: center;
  border-top: 2px solid #ff3366;
}
.teaser-inner h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.4em;
  color: #ff3366;
  margin-bottom: 10px;
}
.teaser-inner p {
  font-size: 1.1em;
  color: #eee;
  margin-bottom: 20px;
}
.footer-btn {
  background-color: #ff3366;
  color: white;
  padding: 14px 28px;
  font-size: 1em;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #ff3366, 0 0 20px #ff3366;
}
.footer-btn:hover {
  background-color: #e02b5d;
  box-shadow: 0 0 20px #ff3366, 0 0 30px #ff3366;
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.8em;
    line-height: 1.2;
  }

  .hero p.banner-sub {
    font-size: 1em;
  }

  .hero-content {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .social-bubbles {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 20px;
    z-index: auto;
  }
  .hero {
    margin-top: 0;
  }

  .bubble {
    width: 80%;
    max-width: 300px;
    font-size: 1rem;
    padding: 10px 20px;
    text-align: center;
  }
}
.profile-status {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  z-index: 100;
}

.avatar-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
}

.avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(255, 0, 100, 0.6);
}

.online-badge {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 12px;
  height: 12px;
  background-color: #00ff66;
  border: 2px solid #fff;
  border-radius: 50%;
  animation: pulse 1s infinite;
}

.online-text {
  margin-left: 10px;
  color: #00ff88;
  font-size: 1rem;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
  text-shadow: 0 0 5px #000;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}
.profile-online {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
}

.profile-online img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 3px solid white;
}

.status-dot {
  width: 10px;
  height: 10px;
  background-color: limegreen;
  border-radius: 50%;
  animation: pulse 1.2s infinite;
  box-shadow: 0 0 5px limegreen;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}
@media screen and (max-width: 768px) {
  .profile-online {
    top: 8px;
    left: 12px;
    transform: scale(0.85);
  }
}

  .social-bubbles {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center; /* Centrage horizontal */
  align-items: center;      /* Centrage vertical si besoin */
  margin-top: 20px;
}
.roulette-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  padding: 30px 20px;
  position: relative;
  z-index: 1;
}

h1 {
  font-size: 2.2em;
  color: #ff66b2;
  margin-bottom: 30px;
  text-shadow: 0 0 10px #ff66b2;
}

canvas {
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  box-shadow: 0 0 15px #ff66b2;
}


.spin-btn {
  padding: 12px 24px;
  background: linear-gradient(90deg, #ff2673, #ff66b2);
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1.1em;
  margin-bottom: 25px;
  box-shadow: 0 0 20px rgba(255, 102, 178, 0.6);
  transition: 0.3s;
}

.spin-btn:hover {
  background: linear-gradient(90deg, #ff4c91, #ff99cc);
  transform: scale(1.05);
}

.result-msg {
  font-size: 1.3em;
  margin: 20px 0;
  color: #fff;
  text-shadow: 0 0 5px #ff66b2;
}

.countdown-timer {
  font-size: 1.1em;
  color: #ff99cc;
  margin-bottom: 20px;
}

.telegram-msg {
  margin-top: 10px;
  color: #ff66b2;
  font-weight: bold;
  text-shadow: 0 0 5px #ff66b2;
}

.copy-btn {
  margin-top: 12px;
  background-color: #222;
  color: #fff;
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 0 10px #ff66b2;
}

.copy-btn:hover {
  background-color: #444;
}

.glitter {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: url('https://media.giphy.com/media/l0MYt5jPR6QX5pnqM/giphy.gif') repeat center center;
  background-size: cover;
  opacity: 0.07;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.6em;
  }

  .spin-btn {
    font-size: 1em;
    padding: 10px 20px;
  }

  .result-msg {
    font-size: 1.1em;
  }
}
.wheel {
  width: 400px; /* augmente ici pour une roue plus grande */
  height: 400px;
  border-radius: 50%;
  border: 8px solid #ff69b4;
  box-shadow: 0 0 30px #ff1493;
  margin: 20px auto;
  position: relative;
  overflow: hidden;
  font-size: 16px; /* plus gros texte */
  font-weight: bold;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wheel span {
  display: block;
  padding: 8px;
  color: white;
  text-shadow: 1px 1px 2px black;
  font-size: 14px;
}
@media screen and (max-width: 500px) {
  .profile-container {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 5px 10px;
    border-radius: 50px;
  }
}  /* <-- ACCOLADE FINALE À AJOUTER ICI */
.profile-pic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-right: 8px;
}

.online-badge {
  color: #00ff88;
  font-weight: bold;
  font-size: 0.85em;
  white-space: nowrap;
}

@media screen and (max-width: 500px) {
  .profile-container {
    top: 10px;
    left: 10px;
    padding: 4px 8px;
  }

  .profile-pic {
    width: 34px;
    height: 34px;
    margin-right: 6px;
  }

  .online-badge {
    font-size: 0.75em;
  }
}
.sexy-chat-popup {
  position: fixed !important;
  bottom: 30px !important;
  right: 30px !important;
  background: linear-gradient(45deg, #ff2673, #ff66b2) !important;
  color: #fff !important;
  padding: 14px 24px !important;
  border-radius: 30px !important;
  font-weight: bold !important;
  font-size: 1em !important;
  box-shadow: 0 0 20px rgba(255, 102, 178, 0.7) !important;
  z-index: 999999 !important;
  animation: pulseChat 2s infinite !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  background-color: rgba(255, 0, 100, 0.9) !important;
}

body {
  position: relative !important;
  overflow-x: hidden;
}
* {
  position: relative;
  z-index: 0;
}

.sexy-chat-popup a {
  color: #fff;
  text-decoration: underline;
}
@keyframes pulseChat {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
@media (max-width: 600px) {
  .sexy-chat-popup {
    bottom: 20px;
    right: 15px;
    font-size: 0.9em;
    padding: 12px 18px;
  }
}
.sexy-chat-popup {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(45deg, #ff2673, #ff66b2);
  color: #fff;
  padding: 14px 24px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1em;
  box-shadow: 0 0 20px rgba(255, 102, 178, 0.7);
  z-index: 999999;
  animation: pulseChat 2s infinite;
  display: flex;
  align-items: center;
  gap: 8px;
}

@keyframes pulseChat {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
.gallery-item {
  width: 300px;
  height: 200px;
  margin: 15px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 420px) {
  .profile-online {
    top: 300px; /* descend sous les bulles */
    left: 16px; /* garde un bon alignement à gauche */
    transform: scale(0.9);
    position: absolute;
    z-index: 1000;
  }
}
/* === POPUP 18+ === */
body.popup-active > *:not(.popup-18) {
  filter: blur(6px);
  pointer-events: none;
  user-select: none;
}

.popup-18 {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999 !important;
}

.popup-18 .popup-content {
  background: #1a1a1a;
  border: 2px solid #ff3399;
  box-shadow: 0 0 30px #ff3399;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  max-width: 90%;
  color: white;
}
/* === CARROUSEL INSTAGRAM === */
.instagram-carousel {
  padding: 60px 20px;
  text-align: center;
  background: #0a0a0a;
}

.instagram-carousel h2 {
  font-size: 2em;
  color: #ff3399;
  margin-bottom: 30px;
}

.carousel-container {
  position: relative;
  width: 100%;
  max-width: 450px;
  margin: auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 51, 153, 0.4);
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  width: 100%;
}

.carousel-track img {
  width: 100%;
  height: auto;
  flex-shrink: 0;
  border-radius: 15px;
}

/* Flèches */
.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ff3399;
  border: none;
  color: white;
  padding: 10px 15px;
  font-size: 1.2em;
  cursor: pointer;
  z-index: 10;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.carousel-button:hover {
  background: #ff66b2;
}

.carousel-button.prev {
  left: 10px;
}

.carousel-button.next {
  right: 10px;
}
.site-footer {
  background: #1a1a1a;
  padding: 30px 20px;
  color: #ccc;
  text-align: center;
  border-top: 2px solid #ff3366;
  font-size: 0.95em;
}

.site-footer a {
  color: #ff66b2;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
}

.site-footer a:hover {
  text-decoration: underline;
  color: #fff;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  display: inline-block;
  margin: 5px 12px;
  color: #ff66b2;
}
