*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  background-color: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
}

@media (max-width: 600px) {
  body {
    padding-bottom: calc(var(--bottom-bar-height) + 10px);
  }
}

a {
  color: var(--c-link);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  line-height: 1.2;
  color: #fff;
}

p {
  margin-bottom: 1em;
}

.app-container {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: var(--container-width);
}

.app-main {
  min-height: 60vh;
  padding-top: 20px;
  padding-bottom: 40px;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;

  font-family: var(--font-main);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;

  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn--primary {
  background: var(--c-primary);
  color: #fff;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--c-primary) 40%, transparent);
}

.btn--accent {
  background: var(--c-accent);
  color: #fff;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--c-accent) 40%, transparent);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--c-link);
  color: var(--c-link);
  box-shadow: none;
}

.btn--giant {
  padding: 18px 42px;
  font-size: 20px;
  border-radius: var(--radius);
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.btn:active {
  transform: translateY(0);
  filter: brightness(0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.pulse-anim {
  animation: pulse-shadow 2s infinite;
}

@keyframes pulse-shadow {
  0% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--c-primary) 70%, transparent);
  }

  70% {
    box-shadow: 0 0 0 15px transparent;
  }

  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 6px;

  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
}

.badge__icon {
  font-size: 1.2em;
  display: block;
}

.badge--hot {
  background: #ef4444;
  color: #fff;
}

.badge--new {
  background: #10b981;
  color: #fff;
}

.badge--top {
  background: #f59e0b;
  color: #000;
}

.badge--dark {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.star-rating {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  font-family: "Times New Roman", Times, serif;
  letter-spacing: 2px;
}

.star-rating__base {
  color: rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}

.star-rating__fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  white-space: nowrap;
  overflow: hidden;
  color: #fbbf24;
}

@media (max-width: 600px) {
  .btn--giant {
    width: 100%;
    padding: 16px;
    font-size: 18px;
  }
}

.app-header {
  background: var(--c-header);
  height: var(--nav-height);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.app-header__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.desktop-nav {
  display: none;
}

@media (min-width: 900px) {
  .app-header__inner {
    justify-content: space-between;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .header-actions {
    display: flex;
    gap: 12px;
  }
}

.bottom-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: rgba(255, 255, 255, 1);
  flex: 1;
  height: 100%;
}

.bottom-item .icon {
  font-size: 20px;
  margin-bottom: 4px;
}

.bottom-item.active,
.bottom-item:hover {
  color: #fff;
}

.bottom-item--play {
  position: relative;
}

.bottom-item--play .play-circle {
  width: 56px;
  height: 56px;
  background: var(--c-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  padding-top: 5px;
  margin-top: -30px;
  box-shadow: 0 0 15px var(--c-primary);
}

.stage-intro {
  position: relative;
  margin-bottom: 30px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  background: #000;
  aspect-ratio: 16/9;
}

.stage-intro__media,
.stage-intro__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stage-intro__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 30px 20px;
  text-align: center;
}

.stage-intro__content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 900px) {
  .stage-intro {
    aspect-ratio: 21/8;
  }
}

.floating-bonus {
  display: none;
}

@media (min-width: 900px) {
  .floating-bonus {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--c-header);
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 900;
    animation: slideUp 0.5s ease-out;
  }

  .floating-bonus__content {
    display: flex;
    flex-direction: column;
  }

  .floating-bonus__title {
    font-size: 12px;
    color: var(--c-link);
    text-transform: uppercase;
    font-weight: 700;
  }

  .floating-bonus__value {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
  }

  .floating-bonus__close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
    cursor: pointer;
    margin-left: 10px;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 24px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
}

th,
td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

th {
  background: rgba(255, 255, 255, 0.05);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.05em;
}

tr:last-child td {
  border-bottom: none;
}

tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.app-footer {
  background: #000;
  padding: 40px 0;
  font-size: 13px;
  color: #666;
  border-top: 1px solid #1e293b;
  margin-top: 40px;
}

.app-footer a {
  color: #888;
  text-decoration: underline;
}


.section-title {
  text-align: center;
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 30px;
  color: #fff;
}

