/* Styles CSS pour votre site */

/* Réinitialisation des marges et des paddings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans';
}

body {
  font-family: Arial, sans-serif;
  background-color: #f2f2f2;
  line-height: 1.5;
}

/* HEADER MODERNE GLASSMORPHISM */
header.main-nav {
  width: 100%;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #ececec;
}
.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
}
.header-logo {
  font-size: 1.7rem;
  font-weight: 900;
  color: #4f46e5;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 8px #fff8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  user-select: none;
}
.header-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header-links a {
  color: #222;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  transition: color 0.18s, background 0.18s, box-shadow 0.18s;
  padding: 0.4rem 1.1rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  background: transparent;
  box-shadow: 0 0 0 #4f46e500;
}
.header-links a.sample-pack-link {
  background: linear-gradient(90deg, #ffc107 0%, #ff9800 100%);
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  margin-left: 1rem;
  box-shadow: 0 2px 8px #ffc10722;
}
.header-links a.sample-pack-link:hover {
  background: linear-gradient(90deg, #ff9800 0%, #ffc107 100%);
  color: #fff;
  box-shadow: 0 4px 16px #ff980044;
}
.header-links a:hover {
  color: #4f46e5;
  background: #f2f2f2;
  box-shadow: 0 2px 8px #4f46e522;
}
.header-links i.fab {
  font-size: 1.5rem;
  margin-right: 0.3rem;
  color: #e1306c;
  transition: color 0.18s;
}
.header-links a[title="YouTube"] i.fab {
  color: #ff0000;
}
.header-links a:hover i.fab {
  color: #4f46e5;
}
@media (max-width: 900px) {
  .header-content {
    padding: 0 0.5rem;
  }
  .header-links {
    gap: 1rem;
  }
}
@media (max-width: 600px) {
  .header-content {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    padding: 0 0.5rem;
    height: auto;
  }
  .header-logo {
    font-size: 1.1rem;
  }
  .header-links {
    gap: 0.5rem;
  }
  .header-links a {
    font-size: 1rem;
    padding: 0.3rem 0.7rem;
  }
  .header-links a.sample-pack-link {
    font-size: 0.95rem;
    padding: 0.3rem 0.8rem;
  }
}

/* Décale le contenu pour ne pas passer sous le menu fixe */
.overlay {
  margin-top: 80px;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}

.logo:hover {
  color: #ff003c;
  transform: scale(1.05);
}

.logo.scrolling {
  color: #ff5722;
  animation: pulse-scroll 2s ease-in-out infinite;
}

.banner {
  background-image: url('assets/video.gif');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: repeat, no-repeat;
  color: #fff;
  padding: 100px 20px 200px;
  text-align: center;
  position: relative;
  height: 65vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1s;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  background-color: rgba(51, 29, 50, 0.5);
}

.banner h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
}

.banner p {
  font-size: 24px;
  margin-bottom: 40px;
}

nav {
  background-color: transparent;
  position: absolute;
  bottom: 36%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  animation: fadeInUp 1s;
}

nav a {
  background-color: #ffc107;
  color: #fff;
  padding: 10px;
  display: block;
  text-align: center;
  margin: 0 10px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  width: 150px;
  border-radius: 5px;
  font-weight: bold;
}

nav a:hover {
  background-color: #ff9800;
}
nav a:not(:hover){}

.section {
  background-color: #fff;
  padding:50px 0 50px 0;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-bottom: 50px;
  animation: fadeInUp 1s;
}

.section2{
  background-color: #fff;
  padding: 1%;
  margin-bottom: 0px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-bottom: 10px;
  animation: fadeInUp 1s;
}

.section-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
}

/* --- MODERN LICENCE CARDS --- */
.licence-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin: 0 auto;
  width: 80%;
}
.licence-card {
  background: #f3f4f6;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(99,102,241,0.07);
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.licence-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(99,102,241,0.13);
}
.licence-card h3 {
  font-size: 1.3rem;
  color: #4f46e5;
  margin-bottom: 0.7rem;
  font-weight: 700;
}
.licence-price {
  font-size: 1.2rem;
  color: #fbbf24;
  font-weight: 700;
  margin-bottom: 1rem;
}
.licence-card ul {
  list-style: none;
  margin-bottom: 1.2rem;
  color: #222;
  font-size: 1rem;
  text-align: left;
  padding-left: 0;
}
.licence-card ul li {
  margin-bottom: 0.4rem;
  padding-left: 1.2em;
  position: relative;
}
.licence-card ul li:before {
  content: '•';
  color: #6366f1;
  position: absolute;
  left: 0;
}

