 * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: 'Outfit', sans-serif;
      background: #121212;
      color: #fff;
      overflow-x: hidden;
    }

    header {
      background: url('https://images.unsplash.com/photo-1555243896-c709bfa0b564?auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
      padding: 5rem 2rem;
      text-align: center;
      color: #fff;
      position: relative;
      animation: fadeInHeader 1.5s ease-out forwards;
    }

    header::after {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.5);
      z-index: 1;
    }

    header h1 {
      position: relative;
      z-index: 2;
      font-size: 2.8rem;
      text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    }

    .kuliner-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      padding: 3rem 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .kuliner-card {
      background: rgba(30, 30, 30, 0.9);
      border-radius: 16px;
      overflow: hidden;
      backdrop-filter: blur(6px);
      box-shadow: 0 4px 20px rgba(0,0,0,0.3);
      transform: translateY(30px);
      opacity: 0;
      animation: fadeUp 1s ease-out forwards;
    }

    .kuliner-card:nth-child(1) {
      animation-delay: 0.3s;
    }
    .kuliner-card:nth-child(2) {
      animation-delay: 0.6s;
    }
    .kuliner-card:nth-child(3) {
      animation-delay: 0.9s;
    }

    .kuliner-card:hover {
      transform: scale(1.03);
      box-shadow: 0 10px 40px rgba(255, 168, 37, 0.3);
    }

    .kuliner-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
      animation: fadeZoomIn 1.2s ease forwards;
    }

    .kuliner-card:hover img {
      transform: scale(1.05);
    }

    .kuliner-card .content {
      padding: 1.2rem;
    }

    .kuliner-card h3 {
      margin: 0 0 0.5rem;
      color: #f9a825;
      font-weight: 700;
    }

    .kuliner-card p {
      margin: 0;
      font-size: 0.95rem;
      color: #ccc;
      line-height: 1.4;
    }

    footer {
      background: #1a1a1a;
      color: #999;
      text-align: center;
      padding: 2rem;
      margin-top: 2rem;
      font-size: 0.95rem;
      animation: fadeInFooter 1.2s ease-in;
    }

    footer a {
      color: #f9a825;
      text-decoration: none;
      margin: 0 0.5rem;
      transition: color 0.3s ease;
    }

    footer a:hover {
      color: #fff;
    }

    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeZoomIn {
      from {
        transform: scale(0.95);
        opacity: 0;
      }
      to {
        transform: scale(1);
        opacity: 1;
      }
    }

    @keyframes fadeInHeader {
      from {
        opacity: 0;
        transform: translateY(-40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInFooter {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }