:root {
  --background: oklch(14% 0.012 55);
  --foreground: oklch(98% 0.005 90);
  --muted-foreground: oklch(78% 0.02 80);
  --gold: oklch(78% 0.16 82);
  --gold-bright: oklch(92% 0.17 92);
  --gold-dim: oklch(55% 0.12 78);
  --youtube: oklch(55% 0.22 25);
  --gradient-bg: radial-gradient(ellipse at top, oklch(26% 0.025 60) 0%, oklch(14% 0.012 55) 70%);
  --gradient-gold: linear-gradient(135deg, oklch(65% 0.14 78) 0%, oklch(92% 0.17 92) 50%, oklch(65% 0.14 78) 100%);
  --gradient-gold-text: linear-gradient(180deg, oklch(92% 0.17 92) 0%, oklch(72% 0.16 80) 100%);
  --gradient-youtube-card: linear-gradient(180deg, oklch(32% 0.08 25) 0%, oklch(20% 0.04 30) 100%);
  --font-display: "Playfair Display", Georgia, serif;
  --font-script: "Great Vibes", cursive;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--gradient-bg);
  color: var(--foreground);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, oklch(78% 0.16 82 / 0.13), transparent 28%),
    radial-gradient(circle at 80% 75%, oklch(92% 0.17 92 / 0.1), transparent 30%);
}

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

.page {
  position: relative;
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 40px 16px;
}

.corner {
  pointer-events: none;
  position: absolute;
  width: 500px;
  height: 500px;
  border: 2px solid color-mix(in oklch, var(--gold), transparent 60%);
  border-radius: 999px;
}

.corner-left {
  left: -160px;
  top: -160px;
}

.corner-right {
  right: -160px;
  bottom: -160px;
}

.card {
  position: relative;
  z-index: 1;
  width: min(100%, 448px);
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 32px;
  background:
    linear-gradient(180deg, oklch(24% 0.02 60), oklch(18% 0.015 60)) padding-box,
    var(--gradient-gold) border-box;
  box-shadow: 0 30px 80px -20px rgb(0 0 0 / 0.8);
  backdrop-filter: blur(14px);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image: radial-gradient(color-mix(in oklch, var(--gold), transparent 75%) 1px, transparent 1px);
  background-size: 18px 18px;
}

.card-arc {
  pointer-events: none;
  position: absolute;
  width: 240px;
  height: 240px;
  border: 2px solid color-mix(in oklch, var(--gold-bright), transparent 40%);
  border-radius: 999px;
  box-shadow: inset 0 0 30px var(--gold);
}

.card-arc.one {
  left: -96px;
  top: -96px;
}

.card-arc.two {
  right: -96px;
  bottom: -96px;
}

.content {
  position: relative;
  padding: 40px 24px 48px;
}

.logo-wrap {
  display: flex;
  justify-content: center;
}

.logo-frame {
  display: grid;
  width: 190px;
  height: 150px;
  place-items: center;
  border: 1px solid color-mix(in oklch, var(--gold), transparent 50%);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, oklch(92% 0.17 92 / 0.16), transparent 60%),
    linear-gradient(180deg, oklch(24% 0.02 60 / 0.78), oklch(12% 0.012 55 / 0.78));
  box-shadow:
    inset 0 1px 0 oklch(92% 0.17 92 / 0.22),
    0 18px 45px rgb(0 0 0 / 0.32),
    0 0 45px oklch(78% 0.16 82 / 0.18);
}

.logo {
  width: auto;
  max-width: 160px;
  height: 118px;
  object-fit: contain;
  filter: drop-shadow(0 0 25px oklch(85% 0.17 88 / 0.6));
}

.title {
  margin: 20px 0 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(30px, 7vw, 34px);
  line-height: 1.15;
}

.gold-text {
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 0 8px;
}

.line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.line.right {
  background: linear-gradient(270deg, transparent, var(--gold));
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--gold);
}

.diamond {
  width: 10px;
  height: 10px;
  rotate: 45deg;
  background: var(--gold-bright);
  box-shadow: 0 0 10px var(--gold-bright);
}

.star {
  color: var(--gold-bright);
  filter: drop-shadow(0 0 6px var(--gold-bright));
}

.intro,
.footer-text {
  max-width: 340px;
  margin: 10px auto 0;
  text-align: center;
  color: var(--muted-foreground);
  font-size: 15px;
  line-height: 1.7;
}

.links {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.social {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 18px;
  background:
    linear-gradient(180deg, oklch(24% 0.02 60), oklch(18% 0.015 60)) padding-box,
    var(--gradient-gold) border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px oklch(85% 0.17 88 / 0.55);
}

.social:focus-visible {
  outline: 3px solid color-mix(in oklch, var(--gold-bright), transparent 25%);
  outline-offset: 3px;
}

.social.youtube {
  background: var(--gradient-youtube-card) padding-box, var(--gradient-gold) border-box;
  box-shadow: 0 0 30px oklch(82% 0.16 85 / 0.35);
}

.social::before {
  content: "";
  position: absolute;
  left: 12.5%;
  top: 0;
  width: 75%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
}

.social-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
}

.icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-dim), oklch(30% 0.04 70));
  color: var(--gold-bright);
  font-weight: 800;
  box-shadow: 0 6px 16px rgb(0 0 0 / 0.25);
}

.icon svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}

.icon .filled {
  fill: currentColor;
  stroke: none;
}

.youtube .icon {
  background: var(--youtube);
  color: white;
}

.social-label {
  flex: 1;
  font-size: 18px;
  font-weight: 700;
}

.arrow {
  color: var(--gold-bright);
  font-size: 28px;
  transition: transform 0.25s ease;
}

.social:hover .arrow {
  transform: translateX(4px);
}

.footer {
  margin-top: 38px;
}

.footer h2 {
  margin: 6px 0 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: 28px;
}

.script {
  margin: 20px 0 0;
  text-align: center;
  font-family: var(--font-script);
  font-size: 28px;
}

.small-line {
  width: 160px;
  height: 1px;
  margin: 8px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
}

@media (min-width: 640px) {
  .content {
    padding: 48px 36px;
  }
}
