:root {
  --bg: #050505;
  --surface: #121212;
  --surface2: #181818;
  --gold: #d8bd3d;
  --gold2: #f4d86b;
  --text: #fff;
  --muted: #cfcfcf;
  --line: rgba(216, 189, 61, 0.62);
  --shadow: 0 0 26px rgba(216, 189, 61, 0.28);
  --radius: 16px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, #111 0, #050505 36%, #020202 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 20px;
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(10px);
}

.nav-page {
  position: relative;
}

.brand img {
  width: 86px;
  height: 86px;
  object-fit: cover;
  border-radius: 14px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  font-weight: 700;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--gold);
  border-radius: 10px;
  font-size: 24px;
}

.hero {
  min-height: 86vh;
  display: flex;
  flex-direction: column;
}

.hero-content {
  width: min(900px, 92%);
  margin: 22px auto 36px;
  text-align: center;
}

.hero-logo {
  width: min(360px, 70vw);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.eyebrow {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero h1,
.legal h1 {
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 1;
  margin: 18px 0;
  background: linear-gradient(90deg, var(--gold), #fff0a8, var(--gold));
  -webkit-background-clip: text;
  color: transparent;
}

.hero p {
  max-width: 680px;
  margin: 0 auto 20px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 24px;
  border: 0;
  border-radius: 8px;
  background: var(--gold);
  color: #050505;
  font-weight: 900;
  cursor: pointer;
  transition: 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--line);
}

.btn-small {
  min-height: 38px;
  padding: 8px 16px;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 42px 20px;
}

.section.compact {
  padding-top: 12px;
  padding-bottom: 28px;
}

h2 {
  margin: 0 0 30px;
  text-align: center;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: 3px;
  color: var(--gold);
  text-shadow: 0 0 18px rgba(216, 189, 61, 0.45);
}

.cards {
  display: grid;
  gap: 20px;
}

.three {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  position: relative;
  background: linear-gradient(180deg, var(--surface2), #0d0d0d);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 20px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.service-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.service-card:hover .icon img {
  transform: scale(1.08);
}

.card h3 {
  margin: 0;
  color: var(--gold);
  font-size: 1.45rem;
}

.card p {
  color: #e4e4e4;
  margin: 6px 0 14px;
}

.card .btn {
  width: 100%;
  max-width: 330px;
}

/* ==========================
   BENEFICES PREMIUM
========================== */

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.benefit {
  position: relative;
  min-height: 250px;
  padding: 34px 24px;
  border-radius: 18px;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;

  background: linear-gradient(180deg, #151515 0%, #060606 100%);
  border: 2px solid #d8bd3d;
  color: #fff;
  text-align: center;

  box-shadow:
    0 0 16px rgba(216, 189, 61, 0.25),
    inset 0 0 24px rgba(216, 189, 61, 0.08);

  transition: 0.35s ease;
}

.benefit::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(
    120deg,
    transparent 0%,
    transparent 35%,
    rgba(255, 235, 150, 0.95) 50%,
    transparent 65%,
    transparent 100%
  );
  opacity: 0;
  transform: translateX(-120%);
  transition: 0.6s ease;
  pointer-events: none;
}

.benefit::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  background: #d8bd3d;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(216, 189, 61, 0.8);
}

.benefit span {
  width: 68px;
  height: 68px;
  border: 2px solid #d8bd3d;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #d8bd3d;
  font-size: 38px;
  line-height: 1;

  box-shadow:
    0 0 16px rgba(216, 189, 61, 0.35),
    inset 0 0 14px rgba(216, 189, 61, 0.12);
}

.benefit strong {
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.25;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.benefit strong em {
  display: block;
  font-style: normal;
  color: #d8bd3d;
}

.benefit:hover {
  transform: translateY(-8px);
  border-color: #f4d86b;

  box-shadow:
    0 0 28px rgba(216, 189, 61, 0.55),
    0 0 60px rgba(216, 189, 61, 0.22),
    inset 0 0 28px rgba(216, 189, 61, 0.12);
}

.benefit:hover::before {
  opacity: 1;
  animation: benefitShine 1.2s ease forwards;
}

@keyframes benefitShine {
  from {
    transform: translateX(-120%);
  }

  to {
    transform: translateX(120%);
  }
}

.benefit:nth-child(4) {
  grid-column: 2;
}

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

  .benefit:nth-child(4) {
    grid-column: auto;
  }

  .benefit {
    min-height: 210px;
  }
}

.reviews {
  padding-top: 38px;
}

.review-list {
  display: grid;
  gap: 14px;
  max-width: 520px;
  margin: 0 auto;
}

.review {
  background: #fff;
  color: #222;
  border: 1px solid var(--gold);
  border-radius: 10px;
  padding: 12px 14px;
  box-shadow: var(--shadow);
}

.review span {
  display: block;
  color: #555;
  font-size: 0.82rem;
}

.review p {
  margin: 8px 0 0;
}

.visual-services {
  padding-top: 34px;
}

.portfolio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.work {
    height: 220px;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.12);
    cursor: pointer;
}

.work img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.work:hover img {
    transform: scale(1.08);
}

/* ==========================
   SECTION PACKS PREMIUM
========================== */

.packs-section {
    max-width: 1450px;
}

.packs-header {
    text-align: center;
    margin-bottom: 35px;
}

.packs-header span {
    color: var(--gold);
    letter-spacing: 6px;
    font-weight: 700;
    font-size: 14px;
}

.packs-header h2 {
    margin: 10px 0;
    font-size: clamp(3rem, 7vw, 6rem);
    color: #fff;
}

.packs-header h2 strong {
    color: var(--gold);
}

.packs-header p {
    color: #ddd;
    font-size: 1.2rem;
}

.packs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.pack-card {
  position: relative;
  overflow: hidden;
  padding: 34px 26px 28px;
  border-radius: 18px;
  border: 1px solid rgba(216, 189, 61, 0.55);
  background: linear-gradient(180deg, #151515, #050505);
  box-shadow: 0 0 22px rgba(216, 189, 61, 0.14);
  text-align: center;
  transition: 0.35s ease;

  display: flex;
  flex-direction: column;
}

.pack-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold2);
    box-shadow: 0 0 35px rgba(216, 189, 61, 0.45);
}

