@font-face {
  font-family: "PlaNunito";
  src: url("assets/typography/nunito-sans-variable-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
}

@font-face {
  font-family: "PlaBaloo";
  src: url("assets/typography/baloo2-700-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --pla-bg-1: #25001f;
  --pla-bg-2: #430034;
  --pla-bg-3: #6a0050;
  --pla-panel: #3c0030;
  --pla-panel-soft: #4a0039;
  --pla-panel-muted: #2f0026;
  --pla-border: #8e3d78;
  --pla-text: #ffeefb;
  --pla-text-soft: #f3cbe6;
  --pla-accent: #ff3ab6;
  --pla-accent-2: #ff6acb;
  --pla-accent-3: #ffc4e9;
  --pla-success: #7dffbf;
  --pla-danger: #ff9ec7;
  --pla-content-pad: clamp(1rem, 2vw, 1.5rem);
  --pla-block-gap: clamp(1rem, 1.8vw, 1.35rem);
  --pla-radius-lg: 20px;
  --pla-radius-md: 14px;
  --pla-radius-sm: 10px;
  --pla-shadow: 0 12px 28px rgba(11, 0, 9, 0.36);
}

* {
  box-sizing: border-box;
}

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

html {
  background: radial-gradient(circle at 15% 15%, var(--pla-bg-3), var(--pla-bg-1) 55%);
  scroll-behavior: smooth;
}

body {
  font-family: "PlaNunito", "Segoe UI", sans-serif;
  color: var(--pla-text);
  background:
    radial-gradient(circle at 85% 0, #7c005f66 0%, transparent 34%),
    radial-gradient(circle at 0 80%, #9f1f7f52 0%, transparent 42%),
    linear-gradient(145deg, #20001b, #4f003c 60%, #260021);
  min-height: 100vh;
  line-height: 1.6;
}

body.pla-cookie-open .pla-main-wrap {
  padding-bottom: 108px;
}

a {
  color: var(--pla-accent-3);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.pla-page-shell {
  min-height: 100vh;
}

.pla-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 290px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.1rem 1rem 1.2rem;
  background: linear-gradient(180deg, #300026, #260020 45%, #22001b);
  border-right: 1px solid #7f3a6d;
  box-shadow: 14px 0 28px #0c000b5a;
  z-index: 20;
}

.pla-sidebar-logo {
  display: block;
  margin: 0 auto;
  width: min(100%, 208px);
}

.pla-sidebar-logo img {
  width: 100%;
  height: auto;
}

.pla-sidebar-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.pla-sidebar-nav {
  overflow-y: auto;
  scrollbar-width: thin;
  padding-right: 0.2rem;
}

.pla-sidebar-nav a {
  display: block;
  padding: 0.5rem 0.7rem;
  margin-bottom: 0.22rem;
  border-radius: 9px;
  font-weight: 700;
  color: #ffdeef;
  background: #46003785;
  border: 1px solid #7a3a67;
  font-size: 0.93rem;
}

.pla-sidebar-nav a:hover {
  text-decoration: none;
  background: #5d004a;
}

.pla-sidebar-note {
  margin-top: auto;
  font-size: 0.78rem;
  color: #e8b7d7;
  border-top: 1px solid #6d3059;
  padding-top: 0.75rem;
}

.pla-main-wrap {
  margin-left: 290px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pla-mobile-bar {
  display: none;
}

.pla-main {
  width: min(100%, 1300px);
  padding: var(--pla-content-pad);
  margin: 0 auto;
  display: block;
}

.pla-main > .pla-section {
  margin: var(--pla-block-gap) 0;
}

.pla-main > .pla-section:first-child {
  margin-top: 0;
}

.pla-main h1,
.pla-main h2,
.pla-main h3 {
  font-family: "PlaBaloo", "PlaNunito", sans-serif;
  line-height: 1.22;
  margin: 0 0 0.55rem;
  letter-spacing: 0.2px;
}

.pla-main h1 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
}

.pla-main h2 {
  font-size: clamp(1.38rem, 2.2vw, 1.95rem);
}

.pla-main h3 {
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
}

.pla-main p,
.pla-main li,
.pla-main td,
.pla-main th,
.pla-main summary,
.pla-main label {
  font-size: 1rem;
}

.pla-main p {
  margin: 0 0 0.8rem;
}

.pla-main :is(
  .pla-table-wrap,
  .pla-dual-tables,
  .pla-screens,
  .pla-features-grid,
  .pla-slots-grid,
  .pla-pros-cons,
  .pla-reviews-shell
) + p {
  margin-top: 1rem;
}

.pla-main ul,
.pla-main ol {
  margin: 0.35rem 0 0.95rem;
  padding-left: 1.1rem;
}

.pla-main li {
  margin-bottom: 0.42rem;
}

.pla-card {
  background: linear-gradient(165deg, #4a0039cc, #35002cdb);
  border: 1px solid var(--pla-border);
  border-radius: var(--pla-radius-lg);
  box-shadow: var(--pla-shadow);
}

.pla-hero {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.pla-hero picture,
.pla-hero img {
  width: 100%;
  height: 100%;
}

.pla-hero picture {
  display: block;
  height: 100%;
}

.pla-hero img {
  object-fit: cover;
}

.pla-hero-overlay {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(92%, 580px);
  padding: clamp(1rem, 2.5vw, 1.5rem);
  background: linear-gradient(150deg, #320027eb, #460036e8);
  border: 1px solid #c36ea8;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 16px 30px rgba(17, 0, 14, 0.4);
}

.pla-hero-kicker {
  margin-bottom: 0.45rem;
  color: var(--pla-accent-3);
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.pla-hero-copy {
  margin-bottom: 1rem;
  color: #ffdff2;
}

.pla-btn,
.pla-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  min-height: 50px;
  min-width: 220px;
  padding: 0.6rem 1.15rem;
  font-weight: 800;
  font-size: 0.98rem;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.pla-btn {
  background: linear-gradient(120deg, var(--pla-accent), #ff65c8);
  color: #280022;
  box-shadow: 0 8px 16px #19001370;
}

.pla-btn:hover,
.pla-btn:focus-visible {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 18px #1900138f;
}

.pla-btn-secondary {
  background: #ffffff12;
  border-color: #f8aedd;
  color: #ffeefb;
}

.pla-btn-secondary:hover,
.pla-btn-secondary:focus-visible {
  text-decoration: none;
  background: #ffffff1e;
}

.pla-accordion-box {
  border-radius: var(--pla-radius-md);
  background: #3d0030cb;
  border: 1px solid #9c4d82;
  padding: 0.8rem 0.95rem;
}

.pla-accordion-toggle {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--pla-accent-3);
  font: inherit;
  font-weight: 800;
  text-align: left;
  padding: 0;
  cursor: pointer;
}

.pla-accordion-toggle[aria-expanded="true"] {
  color: #ffdff5;
}

.pla-accordion-panel[hidden] {
  display: none;
}

.pla-accordion-links {
  margin-top: 0.72rem;
  display: grid;
  gap: 0.42rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.pla-accordion-links a {
  display: block;
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  border: 1px solid #8d4675;
  background: #5d00500f;
  color: #ffe5f8;
  font-size: 0.94rem;
}

.pla-table-wrap {
  overflow-x: auto;
  border-radius: var(--pla-radius-md);
  border: 1px solid #894071;
  background: #320029;
}

.pla-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.pla-table th,
.pla-table td {
  text-align: left;
  padding: 0.52rem 0.58rem;
  border-bottom: 1px solid #71315e;
  vertical-align: top;
  word-break: normal;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.pla-table th {
  color: #ffd7f2;
  font-weight: 800;
}

.pla-table tbody th {
  width: 41%;
}

.pla-table tr:last-child td,
.pla-table tr:last-child th {
  border-bottom: none;
}

.pla-dual-tables {
  display: grid;
  gap: 0.92rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pla-dual-tables .pla-table {
  table-layout: fixed;
}

.pla-dual-tables .pla-table caption {
  padding: 0.5rem 0.58rem 0.4rem;
  font-weight: 800;
  color: #ffe3f6;
}

.pla-dual-tables .pla-table th:nth-child(1),
.pla-dual-tables .pla-table td:nth-child(1) {
  width: 44%;
}

.pla-dual-tables .pla-table th:nth-child(2),
.pla-dual-tables .pla-table td:nth-child(2) {
  width: 18%;
}

.pla-dual-tables .pla-table th:nth-child(3),
.pla-dual-tables .pla-table td:nth-child(3) {
  width: 38%;
}

.pla-screens {
  display: grid;
  gap: 1rem;
}

.pla-screens figure {
  margin: 0;
  padding: 0.72rem;
  border-radius: var(--pla-radius-md);
  background: #35002bc2;
  border: 1px solid #8f4a78;
  display: grid;
  justify-items: center;
}

.pla-screens img {
  width: min(100%, 640px);
  height: auto;
  border-radius: 10px;
}

.pla-screens figcaption {
  margin-top: 0.55rem;
  font-size: 0.89rem;
  color: #ffd4ef;
  text-align: center;
}

.pla-cta-banner {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.pla-cta-banner picture,
.pla-cta-banner img {
  width: 100%;
  height: 100%;
}

.pla-cta-banner picture {
  display: block;
  height: 100%;
}

.pla-cta-banner img {
  object-fit: cover;
}

.pla-cta-banner-content {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(92%, 520px);
  padding: clamp(1rem, 2.4vw, 1.4rem);
  border-radius: 14px;
  border: 1px solid #d78abd;
  background: #34002adf;
  text-align: center;
  box-shadow: 0 12px 24px #15001194;
}

.pla-cta-banner-content p {
  margin: 0 0 0.85rem;
}

.pla-cta-banner-content .pla-btn {
  width: min(100%, 250px);
  margin-bottom: 0.15rem;
}

.pla-reviews-shell {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 0.72rem;
  align-items: center;
}

.pla-review-arrow {
  width: 42px;
  height: 86px;
  border-radius: 12px;
  border: 1px solid #f09ad0;
  background: linear-gradient(180deg, #ff5fc2, #d934a0);
  color: #2c0023;
  font-size: 1.45rem;
  font-weight: 900;
  cursor: pointer;
  padding: 0;
  align-self: center;
}

.pla-review-arrow:hover,
.pla-review-arrow:focus-visible {
  filter: brightness(1.04);
}

.pla-review-viewport {
  overflow: hidden;
  border-radius: var(--pla-radius-md);
}

.pla-review-track {
  display: flex;
  transition: transform 0.33s ease;
}

.pla-review-card {
  flex: 0 0 100%;
  padding: 1rem;
  border-radius: var(--pla-radius-md);
  border: 1px solid #8f4d79;
  background: linear-gradient(165deg, #430034dc, #35002bcc);
  min-width: 0;
}

.pla-review-head {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.56rem;
  flex-wrap: wrap;
}

.pla-review-name {
  font-weight: 800;
  overflow-wrap: anywhere;
}

.pla-review-meta {
  color: #ffc9ea;
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.pla-review-text {
  margin: 0;
  overflow-wrap: anywhere;
}

.pla-pros-cons {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pla-pros,
.pla-cons {
  border-radius: var(--pla-radius-md);
  padding: 0.85rem;
  border: 1px solid #8f4d79;
  background: #3c002fbc;
}

.pla-pros h3,
.pla-cons h3 {
  margin-bottom: 0.4rem;
}

.pla-pros h3 {
  color: var(--pla-success);
}

.pla-cons h3 {
  color: var(--pla-danger);
}

#zru-bonus-calculator .pla-calculator-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.72rem;
}

#zru-bonus-calculator .pla-calc-field {
  display: grid;
  gap: 0.32rem;
}

#zru-bonus-calculator label {
  font-size: 0.92rem;
  color: #ffd4ef;
  font-weight: 700;
}

#zru-bonus-calculator input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #ad5f91;
  background: #22001b;
  color: var(--pla-text);
  min-height: 44px;
  padding: 0.6rem 0.65rem;
  font: inherit;
}

#zru-bonus-calculator .pla-calculator-result {
  margin-top: 1.18rem;
  padding: 0.88rem;
  border-radius: 12px;
  border: 1px solid #cb80b0;
  background: #4d003f;
}

#zru-bonus-calculator .pla-calculator-result strong {
  display: inline-block;
  margin-left: 0.24rem;
  color: #fff6ff;
}

.pla-features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.pla-features-grid article {
  border-radius: 12px;
  border: 1px solid #8f4d79;
  background: #3b002ebd;
  padding: 0.85rem;
}

.pla-slots-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.7rem;
}

.pla-slot-card {
  position: relative;
  border-radius: 11px;
  overflow: hidden;
  border: 1px solid #8d4575;
  background: #2f0026;
}

.pla-slot-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.pla-slot-overlay {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.4rem;
  width: 90%;
  display: grid;
  justify-items: center;
}

.pla-slot-overlay .pla-btn {
  min-height: 42px;
  min-width: 132px;
  font-size: 0.84rem;
  padding: 0.5rem 0.8rem;
}

.pla-slot-title {
  margin: 0;
  padding: 0.6rem 0.5rem;
  text-align: center;
  font-size: 0.88rem;
  color: #ffdef2;
}

.pla-faq details {
  border: 1px solid #894371;
  border-radius: 12px;
  background: #38002cc0;
  padding: 0.7rem 0.86rem;
  margin-bottom: 0.52rem;
}

.pla-faq summary {
  cursor: pointer;
  font-weight: 800;
  color: #ffe1f5;
}

.pla-faq p {
  margin-top: 0.55rem;
  margin-bottom: 0.2rem;
}

.pla-footer {
  border-top: 1px solid #7b3b68;
  background: #260020;
  padding: 0.92rem var(--pla-content-pad) 1rem;
}

.pla-footer-wrap {
  width: min(100%, 1300px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.pla-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.pla-footer-nav a {
  color: #ffd7f1;
  font-size: 0.9rem;
}

.pla-footer small {
  color: #f2bcde;
  font-size: 0.82rem;
}

.pla-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: linear-gradient(145deg, #320027f5, #49003af5);
  border-top: 1px solid #9f5f88;
  box-shadow: 0 -10px 24px #14001070;
}

.pla-cookie-inner {
  width: min(100%, 1300px);
  margin: 0 auto;
  padding: 0.78rem var(--pla-content-pad);
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.pla-cookie-inner p {
  margin: 0;
  color: #ffe4f6;
  font-size: 0.91rem;
}

.pla-cookie-btn {
  min-height: 42px;
  min-width: 148px;
  border-radius: 10px;
  border: 1px solid #ffd1ec;
  background: linear-gradient(120deg, #ff48b8, #ff6fcd);
  color: #26001f;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  padding: 0.46rem 0.8rem;
}

.pla-cookie-btn:hover,
.pla-cookie-btn:focus-visible {
  filter: brightness(1.05);
}

.pla-legal-main {
  width: min(100%, 1080px);
}

.pla-legal-main .pla-card {
  padding: 1rem;
}

@media (max-width: 1200px) {
  .pla-sidebar {
    width: 250px;
  }

  .pla-main-wrap {
    margin-left: 250px;
  }

  .pla-slots-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  body.pla-cookie-open .pla-main-wrap {
    padding-bottom: 116px;
  }

  .pla-sidebar {
    display: none;
  }

  .pla-main-wrap {
    margin-left: 0;
    padding-top: 0;
  }

  .pla-mobile-bar {
    position: sticky;
    top: 0;
    z-index: 32;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.56rem;
    justify-content: center;
    padding: 0.58rem 0.72rem 0.72rem;
    border-bottom: 1px solid #85446f;
    background: linear-gradient(145deg, #35002a, #4e003d);
  }

  .pla-mobile-logo {
    display: block;
    width: min(100%, 186px);
    margin-inline: auto;
  }

  .pla-mobile-logo img {
    width: 100%;
    height: auto;
  }

  .pla-mobile-actions {
    width: min(100%, 430px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .pla-mobile-actions .pla-btn,
  .pla-mobile-actions .pla-btn-secondary {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    font-size: 0.86rem;
    padding: 0.42rem 0.6rem;
  }

  .pla-dual-tables,
  .pla-pros-cons,
  .pla-features-grid,
  #zru-bonus-calculator .pla-calculator-grid {
    grid-template-columns: 1fr;
  }

  .pla-main p,
  .pla-main li,
  .pla-main td,
  .pla-main th,
  .pla-main summary,
  .pla-main label {
    font-size: 0.96rem;
  }

  .pla-table {
    font-size: 0.86rem;
  }

  .pla-table th,
  .pla-table td {
    padding: 0.46rem 0.5rem;
  }

  .pla-dual-tables .pla-table th:nth-child(1),
  .pla-dual-tables .pla-table td:nth-child(1) {
    width: 42%;
  }

  .pla-dual-tables .pla-table th:nth-child(2),
  .pla-dual-tables .pla-table td:nth-child(2) {
    width: 20%;
  }

  .pla-dual-tables .pla-table th:nth-child(3),
  .pla-dual-tables .pla-table td:nth-child(3) {
    width: 38%;
  }

  .pla-reviews-shell {
    grid-template-columns: 28px minmax(0, 1fr) 28px;
    gap: 0.48rem;
  }

  .pla-review-arrow {
    width: 28px;
    height: 64px;
    border-radius: 8px;
    font-size: 1rem;
  }

  .pla-slots-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    max-width: 390px;
    margin-inline: auto;
  }

  .pla-slots-grid .pla-slot-card {
    max-width: 190px;
    margin-inline: auto;
  }

  .pla-slot-overlay .pla-btn {
    min-width: 100px;
    min-height: 36px;
    font-size: 0.77rem;
  }

  .pla-hero-overlay,
  .pla-cta-banner-content {
    width: min(94%, 430px);
    padding: 0.94rem;
  }

  .pla-hero {
    min-height: 430px;
  }

  .pla-cta-banner {
    min-height: 290px;
  }

  .pla-cta-banner-content .pla-btn {
    min-width: 208px;
    min-height: 48px;
  }

  .pla-footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .pla-main {
    padding: 0.96rem;
  }

  .pla-slots-grid {
    max-width: 360px;
  }

  .pla-slots-grid .pla-slot-card {
    max-width: 176px;
  }

  .pla-mobile-actions .pla-btn,
  .pla-mobile-actions .pla-btn-secondary {
    min-width: 0;
  }

  .pla-btn,
  .pla-btn-secondary {
    min-width: 204px;
  }

  .pla-cookie-inner {
    align-items: flex-start;
  }
}