.section-features .app-container {
  padding-bottom: 16px;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: background 0.2s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.faq-item[open] {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.faq-item__question {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__answer {
  padding: 0 20px 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 15px;
  animation: slideDown 0.3s ease-out;
}

.faq-item__answer p:last-child {
  margin-bottom: 0;
}

.faq-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-left: 10px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--c-link);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-icon::before {
  width: 14px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 14px;
}

details[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-card__icon {
  font-size: 32px;
  margin-bottom: 12px;
  line-height: 1;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.feature-card__title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #fff;
}

.feature-card__text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .feature-card {
    padding: 16px 10px;
  }
}

.footer-legal {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.4);
  text-align: justify;
}

.footer-legal__disclaimer p {
  margin-bottom: 12px;
}

.footer-legal__disclaimer strong {
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.footer-legal__provider {
  margin: 20px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal__badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.legal-badge {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 700;
  color: #fff;
  font-size: 12px;
}

.legal-text {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.5px;
}

.footer-legal__copyright {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 20px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.footer-legal__copyright a {
  color: var(--c-link);
  text-decoration: none;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
}

.footer-legal__copyright a:hover {
  border-bottom-style: solid;
  color: #fff;
}

@media (max-width: 600px) {
  .footer-legal {
    text-align: left;
    font-size: 10px;
  }

  .footer-legal__badges {
    justify-content: flex-start;
  }

  .footer-legal__copyright {
    text-align: left;
  }
}

.header-v1 {
  background: var(--c-header);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.app-logo__text {
  font-weight: 900;
  font-size: 20px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.nav-list {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-right: 24px;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.nav-link:hover {
  color: #fff;
}

.mobile-header-cta {
  display: block;
}

@media (min-width: 900px) {
  .mobile-header-cta {
    display: none;
  }
}

@media (max-width: 899px) {
  .desktop-nav {
    display: none;
  }
}


.header-v2 {
  background: rgba(11, 18, 32, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-v2 .app-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
}

.header-col {
  display: flex;
  align-items: center;
}

.header-col--center {
  justify-content: center;
}

.header-col--right {
  justify-content: flex-end;
}

.header-v2 .app-logo img {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.header-v2 .app-logo:hover img {
  transform: scale(1.15);
}

@media (max-width: 600px) {
  .header-left-spacer {
    width: 36px;
    height: 36px;
    margin-left: 10px;
    margin-right: auto;
  }

  .header-v2 .app-header__inner {
    padding: 0 10px;
  }

  .header-v2 .btn {
    padding: 8px 12px;
    font-size: 12px;
  }
}

.promo-overlay {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
  background: #000;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.promo-overlay__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.promo-overlay__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-overlay__fallback {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, var(--c-header), var(--c-bg));
}

.promo-overlay__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.3) 50%,
      rgba(0, 0, 0, 0.95) 100%);
  z-index: 1;
}

.promo-overlay__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 24px;
}

.promo-overlay__badge {
  margin-bottom: 12px;
}

.promo-overlay__title {
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.promo-overlay__sub {
  font-size: clamp(14px, 4vw, 18px);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  max-width: 600px;
}

.promo-overlay__actions {
  width: 100%;
  max-width: 320px;
  margin-bottom: 16px;
}

.promo-overlay__actions .btn {
  width: 100%;
}

.promo-overlay__trust {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (min-width: 768px) {
  .promo-overlay {
    aspect-ratio: 21 / 9;
    max-height: 600px;
  }

  .promo-overlay__content {
    padding-bottom: 60px;
  }
}

.promo-split {
  padding: 30px 0 50px;
  overflow: hidden;
}

.promo-split__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.promo-split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.promo-split__title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin: 16px 0;
  background: linear-gradient(to right, #fff 20%, rgba(255, 255, 255, 0.5) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.promo-split__sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
  max-width: 500px;
}

.promo-split__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.promo-split__actions .btn {
  width: 100%;
  max-width: 320px;
}

.promo-split__note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  padding-left: 10px;
}

.promo-split__media {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.media-wrapper {
  position: relative;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
  z-index: 1;
}

.media-wrapper img {
  border-radius: var(--radius);
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.media-wrapper::before {
  content: "";
  position: absolute;
  inset: 10px;
  background: var(--c-primary);
  filter: blur(40px);
  opacity: 0.4;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.media-wrapper:hover {
  transform: translateY(-5px) scale(1.02);
}

.media-wrapper:hover::before {
  opacity: 0.6;
}

@media (min-width: 900px) {
  .promo-split {
    padding: 60px 0 80px;
  }

  .promo-split__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .promo-split__title {
    font-size: 64px;
  }

  .promo-split__media {
    justify-content: flex-end;
  }

  .media-wrapper img {
    max-height: 500px;
  }
}

.prose {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.75;
  color: var(--c-text);
}

.prose h2 {
  color: #fff;
  font-weight: 800;
  font-size: 24px;
  border-left: 4px solid var(--c-primary);
  padding-left: 16px;
}

.prose h3 {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
}

.prose ul,
.prose ol {
  padding-left: 20px;
  margin-bottom: 1.5em;
}

.prose li {
  margin-bottom: 0.5em;
  padding-left: 6px;
}

.prose li::marker {
  color: var(--c-primary);
}

.prose a {
  text-decoration-color: rgba(255, 255, 255, 0.3);
  font-weight: 600;
}

.prose a:hover {
  color: #fff;
}

.prose blockquote {
  border-left: 4px solid var(--c-accent);
  background: rgba(255, 255, 255, 0.05);
  margin: 2em 0;
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
}

.prose img {
  margin: 2em auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-height: 400px;
  object-fit: contain;
  width: auto;
  max-width: 100%;
}

.prose strong,
.prose b {
  color: #fff;
  font-weight: 700;
}

.prose table {
  margin: 2em 0;
  font-size: 14px;
}

.section-reviews {
  background: rgba(0, 0, 0, 0.2);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.review-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
}

.review-author {
  font-weight: 700;
  color: #fff;
  font-size: 14px;
}

.review-text {
  font-style: italic;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.5;
}

.app-logo img {
  max-height: 70px;
  width: auto;
  display: block;
  transition: transform 0.3s;
}

.app-logo img:hover {
  transform: scale(1.05);
}

h2,
h3 {
  border-left: none !important;
  padding-left: 0 !important;
  margin-top: 1.5em;
  margin-bottom: 0.8em;
  color: var(--c-text);
}

@keyframes pulse-btn {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.btn-pulse,
.bottom-item--play .play-circle {
  animation: pulse-btn 2s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }

  20% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  animation: shine 3s infinite;
}

.bottom-item svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  display: block;
  margin-bottom: 4px;
}

.play-circle svg {
  width: 28px;
  height: 28px;
  opacity: 0.4;
  transform: translateX(2px);
}

.sticky-icon svg {
  width: 32px;
  height: 32px;
}

.sticky-bonus {
  position: fixed;
  z-index: 9999;
  left: 60%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  pointer-events: none;
  width: 70%;
  max-width: 350px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sticky-bonus.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

@media (min-width: 768px) {
  .sticky-bonus {
    right: 20px;
  }
}

.sticky-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
}

.sticky-close:hover {
  color: #fff;
}

.sticky-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sticky-info {
  font-size: 16px;
}

@media (min-width: 900px) {
  .sticky-bonus {
    left: auto;
    top: auto;
    right: 30px;
    bottom: 100px;
    width: 320px;
    transform: translateY(20px) scale(0.95);
  }

  .sticky-bonus.visible {
    transform: translateY(0) scale(1);
  }
}

@keyframes fire-flicker {
  0% {
    transform: scale(1) rotate(0deg);
    filter: drop-shadow(0 0 2px rgba(255, 69, 0, 0.5));
  }

  25% {
    transform: scale(1.1) rotate(-2deg);
    filter: drop-shadow(0 0 5px rgba(255, 165, 0, 0.6));
  }

  50% {
    transform: scale(0.95) rotate(1deg);
    filter: drop-shadow(0 0 2px rgba(255, 69, 0, 0.5));
  }

  75% {
    transform: scale(1.05) rotate(-1deg);
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.6));
  }

  100% {
    transform: scale(1) rotate(0deg);
    filter: drop-shadow(0 0 2px rgba(255, 69, 0, 0.5));
  }
}

.sticky-icon {
  display: inline-block;
  transform-origin: center bottom;
  animation: fire-flicker 1.5s infinite ease-in-out;
}

.header-gift-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, filter 0.2s ease;
  margin-left: auto;
  margin-right: 10px;
  color: var(--c-primary);
}

.header-gift-btn img {
  width: 34px;
  height: 36px;
  display: block;
}

@keyframes gift-shimmer-glow {
  0% {
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0)) brightness(1);
  }

  50% {
    filter: drop-shadow(0 0 10px var(--c-primary)) brightness(1.3);
  }

  100% {
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0)) brightness(1);
  }
}

@keyframes wiggle-gift {
  0% {
    transform: rotate(0deg);
  }

  5% {
    transform: rotate(-12deg) translateX(-1px);
  }

  10% {
    transform: rotate(12deg) translateX(1px);
  }

  15% {
    transform: rotate(-8deg) translateX(-1px);
  }

  20% {
    transform: rotate(8deg) translateX(1px);
  }

  25% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.icon-gift {
  display: inline-block;
  transform-origin: bottom center;
  width: 36px;
  height: 36px;
  animation: wiggle-gift 2.5s infinite ease-in-out, gift-shimmer-glow 2s infinite ease-in-out;
}

.header-gift-btn:hover .icon-gift {
  animation-duration: 1s;
  filter: drop-shadow(0 0 15px var(--c-primary)) brightness(1.5);
}

.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding-inline: 10px;
  background: #0f172a;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  z-index: 999;
  padding-bottom: env(safe-area-inset-bottom);
}

.bottom-btn-side {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-app-demo);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  height: 48px;
  min-width: 110px;
  position: relative;
  transition: all 0.2s ease;
}

