:root {
  --beige-0: #f6f2ea;
  --beige-1: #ebdfcf;
  --beige-2: #e2d5c5;
  --beige-3: #efe6d8;
  --beige-4: #f3ede4;
  --beige-translucent: rgba(250, 248, 243, 0.42);
  --beige-translucent-55: rgba(250, 248, 243, 0.55);
  --beige-translucent-58: rgba(250, 248, 243, 0.58);
  --beige-translucent-60: rgba(250, 248, 243, 0.6);
  --beige-translucent-74: rgba(250, 248, 243, 0.74);
  --ink: #241d2d;
  --ink-deep: #201929;
  --ink-soft: #1f1430;
  --muted: #62556f;
  --line: rgba(87, 75, 99, 0.16);
  --line-strong: rgba(87, 75, 99, 0.22);
  --line-25: rgba(87, 75, 99, 0.25);
  --violet: #7a5cf2;
  --violet-deep: #4f3395;
  --violet-soft: rgba(122, 92, 242, 0.1);
  --violet-soft-2: rgba(122, 92, 242, 0.18);
  --violet-soft-3: rgba(122, 92, 242, 0.24);
  --violet-chip: #b693ff;
  --violet-pale: #efe6ff;
  --shadow-card: 0 18px 22.5px rgba(52, 32, 92, 0.14);
  --shadow-card-soft: 0 18px 45px rgba(52, 32, 92, 0.14);
  --shadow-btn: 0 12px 14px rgba(79, 51, 149, 0.26);
  --shadow-orb: 0 64px 73px rgba(72, 36, 140, 0.3);
  --radius-pill: 999px;
  --radius-card: 28px;
  --radius-block: 34px;
  --radius-chip: 120px;
  --font-stack: "Inter", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-stack);
  font-weight: 400;
  color: var(--ink);
  background:
    radial-gradient(at 10% 10%, rgba(122, 92, 242, 0.1) 0%, rgba(122, 92, 242, 0) 22%),
    radial-gradient(at 90% 0%, rgba(122, 92, 242, 0.12) 0%, rgba(122, 92, 242, 0) 24%),
    linear-gradient(180deg, var(--beige-1) 0%, var(--beige-2) 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

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

.accent { color: var(--violet) !important; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(231, 220, 203, 0.76);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  border-bottom: 1px solid var(--line-25);
}
.header__inner {
  max-width: 1344px;
  margin: 0 auto;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10.834px;
  flex-shrink: 0;
}
.brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background:
    radial-gradient(at 30% 30%, rgba(215, 201, 255, 1) 0%, rgba(215, 201, 255, 0) 50%),
    linear-gradient(145deg, var(--violet) 0%, var(--violet-deep) 100%);
  position: relative;
  display: inline-block;
  transform: rotate(-12deg);
  filter: drop-shadow(0 10px 11px rgba(79, 51, 149, 0.26));
}
.brand__mark-bar {
  position: absolute;
  top: 12px;
  left: 8px;
  width: 18px;
  height: 6px;
  background: var(--beige-0);
  border-radius: 999px;
  transform: rotate(42deg);
}
.brand__mark-dot {
  position: absolute;
  bottom: 7px;
  right: 7px;
  width: 10px;
  height: 10px;
  background: rgba(246, 242, 234, 0.88);
  border-radius: 999px;
}
.brand__name {
  font-weight: 700;
  font-size: 18.4px;
  letter-spacing: 1.472px;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.brand__name--accent { color: var(--violet-deep); }

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.nav__link {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 19px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(87, 75, 99, 0.28);
  background: var(--beige-translucent);
  font-size: 14.7px;
  color: var(--ink);
  transition: background 0.15s ease, border-color 0.15s ease;
}
.nav__link:hover {
  background: var(--beige-translucent-74);
  border-color: var(--line-strong);
}

/* ---------- Layout helpers ---------- */
main { display: flex; flex-direction: column; gap: 80px; padding-top: 0; }
section { max-width: 1344px; margin: 0 auto; width: 100%; padding-left: 48px; padding-right: 48px; }

/* ---------- Hero ---------- */
.hero { padding-top: 34px; padding-bottom: 42px; }
.hero__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 24px;

}

.hero__grid_game{
  justify-content: space-between;
  align-items: end;
  gap: 177px;
}

