body { background: #000; color: #fff; font-family: Inter, sans-serif; text-align: center; }
header { padding: 2em 0; background: #111; }
.subtitle { font-size: 1.2em; color: #f5c518; }
.cta { display: inline-block; margin-top: 1em; padding: 0.5em 2em; background: #f5c518; color: #000; text-decoration: none; font-weight: bold; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1em; padding: 2em; }
.box { background: #1a1a1a; border: 1px solid #333; padding: 1em; border-radius: 10px; transition: all 0.3s ease; }
.box:hover { background: #333; transform: scale(1.05); cursor: pointer; }
footer { padding: 2em; font-size: 0.9em; background: #111; color: #888; }


/* 📱 Mobile Responsive Tweaks */
@media (max-width: 768px) {
  .grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
  }

  .box {
    width: 100%;
    font-size: 18px;
    text-align: center;
    padding: 20px;
  }

  header h1 {
    font-size: 32px;
  }

  .subtitle {
    font-size: 16px;
  }
}

/* 🎞️ Animations */
body {
  animation: fadeInBody 1s ease-in-out;
}

@keyframes fadeInBody {
  from { opacity: 0; }
  to { opacity: 1; }
}

header h1, .subtitle {
  animation: slideDown 1s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.grid .box {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease-out forwards;
}

.grid .box:nth-child(1) { animation-delay: 0.3s; }
.grid .box:nth-child(2) { animation-delay: 0.5s; }
.grid .box:nth-child(3) { animation-delay: 0.7s; }
.grid .box:nth-child(4) { animation-delay: 0.9s; }
.grid .box:nth-child(5) { animation-delay: 1.1s; }

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