:root {
  --xl-bg: #fff7e2;
  --xl-ink: #372157;
  --xl-peach: #ff7f50;
  --xl-sky: #57d6ff;
  --xl-violet: #8d7cff;
  --xl-card: #ffffff;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--xl-ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(255,127,80,.2) 0, transparent 18%),
    radial-gradient(circle at 92% 10%, rgba(87,214,255,.25) 0, transparent 22%),
    repeating-linear-gradient(135deg, rgba(141,124,255,.08) 0 18px, rgba(141,124,255,.02) 18px 36px),
    var(--xl-bg);
}
a { color: inherit; text-decoration: none; }
.xl-app {
  width: min(1520px, 100%);
  margin: 0 auto;
  padding: 1rem clamp(1rem, 4vw, 2.8rem) 2.7rem;
}
.xl-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(255,255,255,.85);
  border: 2px solid #d2bef8;
  border-radius: 999px;
  padding: .55rem .9rem;
  position: sticky;
  top: .7rem;
  z-index: 9;
}
.xl-logo img { height: 40px; display: block; }
.xl-toggle {
  display: none;
  border: 2px solid #bba7eb;
  background: #fff;
  color: var(--xl-ink);
  border-radius: 999px;
  padding: .35rem .8rem;
  font-weight: 800;
}
.xl-nav { display: flex; gap: .55rem; }
.xl-nav a {
  background: #fff;
  border-radius: 999px;
  padding: .35rem .7rem;
  font-size: .92rem;
  border: 1px solid transparent;
}
.xl-nav a:hover,
.xl-nav a:focus-visible { border-color: var(--xl-peach); }
.xl-hero {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1rem;
}
.xl-maincard {
  background: linear-gradient(135deg, #fff 0, #fff7f0 100%);
  border: 2px solid #f3d6b8;
  border-radius: 30px;
  padding: 1.2rem;
}
.xl-maincard h1 {
  margin: 0;
  font-family: "Bungee", cursive;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
}
.xl-badges {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.xl-badge {
  background: #fff;
  border: 2px solid #e8d1fb;
  border-radius: 18px;
  padding: .55rem .75rem;
  font-weight: 700;
}
.xl-stack {
  display: grid;
  gap: .75rem;
}
.xl-bubble {
  background: rgba(255,255,255,.92);
  border: 2px dashed #cbb6f5;
  border-radius: 22px;
  padding: .9rem;
}
.xl-bubble h3 { margin: 0 0 .3rem; font-family: "Bungee", cursive; font-size: 1rem; color: #5a3ea6; }
.xl-showcase {
  margin-top: 1rem;
  background: linear-gradient(135deg, #5a3ea6, #2e1e56);
  color: #fff7e8;
  border-radius: 28px;
  padding: 1rem;
}
.xl-showcase h2 { margin: 0 0 .6rem; font-family: "Bungee", cursive; font-size: 1.2rem; }
.xl-frame {
  width: 100%;
  min-height: 620px;
  border: 0;
  border-radius: 16px;
  background: #100d1c;
}
.xl-row {
  margin-top: .9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: .75rem;
}
.xl-row article {
  background: #fff;
  border: 1px solid #dfcbff;
  border-radius: 20px;
  padding: .85rem;
}
.xl-row h4 { margin: 0 0 .35rem; color: #5a3ea6; font-family: "Bungee", cursive; font-size: .95rem; }
.xl-foot {
  margin-top: 1.6rem;
  border-top: 2px dotted #c6b0ee;
  padding-top: .8rem;
  display: grid;
  gap: .5rem;
  font-size: .93rem;
}
.xl-links { display: flex; flex-wrap: wrap; gap: .65rem; }
.xl-age {
  position: fixed;
  inset: 0;
  background: rgba(58, 39, 96, .82);
  display: grid;
  place-items: center;
  padding: 1rem;
  z-index: 30;
}
.xl-age[hidden] { display: none; }
.xl-card {
  width: min(540px, 100%);
  background: #fff8ec;
  border: 2px solid #d7c3fa;
  border-radius: 24px;
  padding: 1rem;
}
.xl-card h2 { margin-top: 0; font-family: "Bungee", cursive; font-size: 1.15rem; }
.xl-actions { display: flex; gap: .65rem; flex-wrap: wrap; }
.xl-btn {
  border: 0;
  border-radius: 999px;
  padding: .6rem .95rem;
  font-weight: 800;
  cursor: pointer;
}
.xl-yes { background: var(--xl-peach); color: #fff; }
.xl-no { background: var(--xl-violet); color: #fff; }
@media (max-width: 980px) {
  .xl-hero { grid-template-columns: 1fr; }
  .xl-row { grid-template-columns: 1fr; }
  .xl-frame { min-height: 500px; }
}
@media (max-width: 760px) {
  .xl-toggle { display: inline-flex; }
  .xl-nav {
    position: absolute;
    top: calc(100% + .5rem);
    right: 1rem;
    background: #fff9ef;
    border: 2px solid #d2bef8;
    border-radius: 22px;
    padding: .6rem;
    flex-direction: column;
    width: min(240px, calc(100vw - 2rem));
    display: none;
  }
  .xl-nav[data-open="open"] { display: flex; }
  .xl-frame { min-height: 380px; }
}