:root {
  --color-primary: #1c903e;
  --color-primary-dark: #0f3a1c;
  --color-header: #feb109;
  --color-header-text: #17331f;
  --color-text: #ffffff;
  --color-gold: #f2a900;
  --color-gold-light: #ffcf4d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  color: var(--color-text);
  background: linear-gradient(160deg, var(--color-primary) 0%, #146b2d 55%, var(--color-primary-dark) 100%);
  min-height: 100vh;
}

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

a {
  color: inherit;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.7rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn-login {
  background: transparent;
  border: 2px solid rgba(23, 51, 31, 0.5);
  color: var(--color-header-text);
}

.btn-login:hover {
  background: var(--color-header-text);
  color: #ffffff;
  border-color: var(--color-header-text);
  transform: translateY(-2px);
}

.btn-play {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  color: #143018;
  border: 2px solid transparent;
  box-shadow: 0 4px 14px rgba(242, 169, 0, 0.45);
}

.btn-play:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 22px rgba(242, 169, 0, 0.6);
  filter: brightness(1.06);
}

.btn-pulse {
  animation: btn-pulse 2s infinite;
}

@keyframes btn-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(242, 169, 0, 0.6);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(242, 169, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(242, 169, 0, 0);
  }
}

@keyframes btn-pulse-light {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.75);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.btn-hero {
  padding: 1rem 2.4rem;
  font-size: 1rem;
  align-self: flex-start;
}

.btn-inline {
  margin-top: 0.6rem;
  padding: 0.85rem 2.2rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-header);
  border-bottom: 3px solid #17331f;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.32);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.8rem 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
}

.logo {
  height: 64px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
}

.site-header .btn-play {
  background: linear-gradient(135deg, #22a349, #16642c);
  color: #ffffff;
  box-shadow: none;
}

.site-header .btn-play:hover {
  box-shadow: none;
}

.site-header .btn-play.btn-pulse {
  animation: btn-pulse-light 2s infinite;
}

.hero-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.5rem 4vw 0;
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 460px;
  display: flex;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(8, 36, 18, 0.92) 0%,
    rgba(8, 36, 18, 0.6) 42%,
    rgba(8, 36, 18, 0) 72%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 540px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.01em;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
}

.hero-bonus {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  background: rgba(0, 0, 0, 0.3);
  border-left: 4px solid var(--color-gold);
  padding: 0.8rem 1.3rem;
  border-radius: 0 10px 10px 0;
}

.hero-bonus__amount {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-gold-light);
  line-height: 1.1;
}

.hero-bonus__text {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.slots {
  padding: 4.5rem 4vw 3rem;
  max-width: 1280px;
  margin: 0 auto;
}

.slots-heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2.6rem;
}

.slots-heading__title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.slots-heading__subtitle {
  font-size: 0.98rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.4rem;
}

@media (max-width: 1024px) {
  .slots-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 780px) {
  .slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.slot-card {
  position: relative;
  aspect-ratio: 340 / 446;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.slot-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-gold);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.45);
}

.slot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.35s ease;
}

.slot-card:hover img {
  transform: scale(1.09);
  filter: brightness(0.55) saturate(1.1);
}

.slot-card__rank {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 3;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  color: var(--color-gold-light);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.slot-card:hover .slot-card__rank {
  opacity: 0;
  transform: translateY(-6px);
}

.slot-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.slot-card:hover .slot-card__overlay {
  opacity: 1;
}

.slot-card__provider {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  padding: 0 0.4rem;
  transform: translateY(8px);
  transition: transform 0.35s ease 0.05s;
}

.slot-card__play {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  color: #143018;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
  transform: scale(0.82);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) 0.05s, filter 0.25s ease;
}

.slot-card:hover .slot-card__provider {
  transform: translateY(0);
}

.slot-card:hover .slot-card__play {
  transform: scale(1);
}

.slot-card__play:hover {
  filter: brightness(1.08);
}

.content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 4vw 5rem;
}

.content-inner {
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2.8rem;
}

.content-title {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1.4rem;
}

.content-h2 {
  display: block;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1rem;
  padding-left: 0.9rem;
  border-left: 4px solid var(--color-gold);
}

.content-h3 {
  display: block;
  font-size: clamp(1.05rem, 1.9vw, 1.25rem);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.7rem;
  color: var(--color-gold-light);
}

.content-block {
  padding-top: 2.4rem;
  margin-top: 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.content-sub {
  margin-top: 1.8rem;
}

.content p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.1rem;
}

.content p:last-child {
  margin-bottom: 0;
}

.content strong {
  font-weight: 700;
  color: #ffffff;
}

.table-wrap {
  overflow-x: auto;
  margin: 1.4rem 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.content table {
  width: 100%;
  min-width: 460px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.content thead th {
  background: rgba(0, 0, 0, 0.4);
  color: var(--color-gold-light);
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  padding: 0.85rem 1rem;
  white-space: nowrap;
}

.content tbody td {
  padding: 0.8rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
  vertical-align: top;
}

.content tbody tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.16);
}