.iframe-container {
  width: 80%;
  margin: 0 auto;
  margin-top: 2vh;
}

iframe {
  width: 100%;
  height: 89vh;
  border: none;
  margin: 0 auto;
  display: block;
  animation: fadeIn 1s;
  margin-bottom: 5%;
}

@media (max-width: 900px) {
  .licence-cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .licence-cards {
    grid-template-columns: 1fr;
  }
}

/* SAMPLE PACK PAGE - CARTE MODERNE */
.samplepack-card {
  max-width: 420px;
  margin: 60px auto 0 auto;
  background: rgba(255,255,255,0.98);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(99,102,241,0.10), 0 2px 8px #0001;
  padding: 2.5rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 0.7s;
}
.samplepack-card h2 {
  color: #4f46e5;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  letter-spacing: 0.06em;
}
.samplepack-card p {
  color: #444;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.samplepack-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.samplepack-input-group {
  position: relative;
  width: 100%;
}
.samplepack-input-group i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #4f46e5;
  font-size: 1.2rem;
  pointer-events: none;
}
.samplepack-form input[type="email"] {
  width: 100%;
  padding: 0.8rem 1rem 0.8rem 2.5rem;
  border-radius: 8px;
  border: 1.5px solid #ccc;
  font-size: 1.1rem;
  transition: border 0.2s, box-shadow 0.2s;
}
.samplepack-form input[type="email"]:focus {
  border: 1.5px solid #4f46e5;
  box-shadow: 0 0 8px #4f46e522;
  outline: none;
}
.samplepack-form button {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  background: linear-gradient(90deg, #ffc107 0%, #ff9800 100%);
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px #ffc10722;
}
.samplepack-form button:hover {
  background: linear-gradient(90deg, #ff9800 0%, #ffc107 100%);
  box-shadow: 0 4px 16px #ff980044;
}
#form-message {
  margin-top: 1.2rem;
  font-size: 1.1rem;
  min-height: 1.5em;
  text-align: center;
}
.samplepack-back {
  margin-top: 2rem;
  text-align: center;
}
.samplepack-back a {
  color: #4f46e5;
  text-decoration: underline;
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.18s;
}
.samplepack-back a:hover {
  color: #ff9800;
}
@media (max-width: 600px) {
  .samplepack-card {
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
  }
  .samplepack-card h2 {
    font-size: 1.3rem;
  }
}

/* ===== MENU NAVIGATION TRANSPARENT ET MINIMAL ===== */
.nav-minimal {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1), opacity 0.4s cubic-bezier(.4,0,.2,1);
}
.nav-minimal .nav-logo, .nav-container, .nav-logo {
  display: none !important;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.8rem;
  text-transform: uppercase;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.12em;
  background: none;
  box-shadow: none;
  margin: 0 auto;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  position: relative;
  padding: 0.2rem 0;
  transition: color 0.18s;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: none;
}
.nav-links a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #ff003c 0%, #ff9800 100%);
  border-radius: 2px;
  transition: width 0.22s cubic-bezier(.4,0,.2,1);
  margin-top: 3px;
}
.nav-links a:hover,
.nav-links a:focus {
  color: #ff003c;
}
.nav-links a:hover:after,
.nav-links a:focus:after {
  width: 100%;
}



@media (max-width: 900px) {
  .nav-minimal {
    padding: 0 0.7rem;
  }
  .nav-links {
    gap: 1.2rem;
  }
}
@media (max-width: 700px) {
  .nav-minimal {
    display: none !important;
  }
  .nav-links {
    display: none !important;
  }
  .nav-burger {
    display: none !important;
  }
}
.overlay {
  margin-top: 0 !important;
}
.banner {
  width: 100vw;
  margin-top: 0 !important;
  padding-top: 0 !important;
  position: relative;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
}

