body{
  margin:0;
  font-family:'Space Grotesk', sans-serif;
  background:#050214;
  color:white;
}

.presse-page{
  min-height:100vh;
  padding:150px 8% 110px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,61,127,.22), transparent 28%),
    linear-gradient(rgba(5,2,20,.45), rgba(5,2,20,.98)),
    url("images/revu1.jpg") center/cover fixed no-repeat;
}

.presse-hero{
  margin-bottom:80px;
}

.presse-hero > span{
  display:inline-block;
  background:#84db41; /* Vert */
  color:#0c159b;
  padding:8px 24px;
  font-weight:900;
  text-transform:uppercase;
  transform:rotate(-2deg);
}

.presse-hero h1{
  margin:24px 0 18px;
  font-size:clamp(3.2rem, 7vw, 6.5rem);
  line-height:.82;
  letter-spacing:-.06em;
  text-transform:uppercase;
}

.presse-hero p{
  max-width:560px;
  color:rgba(255,255,255,.78);
  font-size:1.15rem;
  line-height:1.6;
}

.presse-layout{
  max-width:900px;
  margin:0 auto;
}
.presse-card{
  position:sticky;
  top:120px;
  background:#fff7ec;
  color:#09041f;
  border-radius:28px;
  padding:36px;
  transform:rotate(-2deg);
  box-shadow:0 35px 90px rgba(0,0,0,.45);
}

.presse-card strong{
  display:block;
  font-size:2.6rem;
  line-height:.78;
  text-transform:uppercase;
  letter-spacing:-.07em;
}

.presse-card p{
  margin:28px 0 0;
  color:rgba(9,4,31,.72);
  line-height:1.55;
  font-weight:700;
}

.poster-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:34px;
  align-items:start;
}

.poster-card{
  display:block;
  text-decoration:none;
  color:white;
  padding:14px;
  border-radius:24px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  box-shadow:0 24px 70px rgba(0,0,0,.35);
  opacity:0;
  animation:posterReveal .8s ease forwards;
}

.poster-card:nth-child(1){
  transform:rotate(-1.5deg);
  animation-delay:.25s;
}

.poster-card:nth-child(2){
  transform:rotate(1.5deg);
  margin-top:45px;
  animation-delay:.38s;
}

.poster-card:nth-child(3){
  transform:rotate(1deg);
  animation-delay:.51s;
}

.poster-card:nth-child(4){
  transform:rotate(-1.3deg);
  margin-top:45px;
  animation-delay:.64s;
}

.poster-card img{
  width:100%;
  height:auto;
  display:block;
  border-radius:16px;
}

.poster-card span{
  display:block;
  padding:18px 6px 4px;
  color:#84db41;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.poster-card:hover{
  transform:translateY(-10px) rotate(0deg) scale(1.02);
  background:rgba(255,255,255,.14);
  border-color:rgba(255,159,28,.8);
}

.poster-card img{
  transition:filter .35s ease, transform .35s ease;
}

.poster-card:hover img{
  filter:brightness(1.08) saturate(1.08);
  transform:scale(1.01);
}

.presse-hero,
.presse-card{
  opacity:0;
  animation:pageReveal .8s ease forwards;
}

.presse-hero{
  animation-delay:.1s;
}

.presse-card{
  animation-delay:.25s;
}

@keyframes pageReveal{
  from{
    opacity:0;
    transform:translateY(28px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes posterReveal{
  from{
    opacity:0;
    translate:0 35px;
  }

  to{
    opacity:1;
    translate:0 0;
  }
}

@media(max-width:900px){
  .presse-page{
    padding:130px 7% 80px;
    background-attachment:scroll;
  }

  .presse-layout{
    grid-template-columns:1fr;
    gap:45px;
  }

  .presse-card{
    position:relative;
    top:auto;
    max-width:360px;
  }
}

@media(max-width:650px){
   .presse-page{
    padding:120px 6% 70px;
    background:
      radial-gradient(circle at 15% 20%, rgba(255,61,127,.22), transparent 28%),
      linear-gradient(rgba(5,2,20,.45), rgba(5,2,20,.98)),
      url("images/revu1-mobile.png") center/cover no-repeat;
  }

  .presse-hero{
    margin-bottom:45px;
  }

  .presse-hero h1{
    font-size:clamp(2.8rem, 14vw, 4.4rem);
  }

  .poster-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:16px;
  }

  .poster-card{
    padding:8px;
    border-radius:18px;
  }

  .poster-card img{
    border-radius:12px;
  }

  .poster-card span{
    font-size:.68rem;
    padding:10px 3px 2px;
  }

  .poster-card:nth-child(2),
  .poster-card:nth-child(4){
    margin-top:26px;
  }
}