body {
  background: #121212;
  color: white;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding-top: 80px;
}

main {
  max-width: 1300px;
  margin: auto;
  padding: 20px;
  margin-bottom: 70px;
}

.hero {
  text-align: center;
  margin-bottom: 40px;
}

.realisations-list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.realisation-card {
  background: #1e1e1e;
  border-radius: 12px;
  overflow: hidden;
  width: 500px;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
  transition: transform 0.3s ease;
}

.realisation-card:hover {
  transform: translateY(-5px);
}

.realisation-card img,
.realisation-card iframe {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border: none;
  display: block;
  border-radius: 10px 10px 0 0;
}

.realisation-card iframe {
  transform: scale(1.15);
  transform-origin: top left;
  pointer-events: none;
}

.realisation-details {
  padding: 15px;
}

.realisation-details h3 {
  color: #ff4de9;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.realisation-details p {
  color: #ccc;
  font-size: 1rem;
}

.like-block {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
}

.btn-like, .btn-dislike {
  background: none;
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn-like:hover, .btn-dislike:hover {
  transform: scale(1.2);
  color: #ff4de9;
}

.top-realisations {
  background: #181818;
  margin-top: 60px;
  border-radius: 12px;
  padding: 20px;
}

.top-realisations h2 {
  margin-top: 0;
}

.top-realisations ul {
  list-style: none;
  padding: 0;
}

.top-realisations a {
  color: #ff4de9;
  text-decoration: none;
}

.top-realisations a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .realisation-card {
    width: 100%;
  }
  .realisation-card iframe {
    transform: scale(1);
    height: 220px;
  }
}