.pack-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 22px;
    border: 2px solid rgba(216, 189, 61, 0.75);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: radial-gradient(circle, #181818, #050505);
    box-shadow: 0 0 28px rgba(216, 189, 61, 0.25);
    overflow: hidden;
}

.pack-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

.pack-kicker {
    color: var(--gold);
    letter-spacing: 6px;
    font-size: 14px;
}

.pack-card h3 {
    margin: 8px 0;
    font-size: 2rem;
    color: #fff;
}

.tracks {
    color: var(--gold);
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 4px;
}

.pack-card ul {
  list-style: none;
  padding: 22px 0;
  margin: 22px 0;
  border-top: 1px solid rgba(216, 189, 61, 0.25);
  border-bottom: 1px solid rgba(216, 189, 61, 0.25);
  text-align: left;

  flex-grow: 1;
}

.pack-card li {
    margin-bottom: 16px;
    color: #fff;
}

.pack-card li strong {
    display: block;
    font-size: 15px;
}

.pack-card small {
    display: block;
    color: #bbb;
    margin-top: 4px;
}

.price {
    color: var(--gold);
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 18px;
    text-shadow: 0 0 18px rgba(216, 189, 61, 0.35);
}

.price span {
    display: block;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 4px;
}

.pack-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 13px 18px;
  border: 1px solid var(--gold);
  border-radius: 10px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  transition: 0.3s;

  margin-top: auto;
}

.pack-btn:hover {
    background: var(--gold);
    color: #050505;
    box-shadow: 0 0 25px rgba(216, 189, 61, 0.45);
}

.popular {
    border-color: var(--gold2);
    box-shadow: 0 0 38px rgba(216, 189, 61, 0.35);
}

.ribbon {
    position: absolute;
    top: 18px;
    left: -35px;
    width: 190px;
    padding: 8px;
    transform: rotate(-18deg);
    background: var(--gold);
    color: #050505;
    font-weight: 900;
    font-size: 13px;
}

@media (max-width: 1100px) {
    .packs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .packs-grid {
        grid-template-columns: 1fr;
    }

    .pack-card {
        padding: 30px 22px;
    }
}

.footer {
  max-width: var(--max);
  margin: 50px auto 28px;
  padding: 34px 20px 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 260px;
  gap: 24px;
  align-items: center;
  border-top: 2px solid var(--gold);
  background: #080808;
  box-shadow: var(--shadow);
}

.footer h3 {
  color: var(--gold);
  font-size: 1.6rem;
  margin: 0 0 6px;
}

.footer p,
.footer small {
  color: #aaa;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer small {
  grid-column: 1 / -1;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 16px;
}

.whatsapp-btn,
.whatsapp-float {
  background: #31e86b;
  color: #fff;
}

.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 20;
  box-shadow: 0 0 0 10px rgba(49, 232, 107, 0.18);
  transition: all 0.35s ease;
}

.whatsapp-float img {
  width: 34px;
  height: 34px;
  display: block;
  transition: transform 0.35s ease;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.12);
  box-shadow:
    0 0 20px rgba(49, 232, 107, 0.55),
    0 0 45px rgba(49, 232, 107, 0.35),
    0 10px 25px rgba(0, 0, 0, 0.45);
}