@media (max-width: 1200px) {
  .hero__grid_game { gap: 100px; }
}
@media (max-width: 1024px) {
  .hero__grid_game { gap: 50px; }
}
@media (max-width: 960px) {
.hero__img{
  margin: 0 auto;
}
}
.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}
.badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  padding: 11px 17px;
  border-radius: var(--radius-pill);
  background: var(--violet-soft);
  border: 1px solid var(--violet-soft-3);
  color: var(--violet-deep);
  font-weight: 700;
  font-size: 13.1px;
  letter-spacing: 1.574px;
  text-transform: uppercase;
}
.hero__title {
  margin: 0;
  font-weight: 700;
  font-size: 92.8px;
  line-height: 88.16px;
  letter-spacing: -4.176px;
  text-transform: uppercase;
  color: var(--ink);
}
.hero__lede {
  margin: 0;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 28px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 6px;
}
.hero__actions .btn { flex: 1 1 auto; min-width: 220px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 16px 23px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.32px;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(150deg, var(--violet) 0%, var(--violet-deep) 100%);
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.btn--primary:hover { transform: translateY(-1px); }
.btn--ghost {
  background: var(--beige-translucent-55);
  border-color: #574b63;
  color: var(--ink);
}
.btn--ghost:hover { background: var(--beige-translucent-74); }
.btn--sm {
  min-height: 42px;
  padding: 0 16px;
  font-size: 14.4px;
  letter-spacing: 0;
}
.btn--primary.btn--sm {
  background: var(--violet);
  box-shadow: none;
  border-color: var(--violet);
}
.btn--ghost.btn--sm {
  background: var(--beige-translucent-74);
  border-color: var(--line-strong);
}

/* ---------- Hero art ---------- */
.hero__art {
  position: relative;
  width: 702px;
  height: 702px;
  flex-shrink: 0;
}
.orb {
  position: absolute;
  width: 558px;
  height: 558px;
  left: 72px;
  top: 72px;
  transform: rotate(-18deg);
  border-radius: 396px 162px 390px 167px;
  background:
    radial-gradient(at 35% 30%, rgba(255, 255, 255, 0.54) 0%, rgba(255, 255, 255, 0) 18%),
    radial-gradient(at 70% 62%, rgba(83, 52, 152, 0.56) 0%, rgba(83, 52, 152, 0) 24%),
    radial-gradient(at 48% 46%, rgba(209, 190, 255, 0.28) 0%, rgba(209, 190, 255, 0) 22%),
    linear-gradient(145deg, #7b5df4 0%, #5a36bf 55%, #a488ff 100%);
  filter: drop-shadow(var(--shadow-orb));
  box-shadow:
    inset -40px -44px 73px rgba(255, 255, 255, 0.1),
    inset 44px 40px 66px rgba(49, 22, 108, 0.28);
}
.orb::after {
  content: "";
  position: absolute;
  inset: 22%;
  border: 18px solid rgba(246, 242, 234, 0.68);
  border-radius: 69px 244px 91px 222px;
  opacity: 0.68;
}
.chip {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1.82px solid var(--line-strong);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 22.7px;
  color: var(--ink-soft);
  letter-spacing: 3.18px;
  text-transform: uppercase;
  line-height: 1;
  gap: 6px;
  filter: drop-shadow(0 33px 41px rgba(52, 32, 92, 0.14));
}
.chip span { display: block; }
.chip--violet {
  left: 0;
  bottom: 22px;
  background: var(--violet-chip);
  transform: rotate(-14.5deg) skewX(1deg);
}
.chip--pale {
  right: 0;
  top: 0;
  background: var(--violet-pale);
  transform: rotate(15.4deg) skewX(-1deg);
}

/* ---------- Section header ---------- */
.games { padding: 42px 48px; }
.games__header {
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section-title {
  margin: 0;
  font-weight: 700;
  font-size: 60.8px;
  line-height: 57.76px;
  letter-spacing: -2.432px;
  text-transform: uppercase;
  color: var(--ink);
}
.section-lede {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 27.2px;
}

/* ---------- Cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: var(--beige-4);
  border: 1px solid rgba(87, 75, 99, 0.17);
  border-radius: var(--radius-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  filter: drop-shadow(var(--shadow-card));
}
.card__art {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  min-height: 140px;
  margin-bottom: 16px;
  padding: 77px 18px 18px;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(at 80% 22%, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 16%),
    linear-gradient(132deg, #947af7 0%, #5c3ac4 100%);
}
.card__art::before {
  content: "";
  position: absolute;
  left: -40px;
  top: -55px;
  width: 180px;
  height: 180px;
  background: rgba(32, 11, 63, 0.32);
  border-radius: 999px;
  opacity: 0.88;
  filter: blur(0.5px);
}
.card__art::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: -10px;
  width: 90px;
  height: 90px;
  background: rgba(247, 240, 255, 0.82);
  border-radius: 999px;
  opacity: 0.88;
}
.card__title-wrap {
  position: relative;
  z-index: 2;
  flex: 1 1 0;
  min-width: 0;
}
.card__title {
  margin: 0;
  font-weight: 700;
  font-size: 21.4px;
  line-height: 22.5px;
  letter-spacing: -0.43px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
}
.card__logo {
  position: relative;
  z-index: 2;
  width: 132px;
  height: 132px;
  object-fit: cover;
  pointer-events: none;
}
.card__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 12px;
}
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  border-radius: var(--radius-pill);
  background: var(--violet-soft);
  border: 1px solid var(--violet-soft-2);
  color: var(--violet-deep);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.998px;
  text-transform: uppercase;
  white-space: nowrap;
}
.card__desc {
  margin: 0;
  color: var(--muted);
  font-size: 15.2px;
  line-height: 25.84px;
}
.card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 18px;
}

/* ---------- Manifesto ---------- */
.manifesto { padding: 42px 48px; }
.manifesto__inner {
  background: rgba(250, 248, 243, 0.48);
  border: 1px solid var(--line);
  border-radius: 36px;
  box-shadow: var(--shadow-card-soft);
  padding: 19px;
  display: flex;
  gap: 0;
}
.manifesto__inner > * + * { border-left: 1px solid rgba(87, 75, 99, 0.18); }
.manifesto__cell {
  flex: 1 1 0;
  background: var(--beige-3);
  padding: 15px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 120px;
  gap: 4px;
}
.manifesto__cell:first-child { border-top-left-radius: 26px; border-bottom-left-radius: 26px; }
.manifesto__cell:last-child  { border-top-right-radius: 26px; border-bottom-right-radius: 26px; }
.manifesto-txt {
  margin: 0;
  font-weight: 700;
  font-size: 48px;
  line-height: 45.6px;
  letter-spacing: -2.4px;
  text-transform: uppercase;
  color: var(--ink);
}

/* ---------- FAQ ---------- */
.faq { padding: 42px 48px; }
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.faq__title-card {
  background: var(--beige-translucent-60);
  border: 1px solid rgba(87, 75, 99, 0.18);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card-soft);
  overflow: hidden;
  margin: 0;
}
.faq__title-card p {
  margin: 0;
  padding: 34px 20px 36px;
  text-align: center;
  font-weight: 700;
  font-size: 51.2px;
  line-height: 48.64px;
  letter-spacing: -2.56px;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid rgba(87, 75, 99, 0.18);
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq__title-card p:last-child { border-bottom: 0; }
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--beige-translucent-58);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(52, 32, 92, 0.06);
  overflow: hidden;
}
.faq-item > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 13px 18px 20px;
  font-weight: 700;
  font-size: 16.3px;
  color: var(--ink);
  list-style: none;
  cursor: pointer;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item__icon {
  width: 34px;
  height: 34px;
  border-radius: 17px;
  background: var(--violet-soft);
  border: 1px solid rgba(122, 92, 242, 0.16);
  color: var(--violet-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 19.2px;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}
.faq-item[open] .faq-item__icon,
.faq-item__icon--active {
  background: var(--violet);
  color: #fff;
  border-color: rgba(122, 92, 242, 0.16);
  transform: rotate(45deg);
}
.faq-item > p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 27.16px;
}

/* ---------- Contact ---------- */
.contact { padding: 6px 48px 40px; }
.contact__card {
  position: relative;
  background: var(--beige-translucent-58);
  border: 1px solid var(--line);
  border-radius: var(--radius-block);
  box-shadow: var(--shadow-card-soft);
  padding: 29px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact__title {
  margin: 0 0 14px;
  font-weight: 700;
  font-size: 67.2px;
  line-height: 61.82px;
  letter-spacing: -3.36px;
  text-transform: uppercase;
  color: var(--ink);
}
.contact__details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 27.2px;
}
.contact__details strong { font-weight: 700; }
.contact__col--text {
  color: var(--muted);
  font-size: 16.5px;
  line-height: 28px;
}
.contact__col--text p { margin: 0; max-width: 385px; }

.contact__wordmark-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 3px;
}
.wordmark {
  margin: 0;
  font-weight: 700;
  font-size: 128px;
  line-height: 112.64px;
  letter-spacing: -10.24px;
  text-transform: uppercase;
  color: var(--ink-deep);
  /* white-space: nowrap; */
}
.socials {
  display: flex;
  align-items: center;
  gap: 15px;
}
.socials__link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.socials__link img { width: 100%; height: 100%; }

