* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #0b0b0b 0%, #111111 45%, #1b1b1b 100%);
  color: #ffffff;
}

.page {
  min-height: 100vh;
  padding: 32px 20px 60px;
  max-width: 1240px;
  margin: 0 auto;
}

.card {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: center;
  padding: 28px;
}

.hero-left {
  padding: 14px 8px;
}

.hero-right {
  padding: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Gold spotlight behind cover */
.hero-right::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(244, 180, 0, 0.28) 0%,
    rgba(244, 180, 0, 0.14) 35%,
    rgba(244, 180, 0, 0.06) 55%,
    transparent 75%
  );
  filter: blur(45px);
  z-index: 1;
  pointer-events: none;
}

.badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(244, 180, 0, 0.14);
  color: #f4b400;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

h1 {
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1;
  margin: 0 0 16px 0;
  font-weight: 900;
}

.subtitle {
  font-size: clamp(18px, 2vw, 24px);
  color: #f4b400;
  font-weight: 700;
  margin: 0 0 18px 0;
}

.desc {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 16px;
  max-width: 560px;
}

.small {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 14px;
}

.note {
  max-width: 430px;
}

.button {
  display: inline-block;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 17px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  background: #f4b400;
  color: #111111;
  margin-top: 8px;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(244, 180, 0, 0.35);
  opacity: 0.98;
}

.cover {
  width: 100%;
  max-width: 600px;
  border-radius: 16px;
  position: relative;
  z-index: 2;
  box-shadow:
    0 0 80px rgba(244, 180, 0, 0.75),
    0 0 160px rgba(244, 180, 0, 0.4),
    0 35px 80px rgba(0, 0, 0, 0.8);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.cover:hover {
  transform: scale(1.04);
  box-shadow:
    0 0 100px rgba(244, 180, 0, 0.9),
    0 0 220px rgba(244, 180, 0, 0.5),
    0 40px 90px rgba(0, 0, 0, 0.85);
}

.meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  max-width: 600px;
  margin-top: 18px;
  position: relative;
  z-index: 2;
}

.meta-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px;
}

.meta-box span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 6px;
}

.meta-box strong {
  font-size: 18px;
  color: #ffffff;
}

@media (max-width: 900px) {
  .hero {
    gap: 24px;
  }

  .meta-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page {
    padding: 20px 14px 40px;
  }

  .hero {
    padding: 20px;
  }

  .button {
    width: 100%;
    text-align: center;
  }

  .hero-right::before {
    width: 100%;
    height: 100%;
  }
}