.content tbody td:first-child {
  font-weight: 600;
  color: #ffffff;
}

.steps {
  counter-reset: step;
  list-style: none;
  margin: 1.2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 0.75rem 1rem 0.75rem 3.2rem;
  background: rgba(0, 0, 0, 0.22);
  border-radius: 10px;
  border-left: 3px solid var(--color-gold);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.7rem;
  height: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  color: #143018;
  font-weight: 800;
  font-size: 0.82rem;
  border-radius: 50%;
}

.bullets {
  list-style: none;
  margin: 1.2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.bullets li {
  position: relative;
  padding-left: 1.6rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

.bullets li::before {
  content: '';
  position: absolute;
  left: 0.3rem;
  top: 0.62em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--color-gold);
}

.toc {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  margin-bottom: 2rem;
  overflow: hidden;
}

.toc__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.4rem;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.25s ease, color 0.25s ease;
}

.toc__summary::-webkit-details-marker {
  display: none;
}

.toc__summary:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--color-gold-light);
}

.toc__icon {
  flex-shrink: 0;
  width: 0.7rem;
  height: 0.7rem;
  border-right: 2.5px solid var(--color-gold);
  border-bottom: 2.5px solid var(--color-gold);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.3s ease;
}

.toc[open] .toc__icon {
  transform: rotate(225deg) translate(-2px, -2px);
}

.toc__body {
  padding: 0 1.4rem 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.toc__list,
.toc__sublist {
  list-style: none;
  counter-reset: toc;
}

.toc__list {
  padding-top: 1rem;
}

.toc__list > li {
  counter-increment: toc;
  margin-bottom: 0.5rem;
}

.toc__list > li > a::before {
  content: counter(toc) '. ';
  color: var(--color-gold);
  font-weight: 700;
}

.toc__sublist {
  padding: 0.45rem 0 0.2rem 1.5rem;
}

.toc__sublist li {
  margin-bottom: 0.4rem;
}

.toc__sublist li a::before {
  content: '— ';
  color: var(--color-gold);
}

.toc a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.toc a:hover {
  color: var(--color-gold-light);
  text-decoration: underline;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.faq__item {
  background: rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq__item[open] {
  border-color: var(--color-gold);
}

.faq__question {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.3rem;
  transition: background 0.25s ease;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question:hover {
  background: rgba(255, 255, 255, 0.06);
}

.faq__question-text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  color: #ffffff;
}

.faq__item[open] .faq__question-text {
  color: var(--color-gold-light);
}

.faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--color-gold);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq__icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2.5px;
  transform: translateY(-50%);
}

.faq__icon::after {
  left: 50%;
  top: 0;
  width: 2.5px;
  height: 100%;
  transform: translateX(-50%);
}

.faq__item[open] .faq__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq__answer {
  padding: 0 1.3rem 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq__answer p {
  padding-top: 1rem;
  margin-bottom: 0;
  font-size: 0.96rem;
}

.site-footer {
  background: var(--color-header);
  border-top: 3px solid #17331f;
  color: var(--color-header-text);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.8rem 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
}

.footer-logo {
  height: 58px;
  width: auto;
  object-fit: contain;
}

.footer-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-header-text);
}

.btn-footer {
  background: linear-gradient(135deg, #22a349, #16642c);
  color: #ffffff;
  box-shadow: none;
}

.btn-footer:hover {
  filter: brightness(1.1);
  box-shadow: none;
}

@media (max-width: 860px) {
  .hero-content {
    padding: 2.4rem 2rem;
  }

  .content-inner {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 90px;
  }

  .logo {
    height: 44px;
  }

  .header-actions {
    gap: 0.5rem;
  }

  .btn {
    padding: 0.58rem 1.15rem;
    font-size: 0.78rem;
  }

  .hero-section {
    padding: 1.5rem 4vw 0;
  }

  .hero {
    min-height: 420px;
    border-radius: 18px;
  }

  .hero-bg {
    object-position: 72% center;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(8, 36, 18, 0.5) 0%,
      rgba(8, 36, 18, 0.88) 52%,
      rgba(8, 36, 18, 0.95) 100%
    );
  }

  .hero-content {
    max-width: 100%;
    padding: 2rem 1.5rem;
  }

  .slots {
    padding: 3rem 4vw 2rem;
  }

  .content {
    padding: 1.5rem 4vw 3.5rem;
  }

  .content-block {
    padding-top: 1.8rem;
    margin-top: 1.8rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    padding: 1.6rem 4vw;
  }
}

@media (max-width: 480px) {
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
  }

  .logo {
    height: 38px;
  }

  .content-inner {
    padding: 1.5rem 1.1rem;
  }

  .toc__summary,
  .faq__question {
    padding: 0.95rem 1rem;
  }

  .toc__body,
  .faq__answer {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