.contact__footer {
  border-top: 1px solid var(--line);
  padding-top: 19px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
}
.contact__legal { display: flex; flex-wrap: wrap; gap: 20px; }
.contact__legal a {
  color: var(--muted);
  font-size: 15.2px;
}
.contact__copy {
  margin: 0;
  color: var(--muted);
  font-size: 13.4px;
  opacity: 0.84;
}
.contact__glow {
  position: absolute;
  right: -110px;
  bottom: -140px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(122, 92, 242, 0.16) 0%, rgba(122, 92, 242, 0) 64%);
  pointer-events: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .hero__title { font-size: 72px; line-height: 1; letter-spacing: -3px; }
  .hero__art { width: 560px; height: 560px; }
  .orb { width: 440px; height: 440px; left: 60px; top: 60px; }
  .chip { width: 200px; height: 200px; font-size: 19px; letter-spacing: 2.4px; }
  .wordmark { font-size: 96px; line-height: 1; letter-spacing: -6px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .header__inner { padding: 18px 24px; }
  section { padding-left: 24px; padding-right: 24px; }
  .games, .manifesto, .faq, .contact { padding-left: 24px; padding-right: 24px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { width: 100%; max-width: 520px; height: 520px; margin: 0 auto; }
  .orb { left: 8%; top: 8%; }
  .hero__title { font-size: 56px; }
  .section-title { font-size: 44px; line-height: 1; letter-spacing: -1.6px; }
  .faq__grid { grid-template-columns: 1fr; }
  .faq__title-card p { font-size: 40px; line-height: 1; letter-spacing: -1.6px; padding: 24px 16px; min-height: 0; }
  .contact__top { grid-template-columns: 1fr; }
  .contact__title { font-size: 48px; line-height: 1; letter-spacing: -2px; }
  .wordmark { font-size: 64px; line-height: 1; letter-spacing: -3px; }
  .manifesto__inner { flex-wrap: wrap; }
  .manifesto__cell { flex: 1 1 calc(50% - 0px); border-radius: 14px; }
  .manifesto__inner > * + * { border-left: 0; }
  .manifesto__cell p { font-size: 36px; line-height: 1; letter-spacing: -1.4px; }
}

@media (max-width: 640px) {
  .nav { display: none; }
  .header__inner { padding: 14px 18px; min-height: 64px; }
  .brand__name { font-size: 16px; letter-spacing: 1.2px; }
  section { padding-left: 18px; padding-right: 18px; }
  .games, .manifesto, .faq, .contact { padding-left: 18px; padding-right: 18px; }
  .hero { padding-top: 24px; padding-bottom: 24px; }
  .hero__title { font-size: 42px; letter-spacing: -1.6px; }
  .hero__lede br { display: none; }
  .hero__actions .btn { min-width: 0; width: 100%; }
  .hero__art { height: 380px; }
  .orb { width: 320px; height: 320px; left: 5%; top: 6%; }
  .chip { width: 150px; height: 150px; font-size: 14px; letter-spacing: 1.8px; }
  .card { padding: 18px; }
  .card__art { padding: 60px 14px 14px; }
  .card__logo { width: 100px; height: 100px; }
  .cards { grid-template-columns: 1fr; }
  .manifesto__cell { flex: 1 1 100%; }
  .wordmark { font-size: 44px; letter-spacing: -2px; word-break:break-all; }
  .contact__title { font-size: 38px; }
  .section-lede br, .section-title br { display: none; }
  main { gap: 48px; }
}

/* ---------- Cookies popup ---------- */
.cookies {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  display: flex;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
  animation: cookies-in 0.4s ease both;
}
.cookies__card {
  pointer-events: auto;
  width: 100%;
  max-width: 886px;
  background: linear-gradient(180deg, var(--beige-3) 0%, var(--beige-4) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-block);
  box-shadow: var(--shadow-card-soft);
  padding: 48px 56px 44px;
}
.cookies__title {
  margin: 0 0 24px;
  font-weight: 700;
  font-size: 76px;
  line-height: 0.95;
  letter-spacing: -2.4px;
  color: var(--ink);
  text-transform: uppercase;
}
.cookies__text {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  max-width: 720px;
}
.cookies__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookies__btn {
  flex: 1 1 240px;
  min-width: 0;
}
.cookies.is-hidden {
  animation: cookies-out 0.35s ease both;
}
@keyframes cookies-in {
  from { transform: translateY(24px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes cookies-out {
  from { transform: translateY(0); opacity: 1; }
  to { transform: translateY(24px); opacity: 0; }
}
@media (max-width: 900px) {
  .cookies__card { padding: 36px 32px 32px; }
  .cookies__title { font-size: 56px; letter-spacing: -1.8px; }
}
@media (max-width: 640px) {
  .cookies { padding: 14px; }
  .cookies__card { padding: 28px 22px 24px; border-radius: 24px; }
  .cookies__title { font-size: 42px; letter-spacing: -1.4px; margin-bottom: 18px; }
  .cookies__title br { display: none; }
  .cookies__text { font-size: 14px; margin-bottom: 22px; }
  .cookies__actions { flex-direction: column; gap: 10px; }
  .cookies__btn { width: 100%; }
}