.nav-minimal, .nav-minimal.nav-transparent, .nav-minimal * {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}
body, html {
  background: #fff !important;
  color: #222 !important;
}
.overlay {
  background: transparent !important;
}
.nav-minimal.nav-hide {
  transform: translateY(-100%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.nav-minimal {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
body, .overlay {
  overflow-y: scroll;
}
body, .overlay {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}
body::-webkit-scrollbar, .overlay::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.banner, .section, .section2 {
  height: 100vh;
  min-height: 100vh;
}
.nav-minimal {
  top: 24px;
  border-bottom: 1.5px solid rgba(255,255,255,0.08);
  z-index: 1000;
  position: fixed;
  width: 100%;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease-out;
}

.banner-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2.2rem;
}
.go-shop-btn {
  background: linear-gradient(90deg, #ff003c 0%, #ff9800 100%);
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  padding: 0.9rem 2.2rem;
  box-shadow: 0 2px 12px #ff003c33;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.18s;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}
.go-shop-btn:hover {
  background: linear-gradient(90deg, #ff9800 0%, #ff003c 100%);
  box-shadow: 0 4px 24px #ff980044;
  transform: translateY(-2px) scale(1.04);
}

.go-shop-btn.scrolling {
  background: linear-gradient(135deg, #ff5722 0%, #ff9800 100%);
  transform: scale(0.95);
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.6);
  animation: pulse-scroll 2s ease-in-out infinite;
}

@keyframes pulse-scroll {
  0% { transform: scale(1); }
  25% { transform: scale(0.9); }
  50% { transform: scale(0.95); }
  75% { transform: scale(0.9); }
  100% { transform: scale(0.95); }
}
.licence-scroll-btn {
  background: transparent;
  color: #ff9800;
  font-weight: bold;
  font-size: 1.1rem;
  border: 2px solid #ff9800;
  border-radius: 8px;
  padding: 0.9rem 2.2rem;
  box-shadow: 0 2px 12px #ff980033;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s, transform 0.18s;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}
.licence-scroll-btn:hover {
  background: #ff9800;
  color: #fff;
  border-color: #ff9800;
  box-shadow: 0 4px 24px #ff980044;
  transform: translateY(-2px) scale(1.04);
}

/* SECTION LICENCES MODERNE */
.section.licences-section {
  background: #18181b;
  box-shadow: 0 0 24px #ff003c11;
  border-radius: 18px;
  padding: 3rem 0 2rem 0;
  margin: 0 auto 2rem auto;
  width: 80vw;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: none;
  backdrop-filter: none;
}
.section.licences-section .section-title {
  font-size: 2rem;
  font-weight: 900;
  color: #ff003c;
  margin-bottom: 2.5rem;
  letter-spacing: 0.08em;
  text-shadow: 0 0 12px #ff003c44;
  text-transform: uppercase;
  filter: none;
}
.licence-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 900px;
}
.licence-card {
  background: #1a1a1a;
  border-radius: 18px;
  box-shadow: 0 0 24px #ff003c33, 0 2px 8px #000;
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, border 0.2s;
  position: relative;
  border: 2px solid #ff003c44;
  z-index: 1;
  filter: none;
}
.licence-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 0 48px #ff003c99, 0 2px 16px #000;
  border: 2px solid #ff003c;
  z-index: 2;
  filter: none;
}
.licence-card h3 {
  font-size: 1.3rem;
  color: #ff003c;
  margin-bottom: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-shadow: none;
}
.licence-price {
  font-size: 1.2rem;
  color: #fff;
  background: #ff003c;
  border-radius: 12px;
  display: inline-block;
  padding: 0.2em 1em;
  font-weight: 700;
  margin-bottom: 1rem;
  box-shadow: 0 0 8px #ff003c55;
}
.licence-card ul {
  list-style: none;
  margin-bottom: 1.2rem;
  color: #fff;
  font-size: 1rem;
  text-align: left;
  padding-left: 0;
}
.licence-card ul li {
  margin-bottom: 0.4rem;
  padding-left: 1.2em;
  position: relative;
}
.licence-card ul li:before {
  content: '•';
  color: #ff003c;
  position: absolute;
  left: 0;
  font-size: 1.2em;
}
@media (max-width: 900px) {
  .section.licences-section {
    padding: 2rem 0 1rem 0;
    width: 98vw;
    border-radius: 12px;
  }
  .section.licences-section .section-title {
    font-size: 1.2rem;
  }
  .licence-cards {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }
}
@media (max-width: 600px) {
  .section.licences-section {
    padding: 1rem 0 0.5rem 0;
    width: 100vw;
    border-radius: 0;
  }
  .licence-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .section.licences-section .section-title {
    font-size: 1.1rem;
  }
}

.about-licence-marquee {
  width: 100vw;
  overflow: hidden;
  margin: 2.5rem 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  user-select: none;
  z-index: 10;
}
.about-licence-marquee span {
  display: inline-block;
  font-size: 3.2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.18em;
  text-shadow: 0 0 32px #ff003c88, 0 2px 8px #0008;
  white-space: nowrap;
  animation: marquee-left 8s linear infinite;
  padding: 0 2vw;
  text-transform: uppercase;
  transition: color 0.2s, text-shadow 0.2s;
}
.about-licence-marquee:hover span {
  color: #ff9800;
  text-shadow: 0 0 48px #ff980088, 0 2px 8px #0008;
}
@keyframes marquee-left {
  0% { transform: translateX(100vw); }
  100% { transform: translateX(-100vw); }
}

/* SECTION LICENCES ENCORE PLUS JOLIE */
.section.licences-section {
  background: linear-gradient(120deg, #18181b 80%, #2a0a18 100%);
  box-shadow: 0 8px 48px #ff003c22, 0 2px 8px #0001;
  border-radius: 24px;
  padding: 4.5rem 0 3.5rem 0;
  margin: 0 auto 2.5rem auto;
  width: 90vw;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  border: 1.5px solid #ff003c33;
}
.section.licences-section .section-title {
  font-size: 2.1rem;
  font-weight: 900;
  color: #ff003c;
  margin-bottom: 2.5rem;
  letter-spacing: 0.12em;
  text-shadow: 0 0 24px #ff003c44, 0 2px 8px #0008;
  text-transform: uppercase;
  filter: brightness(1.1) drop-shadow(0 0 8px #ff003c44);
}
.licence-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  width: 100%;
  max-width: 1000px;
}
.licence-card {
  background: rgba(26,26,26,0.98);
  border-radius: 18px;
  box-shadow: 0 0 32px #ff003c33, 0 2px 8px #000;
  padding: 2.2rem 1.5rem 1.7rem 1.5rem;
  text-align: center;
  transition: transform 0.22s, box-shadow 0.22s, border 0.22s;
  position: relative;
  border: 2.5px solid #ff003c44;
  z-index: 1;
}
.licence-card:hover {
  transform: translateY(-10px) scale(1.045);
  box-shadow: 0 0 64px #ff003c99, 0 2px 16px #000;
  border: 2.5px solid #ff003c;
  z-index: 2;
}
.licence-card h3 {
  font-size: 1.5rem;
  color: #ff003c;
  margin-bottom: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.licence-price {
  font-size: 1.25rem;
  color: #fff;
  background: #ff003c;
  border-radius: 12px;
  display: inline-block;
  padding: 0.2em 1.1em;
  font-weight: 700;
  margin-bottom: 1.1rem;
  box-shadow: 0 0 8px #ff003c55;
}
.licence-card ul {
  list-style: none;
  margin-bottom: 1.2rem;
  color: #fff;
  font-size: 1.05rem;
  text-align: left;
  padding-left: 0;
}
.licence-card ul li {
  margin-bottom: 0.4rem;
  padding-left: 1.2em;
  position: relative;
}
.licence-card ul li:before {
  content: '•';
  color: #ff003c;
  position: absolute;
  left: 0;
  font-size: 1.2em;
}
@media (max-width: 900px) {
  .about-licence-marquee span {
    font-size: 2.1rem;
  }
  .section.licences-section {
    padding: 2.5rem 0 1.5rem 0;
    width: 98vw;
    border-radius: 18px;
  }
  .section.licences-section .section-title {
    font-size: 1.5rem;
  }
  .licence-cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .about-licence-marquee span {
    font-size: 1.1rem;
  }
  .section.licences-section {
    padding: 1.2rem 0 0.5rem 0;
    width: 100vw;
    border-radius: 0;
  }
  .licence-cards {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .section.licences-section .section-title {
    font-size: 1.1rem;
  }
}

.licence-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 2.5rem;
  width: 100%;
  max-width: 1000px;
  overflow-x: auto;
  padding-bottom: 1.5rem;
  scrollbar-width: none;
}
.licence-cards::-webkit-scrollbar {
  display: none;
}
.licence-card {
  min-width: 300px;
  max-width: 340px;
  flex: 0 0 320px;
  background: rgba(30,30,40,0.72);
  border-radius: 28px;
  box-shadow: 0 4px 32px #0004, 0 1.5px 8px #ff003c22;
  padding: 2.2rem 1.5rem 1.7rem 1.5rem;
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s, border 0.18s, background 0.18s;
  position: relative;
  border: 1.5px solid rgba(255,255,255,0.13);
  z-index: 1;
  backdrop-filter: blur(6px);
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  margin-bottom: 0;
}
.licence-card:hover {
  transform: translateY(-8px) scale(1.035);
  box-shadow: 0 8px 48px #ff003c55, 0 2px 16px #000;
  border: 1.5px solid #ff003c;
  background: rgba(40,10,30,0.82);
  z-index: 2;
}
.licence-card h3 {
  font-size: 1.25rem;
  color: #ff003c;
  margin-bottom: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-shadow: none;
  text-transform: uppercase;
}
.licence-price {
  font-size: 1.1rem;
  color: #fff;
  background: #ff003c;
  border-radius: 10px;
  display: inline-block;
  padding: 0.18em 1em;
  font-weight: 600;
  margin-bottom: 1rem;
  box-shadow: 0 0 6px #ff003c33;
  letter-spacing: 0.04em;
}
.licence-card ul {
  list-style: none;
  margin-bottom: 1.2rem;
  color: #fff;
  font-size: 0.98rem;
  text-align: left;
  padding-left: 0;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.licence-card ul li {
  margin-bottom: 0.4rem;
  padding-left: 1.2em;
  position: relative;
}
.licence-card ul li:before {
  content: '•';
  color: #ff003c;
  position: absolute;
  left: 0;
  font-size: 1.1em;
}
@media (max-width: 900px) {
  .licence-cards {
    gap: 1.2rem;
    max-width: 98vw;
  }
  .licence-card {
    min-width: 260px;
    flex: 0 0 260px;
    padding: 1.5rem 0.7rem 1.2rem 0.7rem;
  }
}
@media (max-width: 600px) {
  .licence-cards {
    gap: 0.7rem;
    max-width: 100vw;
    padding-bottom: 0.7rem;
  }
  .licence-card {
    min-width: 210px;
    flex: 0 0 210px;
    padding: 1rem 0.3rem 0.8rem 0.3rem;
  }
}

.section.licences-section {
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  min-height: 100vh;
  margin: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
}
body, html {
  background: #fff !important;
  color: #222 !important;
}
.section.licences-section {
  background: #fff;
  box-shadow: 0 2px 24px #0001;
  border-radius: 18px;
  padding: 3rem 0 2rem 0;
  margin: 0 auto 2rem auto;
  width: 90vw;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #ececec;
  backdrop-filter: none;
}
.section.licences-section .section-title {
  font-size: 2rem;
  font-weight: 900;
  color: #222;
  margin-bottom: 2.2rem;
  letter-spacing: 0.08em;
  text-shadow: none;
  text-transform: uppercase;
  filter: none;
}
.licence-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  width: 100%;
  max-width: 1100px;
  overflow-x: visible;
  padding-bottom: 0;
}
.licence-card {
  min-width: 0;
  max-width: 100%;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px #0001;
  padding: 1.5rem 1rem 1.2rem 1rem;
  text-align: center;
  transition: transform 0.16s, box-shadow 0.16s, border 0.16s, background 0.16s;
  position: relative;
  border: 1px solid #ececec;
  z-index: 1;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  margin-bottom: 0;
  color: #222;
}
.licence-card:hover {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 8px 32px #0002;
  border: 1px solid #ff003c;
  background: #faf7f7;
  z-index: 2;
}
.licence-card h3 {
  font-size: 1.1rem;
  color: #ff003c;
  margin-bottom: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-shadow: none;
  text-transform: uppercase;
}
.licence-price {
  font-size: 1rem;
  color: #fff;
  background: #ff003c;
  border-radius: 8px;
  display: inline-block;
  padding: 0.15em 0.8em;
  font-weight: 600;
  margin-bottom: 0.8rem;
  box-shadow: 0 0 4px #ff003c22;
  letter-spacing: 0.04em;
}
.licence-card ul {
  list-style: none;
  margin-bottom: 1rem;
  color: #222;
  font-size: 0.97rem;
  text-align: left;
  padding-left: 0;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.licence-card ul li {
  margin-bottom: 0.3rem;
  padding-left: 1.1em;
  position: relative;
}
.licence-card ul li:before {
  content: '•';
  color: #ff003c;
  position: absolute;
  left: 0;
  font-size: 1em;
}
/* Header blanc et délimitation */
.nav-minimal {
  background: #fff !important;
  color: #fff !important;
  border-bottom: 1.5px solid #ececec;
}
.nav-links a {
  color: #fff !important;
}
.nav-links a:hover,
.nav-links a:focus {
  color: #ff003c !important;
}
@media (max-width: 1100px) {
  .licence-cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .licence-cards {
    grid-template-columns: 1fr;
  }
  .section.licences-section {
    width: 100vw;
    border-radius: 0;
    padding: 1.2rem 0 0.5rem 0;
  }
}

.licence-support-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 24px #0002;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #222;
  cursor: pointer;
  z-index: 2000;
  transition: box-shadow 0.18s, background 0.18s, color 0.18s;
}
.licence-support-btn:hover {
  background: #ff003c;
  color: #fff;
  box-shadow: 0 8px 32px #ff003c33;
}
.licence-support-btn i {
  pointer-events: none;
}
.licence-modal {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(20,20,20,0.45);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}
.licence-modal.open {
  display: flex;
}
.licence-modal-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 48px #0003;
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 900px;
  width: 95vw;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.licence-modal-title {
  font-size: 1.7rem;
  font-weight: 900;
  color: #ff003c;
  margin-bottom: 2rem;
  letter-spacing: 0.08em;
  text-align: center;
}
.licence-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #222;
  cursor: pointer;
  z-index: 10;
  transition: color 0.18s;
}
.licence-modal-close:hover {
  color: #ff003c;
}
.licence-modal .licence-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 800px;
}
.licence-modal .licence-card {
  background: #faf7f7;
  border-radius: 14px;
  box-shadow: 0 2px 16px #0001;
  padding: 1.5rem 1rem 1.2rem 1rem;
  text-align: center;
  border: 1px solid #ececec;
  color: #222;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  margin-bottom: 0;
  min-width: 0;
  max-width: 100%;
  transition: box-shadow 0.16s, border 0.16s, background 0.16s;
}
.licence-modal .licence-card:hover {
  box-shadow: 0 8px 32px #ff003c22;
  border: 1px solid #ff003c;
  background: #fff;
}
.licence-modal .licence-card h3 {
  font-size: 1.1rem;
  color: #ff003c;
  margin-bottom: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.licence-modal .licence-price {
  font-size: 1rem;
  color: #fff;
  background: #ff003c;
  border-radius: 8px;
  display: inline-block;
  padding: 0.15em 0.8em;
  font-weight: 600;
  margin-bottom: 0.8rem;
  box-shadow: 0 0 4px #ff003c22;
  letter-spacing: 0.04em;
}
.licence-modal .licence-card ul {
  list-style: none;
  margin-bottom: 0.7rem;
  color: #222;
  font-size: 0.97rem;
  text-align: left;
  padding-left: 0;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.licence-modal .licence-card ul li {
  margin-bottom: 0.3rem;
  padding-left: 1.1em;
  position: relative;
}
.licence-modal .licence-card ul li:before {
  content: '•';
  color: #ff003c;
  position: absolute;
  left: 0;
  font-size: 1em;
}
.licence-desc {
  font-size: 0.93rem;
  color: #666;
  margin-top: 0.7rem;
  text-align: center;
  font-style: italic;
}
@media (max-width: 900px) {
  .licence-modal .licence-cards {
    grid-template-columns: 1fr;
  }
  .licence-modal-content {
    padding: 1.2rem 0.3rem 1rem 0.3rem;
  }
}
@media (max-width: 600px) {
  .licence-support-btn {
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
  .licence-modal-content {
    padding: 0.5rem 0.1rem 0.5rem 0.1rem;
    border-radius: 0;
  }
}

/* Ajout effet flamme sur le texte for superstar! */
.flaming-text {
  color: #ff2222;
  font-weight: bold;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 8px #ff2222, 0 0 16px #ff6600;
  animation: flaming-glow 1.2s infinite alternate;
}
.flaming-text::before, .flaming-text::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  height: 12px;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(255,200,0,0.7) 0%, rgba(255,0,0,0.2) 80%, transparent 100%);
  opacity: 0.7;
  z-index: 1;
  animation: flame-flicker 0.7s infinite alternate;
}
.flaming-text::after {
  top: 105%;
  left: 10%;
  right: 10%;
  height: 8px;
  background: radial-gradient(ellipse at center, rgba(255,255,0,0.5) 0%, rgba(255,0,0,0.1) 80%, transparent 100%);
  opacity: 0.5;
  animation-delay: 0.3s;
}
@keyframes flame-flicker {
  0% { transform: scaleY(1) translateY(0); opacity: 0.7; }
  40% { transform: scaleY(1.2) translateY(-2px) scaleX(1.1); opacity: 1; }
  60% { transform: scaleY(0.9) translateY(1px) scaleX(0.95); opacity: 0.6; }
  100% { transform: scaleY(1.1) translateY(-1px) scaleX(1.05); opacity: 0.8; }
}
@keyframes flaming-glow {
  0% { text-shadow: 0 0 8px #ff2222, 0 0 16px #ff6600; }
  100% { text-shadow: 0 0 16px #ff6600, 0 0 32px #ff2222; }
}

/* Ancien style plus simple pour la section sample pack */
.samplepack-section {
  background: #181818;
  padding: 40px 0 30px 0;
  width: 100%;
  min-height: unset;
  display: block;
}
.samplepack-card {
  background: #232323;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  padding: 32px 18px 18px 18px;
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
  display: block;
  gap: 0;
}
.samplepack-card h2 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.samplepack-card p {
  color: #e0e0e0;
  font-size: 1rem;
  margin-bottom: 0;
}
.samplepack-card form {
  width: 100%;
  margin-top: 10px;
}
.samplepack-input-group {
  display: flex;
  align-items: center;
  background: #222;
  border-radius: 8px;
  margin-bottom: 12px;
}
.samplepack-input-group i {
  color: #ff2222;
  margin-right: 8px;
}
.samplepack-input-group input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1rem;
  flex: 1;
}
.samplepack-card button[type="submit"] {
  background: linear-gradient(90deg, #ff2222 0%, #ff6600 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 0;
  width: 100%;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255,34,34,0.15);
  transition: background 0.2s, transform 0.2s;
}
.samplepack-card button[type="submit"]:hover {
  background: linear-gradient(90deg, #ff6600 0%, #ff2222 100%);
  transform: translateY(-2px) scale(1.03);
}
.samplepack-back {
  margin-top: 12px;
}
.samplepack-back a {
  color: #ff2222;
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.2s;
}
.samplepack-back a:hover {
  color: #fff;
}
@media (max-width: 600px) {
  .samplepack-section {
    padding: 0;
    min-height: 100vh;
  }
  .samplepack-card {
    padding: 18px 4px 10px 4px;
    border-radius: 10px;
    max-width: 98vw;
  }
}

/* Scroll snap vertical sur le site */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  min-height: 100vh;
}
main {
  scroll-snap-type: y mandatory;
}
.section, .section2, .samplepack-section {
  scroll-snap-align: start;
}
/* Section weekly en plein écran et centrée */
.samplepack-section {
  min-height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #181818;
  padding: 0;
  margin: 0;
}
.samplepack-card {
  background: #232323;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  padding: 32px 18px 18px 18px;
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
  display: block;
  gap: 0;
}
@media (max-width: 600px) {
  .samplepack-section {
    padding: 0;
    min-height: 100vh;
  }
  .samplepack-card {
    padding: 18px 4px 10px 4px;
    border-radius: 10px;
    max-width: 98vw;
  }
}

/* Boutons principaux harmonisés et moins épais */
.go-shop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(90deg, #ff2222 0%, #ff6600 100%);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 7px 22px;
  font-size: 1rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255,34,34,0.10);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
  outline: none;
  text-decoration: none;
  margin-right: 10px;
}
.go-shop-btn:last-child { margin-right: 0; }
.go-shop-btn i {
  font-size: 1.1em;
  margin-right: 4px;
  color: #fff;
  transition: color 0.18s;
}
.go-shop-btn:hover, .go-shop-btn:focus {
  background: linear-gradient(90deg, #ff6600 0%, #ff2222 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,34,34,0.13);
  transform: translateY(-2px) scale(1.03);
}
.go-shop-btn:hover i, .go-shop-btn:focus i {
  color: #fff;
}

/* Effet ripple stylé sur les boutons go-shop-btn */
.go-shop-btn {
  position: relative;
  overflow: hidden;
}
.go-shop-btn .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-animate 0.5s linear;
  background: rgba(255,255,255,0.35);
  pointer-events: none;
  z-index: 2;
}
@keyframes ripple-animate {
  to {
    transform: scale(3.5);
    opacity: 0;
  }
}

/* Nettoyage ancien bouton sample-btn-discreet */
.sample-btn-discreet {
  background: rgba(255,255,255,0.08);
  color: #ff2222;
  border: 1px solid #ff2222;
  border-radius: 6px;
  padding: 7px 22px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 18px;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.sample-btn-discreet:hover {
  background: #ff2222;
  color: #fff;
  border-color: #ff2222;
}

/* Modale pour le formulaire sample */
.sample-modal {
  display: none;
  position: fixed !important;
  z-index: 9999 !important;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.7) !important;
  align-items: center;
  justify-content: center;
  overflow: visible !important;
}
.sample-modal.open {
  display: flex !important;
}
.sample-modal-content {
  position: relative;
  z-index: 10000;
}
@keyframes modal-pop {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.sample-modal-close {
  position: absolute;
  top: 12px; right: 16px;
  background: none;
  border: none;
  color: #ff2222;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.2s;
}
.sample-modal-close:hover {
  color: #fff;
}
.sample-success {
  margin-top: 18px;
  color: #1ecb5a;
  background: #eaffea;
  border-radius: 8px;
  padding: 10px 8px;
  font-size: 1.05rem;
  font-weight: 600;
  display: block;
}

/* Centrage horizontal des boutons dans la bannière */
.banner-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

/* Centrage du bouton sample-btn-discreet si utilisé */
.sample-btn-discreet {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.weekly-link {
  color: #ff2222;
  font-weight: 600;
  font-size: 1.02em;

  display: inline-flex;
  align-items: center;
  cursor: pointer;
  text-shadow: 0 0 4px #ff2222, 0 0 8px #ff6600;
  transition: color 0.18s, text-shadow 0.18s;
  padding-bottom: 2px;
  gap: 6px;
}
.weekly-arrow {
  color: #ff6600;
  font-size: 1.15em;
  font-weight: 700;
  margin: 0 2px;
  vertical-align: middle;
  user-select: none;
  text-shadow: 0 0 6px #ff6600;
}
.weekly-link:hover {
  color: #ff6600;
  text-shadow: 0 0 8px #ff2222, 0 0 16px #ff6600;
}

html {
  overflow-y: scroll;
}

#weekly-sample-section {
  background: #000;
  min-height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  transition: opacity 0.4s;
  opacity: 1;
}
#weekly-sample-section.hide {
  opacity: 0;
  pointer-events: none;
}
#weekly-sample-section .sample-modal-content {
  background: #181818;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  padding: 28px 18px 18px 18px;
  max-width: 320px;
  width: 95vw;
  text-align: center;
  position: relative;
  z-index: 10000;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.4s cubic-bezier(.4,2,.6,1), transform 0.4s cubic-bezier(.4,2,.6,1);
}
#weekly-sample-section.show-form .sample-modal-content {
  opacity: 1;
  transform: scale(1);
}
#weekly-sample-section input[type="email"] {
  color: #fff !important;
  background: transparent;
  border: none;
  outline: none;
}
#weekly-sample-section input[type="email"]::placeholder {
  color: #ccc;
  opacity: 1;
}
#weekly-sample-section input[type="email"]:-webkit-autofill {
  -webkit-text-fill-color: #fff !important;
  box-shadow: 0 0 0 1000px #181818 inset !important;
  background-color: #181818 !important;
}
#weekly-sample-section .sample-modal-content h2,
#weekly-sample-section .sample-modal-content p {
  color: #fff !important;
}

.nav-minimal {
  background: #181818;
  transition: transform 0.4s cubic-bezier(.4,2,.6,1), opacity 0.3s;
  will-change: transform, opacity;
}
.nav-minimal.nav-hide {
  transform: translateY(-100%) !important;
  opacity: 0 !important;
  pointer-events: none;
}