.btn-wrap-left {
  border-radius: 30px 0 0 30px;
  border-right: none;
  margin-right: -10px;
  padding-right: 25px;
  padding-left: 20px;
  -webkit-mask: radial-gradient(circle 42px at calc(100% + 16px) +8px, transparent 42px, black 43px);
  mask: radial-gradient(circle 42px at calc(100% + 16px) +8px, transparent 42px, black 43px);
}

.btn-wrap-right {
  border-radius: 0 30px 30px 0;
  border-left: none;
  margin-left: -10px;
  padding-left: 25px;
  padding-right: 20px;
  -webkit-mask: radial-gradient(circle 42px at -14px +8px, transparent 42px, black 43px);
  mask: radial-gradient(circle 42px at -14px +8px, transparent 42px, black 43px);
}

.bottom-btn-side:active {
  transform: scale(0.96);
  background: rgba(255, 255, 255, 0.15);
}

.bottom-item--play {
  position: relative;
  z-index: 10;
  flex: 0 0 auto;
}

.bottom-item--play .play-circle {
  width: 78px;
  height: 78px;
  background: var(--c-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -45px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);

  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bottom-item--play .play-circle svg {
  width: 36px;
  height: 36px;
  fill: #fff;
  transform: translateX(3px);
}

.bottom-item--play:active .play-circle {
  transform: scale(0.95);
}

@media (min-width: 900px) {
  .mobile-bottom-bar {
    display: none;
  }
}

.section-banner {
  position: relative;
  z-index: 1;
}

.banner-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  background-color: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  transform: translateZ(0);
}

