* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: #000;
  color: #fff;
}

.hero {
  padding-bottom: 180px;
  padding-top: 150px;
  min-height: 100vh;
  height: auto;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 250px;
}


.lemon-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,120,0.5), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(40px);
  pointer-events: none;
}

.lemon {
  width: 180px;
  z-index: 2;
  position: relative;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.hero h1 {
  font-size: 58px;
  margin-top: 20px;
  font-weight: 800;
  z-index: 2;
  position: relative;
}

.subtitle {
  font-size: 20px;
  margin-top: 10px;
  opacity: 0.9;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Buttons */
.btn {
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
}

.primary {
  background: #ffe44d;
  color: #000;
}

.primary:hover {
  background: #fff176;
}

.secondary {
  background: #222;
  border: 1px solid #555;
  color: #fff;
}

.secondary:hover {
  background: #333;
}

/* Sections */
section {
  padding: 80px 40px;
  text-align: center;
}

h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

/* Download Cards */
.download-grid, .app-grid, .addon-grid, .version-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 900px;
  margin: auto;
}

.dl-card, .app-card, .addon-card, .version-entry {
  padding: 20px;
  background: #111;
  border: 1px solid #333;
  border-radius: 12px;
  transition: 0.2s;
}

.dl-card:hover, .app-card:hover, .addon-card:hover, .version-entry:hover {
  border-color: #ffe44d;
  box-shadow: 0 0 20px rgba(255,255,120,0.1);
}

footer {
  padding: 40px;
  text-align: center;
  background: #0a0a0a;
  border-top: 1px solid #222;
  margin-top: 40px;
}

.app-card .btn,
.addon-card .btn,
.dl-card .btn {
    display: inline-block;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.app-card, .addon-card, .dl-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 900px;
  margin: auto;
}
