body {
  margin: 0;
  font-family: 'Luckiest Guy', cursive, sans-serif;
  background: url('images/background.png') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.hero {
  padding: 100px 20px;
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 12px;
}

.section {
  padding: 80px 20px;
}

.section-inner {
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 12px;
}

h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

p {
  font-size: 18px;
  line-height: 1.4;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 30px;
  font-size: 18px;
  background-color: #ff6600;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #ff8533;
}

h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.desc {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 20px;
}

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

.gallery img {
  width: 200px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  font-size: 16px;
  line-height: 1.5;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

footer {
  padding: 40px 20px;
  background-color: #000;
  font-size: 14px;
  color: #999;
  text-align: center;
}

/* Mobile responsive */
@media screen and (max-width: 600px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  .btn {
    font-size: 16px;
    padding: 12px 20px;
  }

  .gallery img {
    width: 80%;
  }

  .card {
    font-size: 14px;
  }
}