/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0b0b0b;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  text-align: center;
  background-image: url('zeventes24back.png');
  background-repeat: no-repeat;
  background-size: cover;
  line-height: 1.4;
  overflow-x: hidden;
}

/* HEADER */
.hero {
  padding: 20px;
}

.logo {
  width: 160px;
  margin-bottom: 15px;
  height: 40px;
}

.tagline {
  font-size: 1.3rem;
  font-weight: 500;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
}

.tagline span {
  color: #7e5bef;
}

/* SECTION */
.section {
  margin-top: 40px;
  padding: 0 15px;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ccc;
}

.cards-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* CARD */
.card {
  position: relative;
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  flex: 1 1 300px;
  max-width: 360px;

  /* 👇 Animation setup */
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.card img {
  display: block;
  width: 100%;  
  height: auto;
  object-fit: cover;
}

.btn {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(50,50,50,0.85);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn:hover {
  background: rgba(91, 170, 239, 0.9);
}

/* APP CARDS */
.card.app {
  flex: 1 1 150px;
  max-width: 200px;
}

/* When card is visible */
.card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 📱 RESPONSIVE BREAKPOINTS */
@media (max-width: 900px) {
  .cards-row {
    justify-content: center;
  }

  .card, .card.app {
    flex: 1 1 45%;
    max-width: 45%;
  }
}

@media (max-width: 600px) {
  .tagline {
    font-size: 1.1rem;
    display: block;
  }

  .tagline br {
    display: none;
  }

  .tagline span {
    display: block;
    margin-top: 4px;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .card, .card.app {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}
#link{
  color: #fff;
}
