:root {
  --green: #00ff88;
  --red: #ff4c4c;
  --black: #0d0d0d;
  --white: #ffffff;
  --gray: #1c1c1c;
  --highlight: rgba(0,255,136,0.5);
}

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

#candles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(180deg, #0a0a0a, #1a1a1a);
}

a { text-decoration: none; color: inherit; }

header {
  text-align: center;
  padding: 80px 20px 60px;
  background: linear-gradient(to bottom, rgba(13,13,13,0.9), rgba(13,13,13,0));
}

header h1 { font-size: 3rem; color: var(--green); margin-bottom: 10px; }
header p { font-size: 1.2rem; color: #ccc; max-width: 600px; margin: 0 auto 30px; }

.cta-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-top: 20px; }

.cta-button {
  padding: 14px 28px;
  background-color: var(--green);
  color: #000;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.3s ease, box-shadow 0.3s ease;
  animation: glow 2s infinite alternate;
}
.cta-button:hover { background-color: #00cc6e; box-shadow: 0 0 30px var(--highlight), 0 0 50px var(--highlight); }

@keyframes glow {
  0% { box-shadow: 0 0 5px var(--highlight); }
  50% { box-shadow: 0 0 15px var(--highlight); }
  100% { box-shadow: 0 0 5px var(--highlight); }
}

.section { padding: 60px 20px; max-width: 1200px; margin: auto; }
.section h2 { text-align: center; color: var(--green); font-size: 2rem; margin-bottom: 40px; }

.offers-row { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-top: 30px; }

.offer-card {
  background-color: var(--gray);
  padding: 30px 20px;
  border-radius: 12px;
  flex: 1 1 280px;
  min-width: 250px;
  transition: 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  animation: pulse 3s infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.offer-card:hover { transform: scale(1.03); box-shadow: 0 0 25px var(--highlight); }

@keyframes pulse {
  0% { box-shadow: 0 0 10px rgba(0,255,136,0.3); }
  50% { box-shadow: 0 0 20px rgba(0,255,136,0.5); }
  100% { box-shadow: 0 0 10px rgba(0,255,136,0.3); }
}

.offer-card h3 { color: var(--green); font-size: 1.5rem; margin-bottom: 15px; text-align: center; }
.offer-card ul { list-style: none; padding-left: 0; margin-bottom: 20px; }
.offer-card ul li { margin-bottom: 10px; padding-left: 22px; position: relative; }
.offer-card ul li::before { content: "✔"; position: absolute; left: 0; color: var(--green); }

.offer-card .buy-button {
  display: inline-block;
  margin: 18px auto 0 auto;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  background-color: var(--green);
  color: #000;
  border-radius: 6px;
  text-align: center;
  transition: 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 5px var(--highlight);
  text-decoration: none;
}
.offer-card .buy-button:hover { background-color: #00cc6e; box-shadow: 0 0 15px var(--highlight); }

.callout { text-align: center; margin: 40px 0; font-size: 1.3rem; color: #ccc; }
.callout span { color: var(--green); font-weight: 700; }

.testimonials { margin-top: 60px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.testimonial { background-color: var(--gray); padding: 25px; border-radius: 10px; border-left: 5px solid var(--green); box-shadow: 0 0 10px rgba(0, 255, 136, 0.1); }
.testimonial p { font-style: italic; color: #ddd; }
.testimonial span { display: block; margin-top: 15px; color: #999; font-weight: bold; }

.socials { text-align: center; margin: 50px 0 20px; }
.socials a { display: inline-block; margin: 0 15px; font-size: 2rem; transition: 0.3s ease; }
.socials a.youtube { color: #FF0000; }
.socials a.instagram { background: radial-gradient(circle at 30% 107%, #feda77 0%, #f09433 30%, #bc1888 60%, #bc2a8d 90%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.socials a.tiktok { color: #69C9D0; text-shadow: 2px 0 #EE1D52, -2px 0 #EE1D52; }
.socials a:hover { transform: scale(1.3); }

footer { text-align: center; padding: 30px 15px; background-color: #101010; color: #777; font-size: 0.9em; margin-top: 60px; }

@media (max-width: 900px) { .offers-row { flex-direction: column; align-items: center; } }

