@import url("https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --bg: #0b0a14;
  --bg2: #1a0f2c;
  --accent: #ff4d6d;
  --accent2: #f6c65b;
  --mint: #5ef2c2;
  --text: #f6f2ff;
  --muted: #b2a8c7;
  --card: rgba(255, 255, 255, 0.08);
  --stroke: rgba(255, 255, 255, 0.12);
}

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

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Manrope", "Trebuchet MS", sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 500px at 80% -20%, rgba(59, 11, 90, 0.25), transparent),
    radial-gradient(900px 600px at 10% 10%, rgba(42, 27, 70, 0.3), transparent),
    linear-gradient(150deg, #090911, #100a1a);
  min-height: 100vh;
  padding: calc(32px + env(safe-area-inset-top)) 5vw
    calc(48px + env(safe-area-inset-bottom));
  overflow-x: hidden;
}

.orb-layer {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  width: min(360px, 70vw);
  height: min(360px, 70vw);
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.25;
  pointer-events: none;
  animation: float 10s ease-in-out infinite;
}

.orb-left {
  background: linear-gradient(120deg, #ff5c8a, #ffb15b);
  top: 120px;
  left: -120px;
}

.orb-right {
  background: linear-gradient(120deg, #58f3d3, #9a6bff);
  top: -80px;
  right: -120px;
  animation-delay: -4s;
}

.hero {
  max-width: 1200px;
  margin: 0 auto 80px;
  position: relative;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  font-family: "Manrope", "Trebuchet MS", sans-serif;
}

.brand {
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-cta {
  padding: 10px 18px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-copy .tag {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 20px;
}

h1,
h2,
h3 {
  font-family: "Cinzel Decorative", "Times New Roman", serif;
}

h1 {
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 20px;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 520px;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  cursor: pointer;
  padding: 12px 26px;
  border-radius: 14px;
  font-family: "Manrope", "Trebuchet MS", sans-serif;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent2));
  color: #1a0f2c;
  box-shadow: 0 14px 30px rgba(255, 77, 109, 0.35);
}

.btn.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--stroke);
}

.btn.small {
  padding: 8px 18px;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
  border: 1px solid var(--stroke);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-panel {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 26px;
  padding: 28px;
  display: grid;
  gap: 14px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  animation: panelIn 1s ease both;
}

.panel-title {
  font-family: "Manrope", "Trebuchet MS", sans-serif;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
}

.panel-list {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.jackpot {
  font-size: 2.2rem;
  color: var(--accent2);
  font-weight: 700;
}

.panel-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.panel-meter {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.panel-meter span {
  display: block;
  height: 100%;
  width: 72%;
  background: linear-gradient(90deg, var(--mint), #74c0ff);
}

.panel-cta {
  background: rgba(94, 242, 194, 0.1);
  border: 1px solid rgba(94, 242, 194, 0.4);
  padding: 10px 14px;
  border-radius: 12px;
  text-align: center;
  font-family: "Manrope", "Trebuchet MS", sans-serif;
}

.offers {
  max-width: 1200px;
  margin: 0 auto 60px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 30px;
}

.section-head h2 {
  font-size: 2rem;
}

.section-head p {
  color: var(--muted);
  max-width: 360px;
  text-align: right;
  line-height: 1.5;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 22px;
  padding: 22px;
  display: grid;
  gap: 14px;
  min-height: 240px;
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.8s ease both;
}

.card:nth-child(2) {
  animation-delay: 0.1s;
}

.card:nth-child(3) {
  animation-delay: 0.2s;
}

.card:nth-child(4) {
  animation-delay: 0.3s;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.08));
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.card:hover::after {
  opacity: 1;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chip {
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-family: "Manrope", "Trebuchet MS", sans-serif;
}

.rate {
  color: var(--accent2);
  font-weight: 600;
}

.card h3 {
  font-size: 1.2rem;
}

.card p {
  color: var(--muted);
  line-height: 1.5;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Manrope", "Trebuchet MS", sans-serif;
}

.meta {
  font-size: 0.85rem;
  color: var(--muted);
}

.footer {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-family: "Manrope", "Trebuchet MS", sans-serif;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 18px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(16px);
  }
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-head p {
    text-align: left;
  }
}

@media (max-width: 640px) {
  body {
    padding: 24px 6vw 50px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    gap: 12px;
  }
}