.banner-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.banner-card:hover .banner-bg {
  transform: scale(1.08);
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 90%);
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  padding: 20px;
  backdrop-filter: blur(0px);
  transition: backdrop-filter 0.3s ease;
}

.banner-card:hover .banner-overlay {
  backdrop-filter: blur(3px);
}

.banner-play-btn {
  padding: 18px 45px;
  border-radius: 60px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: var(--c-primary);
  color: #fff;
  text-decoration: none;
  position: relative;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.1), 0 10px 40px rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.banner-btn-text {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
}

.banner-play-btn svg {
  width: 32px;
  height: 32px;
  fill: #fff;
  transition: transform 0.3s ease;
}

.banner-play-btn:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.2), 0 20px 50px rgba(0, 0, 0, 0.6);
  background: #fff;
  color: var(--c-primary);
}

.banner-play-btn:hover svg {
  fill: var(--c-primary);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .banner-card {
    aspect-ratio: 4/3;
  }

  .banner-play-btn {
    padding: 14px 30px;
    margin-top: 40px;
  }

  .banner-btn-text {
    font-size: 16px;
  }

  .banner-play-btn svg {
    width: 24px;
    height: 24px;
  }
}

@media (min-width: 900px) {
  .banner-card {
    aspect-ratio: 21/9;
    max-height: 600px;
  }
}

main>section {
  margin-top: 20px;
  position: relative;
  border-radius: 20px;
}

main>section:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.prose h2,
.section-title {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  color: #fff;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), var(--c-header);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  font-size: 15px;
}

.prose td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
}

.prose tr:last-child td {
  border-bottom: none;
}

.prose td:first-child {
  font-weight: 600;
  color: #fff;
  width: 40%;
  background: rgba(255, 255, 255, 0.02);
}

.prose tr:hover td {
  background: rgba(255, 255, 255, 0.05);
}

