/* ---------- Color Palette ---------- */
:root {
  --bg: #0A0C14;           /* deep void background */
  --primary: #1A8FE3;      /* arcane blue */
  --secondary: #13C4A3;    /* teal glow */
  --gold: #C8AA6E;         /* LoL gold accent */
  --text: #E0E0E0;         /* main text */
  --subtext: #8A8FA3;      /* muted gray-blue */
}

/* ---------- Page Layout / Animated Background ---------- */


body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'Exo 2', sans-serif;
  color: var(--gold);
  text-align: center;

  /* Deep base + animated purple glow */
  background:
    radial-gradient(1200px 800px at 20% 10%, rgba(128, 0, 255, 0.18), transparent 60%),
    radial-gradient(1000px 700px at 80% 80%, rgba(75, 0, 130, 0.14), transparent 60%),
    var(--bg);
  position: relative;
  overflow: hidden;
  animation: floatGlow 18s ease-in-out infinite;
}

/* Soft vignette to focus the center */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(80% 60% at 50% 40%, transparent 60%, rgba(0, 0, 0, 0.45) 100%);
  z-index: -1;
}

/* Gentle motion to the gradient */
@keyframes floatGlow {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(2%, -1%, 0) scale(1.02); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}

/* ---------- Title ---------- */
.prodname h1 {
  position: relative;
  font-weight: 800;
  font-size: 4rem;
  margin-bottom: -15px;
  display: inline-block;
  overflow: hidden;
  background: linear-gradient(90deg, #9C7C3F, #E8D6A7, #9C7C3F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200%;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: -100% 0; }
  100% { background-position: 100% 0; }
}

.prodname::after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, transparent, #C8AA6E, transparent);
  animation: trimPulse 3s ease-in-out infinite;
}
@keyframes trimPulse {
  0%,100% { opacity: .6; transform: scaleX(0.8); }
  50%     { opacity: 1; transform: scaleX(1); }
}


/* ---------- Description ---------- */
p {
  max-width: 700px;
  line-height: 1.6;
  color: var(--gold);
  font-weight: 300;
  font-size: 1.1rem;
  margin-left: 0 auto 2rem;
  margin-right: 0 auto 2rem;
  margin-bottom: 0 auto 2rem;
}

/* ---------- Button ---------- */
button {
  background-color: var(--gold);
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

button:hover {
  background-color: var(--gold);
  transform: scale(1.05);
  box-shadow: 0 0 20px var(--gold);
}

.buttontext {
  color: var(--bg);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}