.whatsapp-float:hover img {
  transform: rotate(-10deg);
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(49, 232, 107, 0.45);
  animation: whatsPulse 2s infinite;
}

@keyframes whatsPulse {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.legal {
  max-width: 900px;
}

.legal h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.legal h2 {
  text-align: left;
  font-size: 1.5rem;
  margin: 28px 0 8px;
  letter-spacing: 0;
}

.muted {
  color: var(--muted);
}

@media (max-width: 860px) {
  .nav {
    padding: 10px 16px;
  }

  .nav-toggle {
    display: block;
    padding: 6px 10px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    background: #090909;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px;
  }

  .nav-links.open {
    display: flex;
  }

  .brand img {
    width: 66px;
    height: 66px;
  }

  .three,
  .benefits,
  .portfolio,
  .footer {
    grid-template-columns: 1fr;
  }

  .benefit:nth-child(4) {
    grid-column: auto;
  }

  .section {
    padding: 34px 16px;
  }

  .footer {
    margin: 30px 16px;
  }

  .pack.featured {
    transform: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    margin-top: 10px;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 520px) {
  h2 {
    letter-spacing: 1px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .card {
    padding: 28px 16px;
  }

  .section {
    padding-top: 28px;
    padding-bottom: 28px;
  }
}

/* ==========================
   POPUP AURA RECORDS PREMIUM
========================== */

#phoneGate {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(14px);
}

.phoneBox {
  width: 420px;
  max-width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  padding: 28px;
  text-align: center;
  border-radius: 22px;
  border: 1px solid rgba(216, 189, 61, 0.45);
  background: linear-gradient(180deg, rgba(22,22,22,.96), rgba(6,6,6,.96));
  box-shadow: 0 0 40px rgba(216, 189, 61, 0.22);
}

.gateLogo {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 14px;
}

.phoneBox h2 {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 30px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.gateText {
  margin: 0 0 22px;
  color: #d7d7d7;
  font-size: 14px;
  line-height: 1.55;
}

.inputGroup {
  text-align: left;
  margin-bottom: 13px;
}

.inputGroup label {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
}

.inputGroup input {
  width: 100%;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid rgba(216,189,61,.5);
  background: #030303;
  color: #fff;
  font-size: 15px;
}

.inputGroup input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 18px rgba(216,189,61,.28);
}

#enterSite {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(90deg, #b99622, var(--gold), #f6dc78);
  color: #050505;
  font-weight: 900;
  cursor: pointer;
}

.gateSmall {
  display: block;
  margin-top: 15px;
  color: #9b9b9b;
  font-size: 11.5px;
  line-height: 1.45;
}

.hero-slogan{
    margin:20px 0 30px;
    text-align:center;
    font-size:clamp(1.4rem,2.5vw,2rem);
    font-weight:600;
    color:var(--gold2);
    letter-spacing:2px;
    text-transform:uppercase;
    opacity:.95;
}


 /* ==========================
   Avis Google
========================== */

.review strong{
    display:block;
    font-size:18px;
    margin-bottom:6px;
}

.review-stars{
    font-size:18px;
    margin-bottom:6px;
    line-height:1;
}

.review-source{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:6px;
    margin-bottom:12px;

    color:#777;
    font-size:13px;
    font-weight:600;
}

.review-source img{
    width:17px;
    height:17px;
    display:block;
}

/* Liens du menu */

nav a,
.footer-links a {

    position: relative;

    color: #fff;

    text-decoration: none;

    transition: .3s ease;

    cursor: pointer;

}

/* Effet au survol */

nav a:hover,
.footer-links a:hover {

    color: var(--gold);

    text-shadow: 0 0 10px rgba(216,189,61,.7);

    transform: translateY(-2px);

}

/* Trait animé */

nav a::after,
.footer-links a::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:-6px;

    width:0;

    height:2px;

    background:var(--gold);

    transform:translateX(-50%);

    transition:.35s;

    box-shadow:0 0 10px rgba(216,189,61,.7);

}

nav a:hover::after,
.footer-links a:hover::after{

    width:100%;

}

/* ==========================
   PACKS PROJET PREMIUM
========================== */

.packs-section {
  max-width: 1200px;
}

.packs-header {
  text-align: center;
  margin-bottom: 34px;
}

.packs-header .eyebrow {
  color: #d8bd3d;
  font-size: 14px;
  letter-spacing: 4px;
}

.packs-header h2 {
  margin: 12px 0 8px;
  font-size: clamp(3rem, 7vw, 6rem);
  text-transform: uppercase;
}

.packs-header p {
  color: #ddd;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.project-packs {
  display: grid;
  gap: 18px;
}