.prose p {
  padding: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: linear-gradient(145deg, #1e293b, #0f172a);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
  transform: translateY(-7px);
  border-color: var(--c-primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-card__icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-card__icon {
  transform: scale(1.2) rotate(5deg);
}

.feature-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.feature-card__text {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
}

.faq-item {
  background: #162032;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 10px;
  border-radius: 8px;
  transition: all 0.3s;
}

.faq-item[open] {
  border-color: var(--c-primary);
  background: #1e293b;
}

.faq-item__question {
  padding: 18px 24px;
  font-weight: 600;
  color: #e2e8f0;
  font-size: 16px;
}

.faq-item__question:hover {
  color: var(--c-primary);
}

.faq-item__answer {
  padding: 0 24px 24px;
  color: #94a3b8;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
}

.prose img {
  border-radius: 12px;
  border: 4px solid rgba(255, 255, 255, 0.05);
  margin: 40px auto;
  display: block;
}

.section-toc {
  margin-top: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: transparent !important;
  border: 0 !important;
}

.toc-container {
  width: 100%;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

details {
  transition: all 0.3s ease;
}

summary {
  list-style: none;
  padding: 5px 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.02);
  transition: background 0.2s;
}

summary::-webkit-details-marker {
  display: none;
}

summary:hover {
  background: rgba(255, 255, 255, 0.05);
}

.toc-title {
  font-weight: 700;
  font-size: small;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}

.toc-icon {
  font-size: 10px;
  transition: transform 0.3s;
  color: var(--c-primary);
}

details[open] .toc-icon {
  transform: rotate(180deg);
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.toc-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.toc-list li:last-child {
  border-bottom: none;
}

.toc-list a {
  display: block;
  padding: 12px 20px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}

.toc-list a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--c-primary);
  padding-left: 25px;
}

.section-steps {
  border: 0 !important;
  background-color: transparent !important;
}

.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  counter-reset: step-counter;
}

.step-card {
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateX(5px);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
}

.step-number::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--c-primary);
  color: #000;
  font-weight: 800;
  font-size: 24px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.step-content h3 {
  margin: 0 0 10px 0;
  font-size: 18px;
  color: #fff;
  border: none;
  padding: 0;
}

.step-content p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

@media (max-width: 600px) {
  .step-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-toc {
    padding: 0;
    margin-top: 30px;
    display: flex;
    justify-content: center;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(150%);

  background: #1e293b;
  color: #fff;
  padding: 12px 30px 12px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  z-index: 2147483647;

  display: flex;
  align-items: center;
  justify-content: space-around;

  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  width: fit-content;
  max-width: 90%;
}

.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
}

.cookie-content-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 30px;
}

.cookie-text {
  font-size: 13px;
  line-height: 1.4;
  color: #e2e8f0;
}

.cookie-text a {
  color: var(--c-accent, #4ade80);
  text-decoration: underline;
  white-space: nowrap;
}

.cookie-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--c-accent, #e6a800);
}

.cookie-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
}

.btn-cookie-accept {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  height: fit-content;
}

.btn-cookie-accept:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.cookie-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: color 0.2s;
}

.cookie-close:hover {
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-banner {
    bottom: 115px;
    flex-direction: column;
    align-items: stretch;
    width: 90%;
  }

  .cookie-content-wrapper {
    padding-right: 0;
  }

  .btn-cookie-accept {
    width: 104%;
    text-align: center;
    margin-top: 5px;
  }

  .cookie-close {
    top: 10px;
    right: 10px;
  }
}

.error-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.error-container {
  max-width: 600px;
  margin: 0 auto;
}

.error-title {
  font-size: 120px;
  line-height: 1;
  font-weight: 900;
  margin: 0;
  color: var(--c-primary, #dbd400);
  text-shadow: 0 0 20px rgba(219, 212, 0, 0.3);
}

.error-sub {
  font-size: 32px;
  margin: 10px 0 20px;
  color: #fff;
}

.error-text {
  font-size: 18px;
  color: #cbd5e1;
  margin-bottom: 40px;
  line-height: 1.6;
}

.prose table {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-collapse: collapse;
}

.prose table::-webkit-scrollbar {
  height: 6px;
}

.prose table::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.prose table::-webkit-scrollbar-thumb {
  background: var(--c-primary);
  border-radius: 4px;
}

.prose td,
.prose th {
  min-width: 120px;
  white-space: normal;
}
