.landingdiv{
width: 100%;
}

.landingdiv2 {
background-size: cover;
width: 100%;
animation: stars;
animation-duration: 0.6s;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
background-color: #000000;
margin: 0;
padding: 152px 0 54px 0;
}

.landingdiv2 img{
width: 65%;
max-width: 600px;
}

@keyframes stars {
0% {background-image: url('../img/Layer1_0.png');}
25% {background-image: url('../img/Layer1_1.png');}
50% {background-image: url('../img/Layer1_2.png');}
75% {background-image: url('../img/Layer1_3.png');}
100% {background-image: url('../img/Layer1_0.png');}
}

.centerbtn{
display: flex;
justify-content: center;
align-items: center;
}

.steamlink {
  position: relative;
  display: inline-block;
  padding: 10px 22px;
  color: #ffffff;
  background: linear-gradient(180deg, #5b21b6 0%, #7c3aed 100%);
  border: none;
  border-radius: 32px;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
  margin-top: 18px;
}

/* Hover principal : léger lift + halo diffus */
.steamlink:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(123, 58, 237, 0.35);
  background: linear-gradient(180deg, #6d28d9 0%, #8b5cf6 100%);
}

/* Effet de sheen subtil */
.steamlink::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.steamlink:hover::after {
  animation: sheen-move 1s ease forwards;
  opacity: 1;
}

/* Animation du balayage lumineux */
@keyframes sheen-move {
  0% {
    left: -60%;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    left: 120%;
    opacity: 0;
  }
}

/* Focus clavier propre */
.steamlink:focus-visible {
  outline: 2px solid #c084fc;
  outline-offset: 2px;
}

@media (max-width: 768px){
.landingdiv2 {
padding: 54px 0 54px 0;
}
}

















/* === BASE === */
.home-main {
  background: #0D0F14;
  color: #E6E8F0;
  font-family: "Inter", sans-serif;
}
.section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 64px 20px 40px;
  text-align: center;
  border-top: 1px solid #2A2F3A;
}
.section:first-of-type { border-top: none; }
.section-title {
  font-size: 28px;
  margin-bottom: 20px;
  color: #A78BFA;
  letter-spacing: 0.5px;
}

/* === TRAILER === */
.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #2A2F3A;
  background: #151922;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* === CITATION === */
.section-creator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.creator-quote {
  font-size: 20px;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto;
  color: #D5D8E6;
  font-style: italic;
}
.creator-quote strong { color: #A78BFA; }
.creator-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.creator-info img {
  width: 80px;
  height: 80px;
}
.creator-name {
  margin-top: 10px;
  font-weight: 600;
  color: #ffffff;
}

/* === À PROPOS === */
.section-about p {
  max-width: 700px;
  margin: 0 auto 16px;
  line-height: 1.7;
  color: #D5D8E6;
  font-size: 17px;
}

/* === RÉSEAUX === */
.section-networks {
  text-align: center;
}
.network-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.network-card {
  background: #151922;
  border: 1px solid #2A2F3A;
  border-radius: 14px;
  padding: 18px 10px;
  color: #E6E8F0;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.network-card img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0.9);
}
.network-card span {
  font-weight: 600;
  font-size: 15px;
}
.network-card:hover {
  transform: translateY(-3px);
  border-color: #6D28D9;
  box-shadow: 0 0 15px rgba(109, 40, 217, 0.3);
}
.network-card:hover img {
  filter: brightness(1.2);
}

/* === Responsive === */
@media (max-width: 700px) {
  .creator-quote { font-size: 18px; }
  .network-grid { grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); }
}








/* === OST DISPONIBLE — VERSION VISUELLE === */
.section-soundtrack {
  position: relative;
  color: #E6E8F0;
  text-align: center;
  padding: 100px 20px;
  border: none;
  overflow: hidden;
  border-top: 1px solid #2A2F3A;
  border-bottom: 1px solid #2A2F3A;
}

/* Image de fond (ex : cover OST, ou artwork abstrait du jeu) */
.soundtrack-bg {
  position: absolute;
  inset: 0;
  background: url("assets/ost-bg.jpg") center/cover no-repeat;
  filter: brightness(0.3) blur(2px);
  transform: scale(1.1);
  z-index: 0;
}

/* Dégradé violet/noir au-dessus du fond */
.section-soundtrack::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,15,20,0.85) 0%, rgba(29,0,59,0.85) 100%);
  z-index: 1;
}

/* Contenu centré */
.soundtrack-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

/* Texte */
.soundtrack-text {
  color: #D5D8E6;
  max-width: 720px;
  margin: 0 auto 28px;
  line-height: 1.7;
  font-size: 18px;
}
.soundtrack-text strong {
  color: #C4A0FF;
}
.soundtrack-text em {
  color: #A78BFA;
  font-style: normal;
}

/* Icônes plateformes */
.platforms-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 20px;
}
.platforms-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
 height: 70px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  backdrop-filter: blur(4px);
}
.platforms-grid a:hover {
  transform: translateY(-3px) scale(1.05);
  border-color: #A78BFA;
  background: rgba(167,139,250,0.1);
}
.platforms-grid img {
  width: 36px;
  height: 36px;
  filter: brightness(0.9);
  transition: filter 0.25s ease;
}
.platforms-grid a:hover img {
  filter: brightness(1.3);
}

/* Responsive */
@media (max-width: 700px) {
  .section-soundtrack { padding: 80px 20px; }
  .platforms-grid a { width: 56px; height: 56px; }
  .platforms-grid img { width: 30px; height: 30px; }
  .soundtrack-text { font-size: 16px; }
}
