@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.site {
  font-family: 'DM Sans', sans-serif;
  background: #080a0f;
  color: #e8e4d9;
  width: 100%;
}

.color-bar {
  height: 5px;
  background: linear-gradient(90deg, #5865F2, #e84343, #e97d24, #23a55a, #5865F2);
  background-size: 200%;
  animation: colorshift 4s linear infinite;
}

@keyframes colorshift {
  from {
    background-position: 0%;
  }
  to {
    background-position: 200%;
  }
}

.hero {
  padding: 3rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #06070E;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 101, 242, 0.10) 0%, transparent 70%);
  top: -250px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #51A3A3;
  margin-bottom: 10px;
  position: relative;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(50px, 9vw, 86px);
  letter-spacing: 2px;
  line-height: 1;
  color: #F7EDE2;
  margin-bottom: 6px;
  text-align: center;
  position: relative;
}

.hero-sub {
  font-size: 14px;
  color: #6a6355;
  margin-bottom: 2rem;
  font-weight: 300;
  text-align: center;
  position: relative;
}

.discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #5865F2;
  color: #fff;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  transition: transform .18s, background .18s, box-shadow .18s;
  cursor: pointer;
  border: none;
  position: relative;
  text-decoration: none;
}

.discord-btn:hover {
  background: #4752c4;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(88, 101, 242, .35);
}

.discord-icon {
  width: 24px;
  height: 24px;
  fill: white;
  flex-shrink: 0;
}

.members {
  margin-top: 1.2rem;
  font-size: 16px;
  color: #3a3d50;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.secret{
    margin: -4px;
}
.secret:hover {  
    transition: transform .6s cubic-bezier(.22, 1, .36, 1), color .3s;
}

.dot-g {
  width: 7px;
  height: 7px;
  background: #23a55a;
  border-radius: 50%;
}

.sec-head {
  padding: 2.5rem 2rem 1.2rem;
  text-align: center;
}

.sec-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #CB8925;
  margin-bottom: 8px;
}

.sec-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 5vw, 48px);
  color: #f0ece0;
  letter-spacing: 1px;
}

/* ── CARD ── */
.card {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid #0f1218;
  cursor: pointer;
}

/* IMAGE WIDTH = 260px — numéro aligné avec cette largeur */
.IMG_W {
  --img-w: 260px;
}

/* BARRE TITRE */
.card-bar {
  height: 160px;
  display: flex;
  align-items: center;
  padding: 0 17% 20px 20px;
  gap: 0;
  position: relative;
  z-index: 2;
  background: #080a0f;
  transition: background .3s;
  flex-shrink: 0;
}

.card:hover .card-bar {
  background: #0c0e16;
}

/* Numéro — largeur = img-w pour s'aligner avec l'image en dessous */
.card-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  color: #1e2232;
  width: 25%;
  flex-shrink: 0;
  text-align: right;
  padding-right: 1.4rem;
  transition: color .3s;
  letter-spacing: 1px;
}

/* Titre + genre centré dans le reste de l'espace */
.card-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
}

.card-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 38px);
  letter-spacing: 2px;
  color: #e8e4d9;
  line-height: 1;
  transition: color .3s;
}

.card-genre {
  font-size: 11px;
  color: #3a3d50;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color .3s;
}

.card:hover .card-genre {
  color: #7a7a9a;
}

.card-chevron {
  font-size: 50px;
  width: 10px;
  flex-shrink: 0;
  text-align: left;
  padding: 3%;
  color: #1e2232;
  transition: transform .6s cubic-bezier(.22, 1, .36, 1), color .3s;
}

/* PANEL */
.card-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .5s cubic-bezier(.22, 1, .36, 1);
}

.card:hover .card-panel {
  grid-template-rows: 1fr;
}

.card-panel-inner {
  overflow: hidden;
  min-height: 0;
}

.card-content {
  display: flex;
  height: 260px;
}

.card-img-wrap {
  width: 30%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.card-img-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s cubic-bezier(.22, 1, .36, 1);
}

.card:hover .card-img-bg {
  transform: scale(1.05);
}

.card-img-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
}

.card-accent {
  width: 3px;
  flex-shrink: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1) .1s;
}

.card:hover .card-accent {
  transform: scaleY(1);
}

.card-desc-wrap {
  flex: 1;
  padding: 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #0c0e16;
}

.card-desc {
  font-size: 13px;
  color: #7a7a9a;
  line-height: 1.75;
  margin-bottom: 1rem;
  font-weight: 300;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .5px;
  border: 1px solid;
}

.footer {
  padding: 1.8rem;
  text-align: center;
  border-top: 1px solid #0f1218;
  font-size: 12px;
  color: #252836;
  font-weight: 300;
}