.project-pack {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 0.9fr;
  gap: 24px;
  align-items: center;
  padding: 26px 28px;
  border: 1px solid rgba(216, 189, 61, 0.55);
  border-radius: 18px;
  background: linear-gradient(180deg, #111, #050505);
  box-shadow: 0 0 20px rgba(216, 189, 61, 0.14);
  overflow: hidden;
  transition: 0.35s ease;
}

.project-pack:hover {
  transform: translateY(-5px);
  border-color: #f4d86b;
  box-shadow:
    0 0 28px rgba(216, 189, 61, 0.45),
    inset 0 0 24px rgba(216, 189, 61, 0.08);
}

.project-pack::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 230, 120, 0.12), transparent);
  transform: translateX(-120%);
  transition: 0.7s ease;
}

.project-pack:hover::before {
  transform: translateX(120%);
}

.pack-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.pack-icon {
  width: 78px;
  height: 78px;
  border: 1px solid #d8bd3d;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 36px;
  box-shadow: 0 0 18px rgba(216, 189, 61, 0.25);
}

.pack-label {
  color: #ddd;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.pack-left h3 {
  margin: 4px 0;
  color: #fff;
  font-size: 2rem;
  text-transform: uppercase;
}

.pack-left strong {
  color: #d8bd3d;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.pack-details {
  border-left: 1px solid rgba(216, 189, 61, 0.3);
  border-right: 1px solid rgba(216, 189, 61, 0.3);
  padding: 0 24px;
}

.pack-details p {
  margin: 9px 0;
  color: #e7e7e7;
  font-weight: 600;
}

.pack-price {
  text-align: center;
}

.pack-price span {
  display: block;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.pack-price strong {
  display: block;
  color: #f4d86b;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 0 0 18px rgba(216, 189, 61, 0.35);
}

.featured-pack {
  border-color: rgba(150, 210, 255, 0.75);
  box-shadow: 0 0 24px rgba(90, 170, 255, 0.22);
}

.featured-pack .pack-icon {
  border-color: rgba(150, 210, 255, 0.75);
}

.featured-pack .pack-left strong,
.featured-pack .pack-price strong {
  color: #cfe8ff;
}

.pack-best{

    position:absolute;

    top:18px;

    right:18px;

    padding:8px 14px;

    background:#d8bd3d;

    color:#050505;

    border-radius:30px;

    font-size:12px;

    font-weight:900;

    letter-spacing:1px;

    box-shadow:0 0 18px rgba(216,189,61,.35);

}

.album-pack {
  grid-template-columns: 1.1fr 1.4fr 0.8fr;
}

.packs-footer-note {

    margin-top: 30px;

    padding: 35px;

    border: 1px solid rgba(216,189,61,.45);

    border-radius: 16px;

    background: #080808;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 22px;

    text-align: center;

}

.packs-footer-note p {
  margin: 0;
  color: #fff;
  font-size: 1.25rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .project-pack,
  .album-pack {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pack-left {
    justify-content: center;
  }

  .pack-details {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(216, 189, 61, 0.25);
    border-bottom: 1px solid rgba(216, 189, 61, 0.25);
    padding: 18px 0;
  }

  .packs-footer-note {
    flex-direction: column;
    text-align: center;
  }
}

.artist-section {
    max-width: 1450px;
}

.artist-subtitle {
    text-align: center;
    color: #cfcfcf;
    margin: -12px auto 34px;
    font-size: 1.1rem;
}

.artist-carousel {
    position: relative;
}

.artist-carousel {
    position: relative;
    overflow: hidden;
}

.artist-track {
    display: flex;
    gap: 24px;
    width: max-content;
    padding: 10px 0 24px;
}

.infinite-scroll {
    animation: artistScroll 35s linear infinite;
}

.artist-carousel:hover .infinite-scroll {
    animation-play-state: paused;
}

@keyframes artistScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.artist-card {
    position: relative;
    flex: 0 0 260px;
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(216, 189, 61, 0.35);
    background: #080808;
    box-shadow: 0 0 22px rgba(216, 189, 61, 0.12);
    transition: 0.35s ease;
}

.artist-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 0 32px rgba(216, 189, 61, 0.35);
}

.artist-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.08) saturate(0.85);
    transition: 0.4s ease;
}

.artist-card:hover img {
    transform: scale(1.06);
}

.artist-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.9) 0%,
        rgba(0,0,0,0.35) 42%,
        transparent 70%
    );
}

.artist-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 28px;
    z-index: 2;
    text-align: center;
}

.artist-info h3 {
    margin: 0 0 6px;
    color: var(--gold);
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.artist-info span {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.85rem;
}


@media (max-width: 700px) {
    .artist-card {
        flex-basis: 230px;
        height: 360px;
    }
