* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: url("late1.jpg") no-repeat center/cover;
  min-height: 100vh;
  color: #fff;
}

.overlay {
  background: rgba(0,0,0,.7);
  min-height: 100vh;
  padding: 60px 20px;
  text-align: center;
}

/* HERO */
.badge {
  display: inline-block;
  background: rgba(0,255,204,.15);
  color: #00ffcc;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 20px;
}

h1 {
  font-size: 64px;
  letter-spacing: 2px;
}

p {
  opacity: .85;
  margin: 20px 0;
}

/* BUTTON */
.buy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #00ffcc;
  color: #000;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: bold;
  text-decoration: none;
  margin-top: 20px;
}

.buy img {
  width: 22px;
}

.pulse {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,255,204,.6); }
  70% { box-shadow: 0 0 0 20px rgba(0,255,204,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,255,204,0); }
}

/* CARD */
.card {
  background: rgba(255,255,255,.05);
  padding: 30px;
  border-radius: 16px;
  max-width: 700px;
  margin: 60px auto 0;
}

ul {
  list-style: none;
}

ul li {
  margin: 12px 0;
}

code {
  background: #000;
  padding: 14px;
  border-radius: 10px;
  display: block;
  word-break: break-all;
}

/* STORY */
.story {
  max-width: 720px;
  margin: 80px auto 0;
  line-height: 1.8;
}

.story strong {
  color: #00ffcc;
}

.quote {
  font-size: 20px;
  font-style: italic;
  opacity: .9;
}

.story-points {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.story-points span {
  background: rgba(255,255,255,.1);
  padding: 10px 16px;
  border-radius: 20px;
  font-size: 14px;
}

.story-end {
  font-size: 18px;
  font-weight: bold;
}

/* IMAGES */
.images {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 60px;
}

.images img {
  width: 260px;
  border-radius: 14px;
}

/* FOOTER */
footer {
  margin-top: 60px;
  font-size: 14px;
}

footer a {
  color: #00ffcc;
  text-decoration: none;
  margin: 0 8px;
}

/* ANIMATION */
.fade {
  opacity: 0;
  animation: fadeUp 1s forwards;
}

.delay1 { animation-delay: .3s }
.delay2 { animation-delay: .6s }
.delay3 { animation-delay: .9s }
.delay4 { animation-delay: 1.2s }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* MOBILE */
@media (max-width: 768px) {
  h1 { font-size: 38px; }
  .buy { width: 100%; justify-content: center; }
  .images img { width: 100%; max-width: 320px; }
}
