@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Unbounded:wght@500;700&display=swap");

:root {
  --header-footer: #1e489c;
  --button: #bb9b49;
  --main-bg: #f1f1f2;
  --text-dark: #1a2338;
  --card-bg: #ffffff;
  --surface-soft: #f7f9ff;
  --line-soft: #d8e0f2;
  --shadow-soft: 0 12px 30px rgba(19, 39, 86, 0.12);
  --shadow-strong: 0 18px 40px rgba(19, 39, 86, 0.2);
  --sidebar-width: 246px;
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background:
    radial-gradient(circle at 12% 14%, rgba(30, 72, 156, 0.14), transparent 35%),
    radial-gradient(circle at 88% 20%, rgba(187, 155, 73, 0.17), transparent 30%),
    linear-gradient(180deg, #f9fbff 0%, #eef2fb 52%, #e9edf6 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: -25% -10% auto;
  height: 420px;
  z-index: -1;
  background:
    radial-gradient(circle at 22% 50%, rgba(30, 72, 156, 0.2), transparent 45%),
    radial-gradient(circle at 75% 50%, rgba(187, 155, 73, 0.25), transparent 38%);
  pointer-events: none;
}

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

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.site-header {
  background: linear-gradient(110deg, #1e489c 0%, #173a80 58%, #11306d 100%);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--sidebar-width);
  z-index: 40;
  box-shadow: 0 10px 26px rgba(15, 33, 78, 0.35);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.header-inner {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 24px;
  padding: 20px 0 24px;
}

.logo-link {
  display: flex;
  justify-content: center;
}

.logo {
  width: 132px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(3, 15, 41, 0.35));
}

.header-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  width: 100%;
}

.header-nav a {
  color: #f5f8ff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.94;
  position: relative;
  padding: 8px 4px 8px 10px;
  border-left: 2px solid transparent;
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 100%;
  bottom: 4px;
  border-bottom: 2px solid #ffffff;
  transition: right 0.2s ease;
}

.header-nav a:hover::after,
.header-nav a:focus-visible::after {
  right: 0;
}

.header-actions {
  display: grid;
  gap: 8px;
  width: 100%;
  margin-top: auto;
}

.header-btn {
  display: inline-block;
  background: linear-gradient(180deg, #d0b46f 0%, var(--button) 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #1e1a11;
  font-weight: 800;
  text-decoration: none;
  line-height: 1.2;
  text-align: center;
  width: 100%;
  padding: 11px 14px;
  border-radius: 14px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    0 6px 14px rgba(5, 16, 38, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.header-btn:hover,
.header-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 10px 18px rgba(5, 16, 38, 0.34);
}

main {
  margin-left: var(--sidebar-width);
  padding: 28px 0 18px;
}

.section-block {
  padding: 34px 0;
}

.section-block .container {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), #ffffff 72%);
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  padding: clamp(18px, 2.5vw, 30px);
  box-shadow: var(--shadow-soft);
}

.hero {
  padding-top: 14px;
}

.hero-content {
  text-align: center;
}

h1,
h2,
h3 {
  color: #122956;
  margin: 0 0 16px;
}

h1 {
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(1.9rem, 4.8vw, 3rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-wrap: balance;
}

h2 {
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(1.3rem, 2.3vw, 1.95rem);
  line-height: 1.3;
}

h3 {
  font-size: clamp(1.02rem, 1.8vw, 1.26rem);
}

.hero-banner {
  width: min(980px, 100%);
  margin: 0 auto;
  border-radius: 26px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-strong);
}

.cta-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 42px;
  border-radius: 999px;
  text-decoration: none;
  background: linear-gradient(135deg, #d0b46f 0%, #bb9b49 52%, #a5863c 100%);
  color: #1a160f;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  animation: ctaPulse 1.8s ease-in-out infinite;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    0 12px 26px rgba(136, 99, 14, 0.34);
}

@keyframes ctaPulse {
  0% {
    transform: scale(1);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.45),
      0 0 0 0 rgba(187, 155, 73, 0.4),
      0 12px 26px rgba(136, 99, 14, 0.34);
  }
  70% {
    transform: scale(1.03);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.45),
      0 0 0 18px rgba(187, 155, 73, 0),
      0 12px 26px rgba(136, 99, 14, 0.34);
  }
  100% {
    transform: scale(1);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.45),
      0 0 0 0 rgba(187, 155, 73, 0),
      0 12px 26px rgba(136, 99, 14, 0.34);
  }
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.game-card {
  aspect-ratio: 1 / 1;
  background: linear-gradient(160deg, #ffffff, #f2f6ff);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #d3dcf2;
  box-shadow: 0 10px 18px rgba(12, 35, 82, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.game-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(12, 35, 82, 0.2);
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seo-article {
  max-width: 980px;
}

.seo-article h2 {
  margin-top: 30px;
  padding-left: 14px;
  border-left: 4px solid rgba(30, 72, 156, 0.78);
}

.seo-article h3 {
  margin-top: 26px;
  color: #1f3d7e;
}

.seo-article p {
  margin: 0 0 14px;
  color: #233759;
}

.seo-article ul,
.seo-article ol {
  margin: 0 0 16px;
  padding-left: 22px;
  color: #22385b;
}

.seo-article li {
  margin-bottom: 7px;
}

.table-wrap {
  overflow-x: auto;
  margin: 0 0 18px;
  border-radius: 14px;
  border: 1px solid #d5def3;
}

.seo-article table {
  width: 100%;
  min-width: 460px;
  border-collapse: collapse;
  background: #ffffff;
}

.seo-article th,
.seo-article td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid #e0e7f7;
  color: #233759;
}

.seo-article th {
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #f6f8ff;
  background: linear-gradient(90deg, #224f9e, #1a3f83);
}

.seo-image {
  margin: 18px 0 10px;
}

.seo-image img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #d8e1f5;
  box-shadow: 0 12px 30px rgba(18, 41, 87, 0.16);
}

.form-card {
  margin: 20px 0 26px;
  padding: 20px;
  background: linear-gradient(180deg, #ffffff, #f7f9ff);
  border: 1px solid #d2dcf1;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.form-card h2 {
  margin: 0 0 12px;
}

.site-form {
  display: grid;
  gap: 10px;
}

.site-form label {
  font-weight: 700;
  color: #1c3c7b;
}

.site-form input,
.site-form textarea {
  width: 100%;
  border: 1px solid #c2d2f4;
  border-radius: 12px;
  padding: 11px 12px;
  font: inherit;
  color: #102444;
  background: #fcfdff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-form input:focus,
.site-form textarea:focus {
  outline: none;
  border-color: #4d76ca;
  box-shadow: 0 0 0 3px rgba(80, 119, 200, 0.2);
}

.form-inline-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.form-help-link {
  color: #1d4997;
  font-weight: 700;
  text-decoration: none;
}

.form-submit-btn {
  margin-top: 4px;
  border: none;
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  font-weight: 800;
  background: linear-gradient(180deg, #d0b46f 0%, var(--button) 100%);
  color: #1a160f;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(136, 99, 14, 0.26);
}

.payments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
}

.payments-grid img {
  height: 74px;
  width: 100%;
  object-fit: contain;
  background: linear-gradient(180deg, #ffffff, #f4f7ff);
  border: 1px solid #d7e0f3;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 6px 16px rgba(17, 35, 78, 0.1);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.review-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff, #f5f8ff);
  border-radius: 16px;
  border: 1px solid #d4ddf2;
  padding: 20px 18px 18px;
  box-shadow: var(--shadow-soft);
}

.review-card::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  right: 12px;
  font-family: "Unbounded", sans-serif;
  font-size: 1.8rem;
  color: rgba(30, 72, 156, 0.3);
}

.review-card h3 {
  margin-bottom: 8px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f5f8ff);
  border: 1px solid #d2dcf2;
  box-shadow: 0 6px 18px rgba(20, 35, 77, 0.1);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 800;
  color: #1b3a76;
  cursor: pointer;
}

.faq-answer {
  padding: 0 16px 14px;
  color: #2b3d61;
}

.updated-bar {
  background: linear-gradient(90deg, #dce4f7, #e7edf9);
  margin-left: var(--sidebar-width);
  width: calc(100% - var(--sidebar-width));
  padding: 10px 0;
  border-top: 1px solid #cad8f4;
  border-bottom: 1px solid #c8d5f2;
}

.updated-bar p {
  margin: 0;
  text-align: center;
  font-weight: 800;
  color: #1b3f88;
  letter-spacing: 0.02em;
}

.site-footer {
  background: linear-gradient(130deg, #1e489c 0%, #1b3f84 65%, #14326d 100%);
  color: #eef3ff;
  margin-left: var(--sidebar-width);
  width: calc(100% - var(--sidebar-width));
  padding: 28px 0 20px;
}

.trust-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 10px;
}

.trust-section a {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 10px;
  border: 1px solid rgba(223, 231, 250, 0.7);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
}

.trust-section img {
  max-height: 35px;
  width: auto;
  object-fit: contain;
}

.footer-links {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px 16px;
}

.footer-links a {
  color: #f3f6ff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

.providers-section {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}

.providers-section img {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(223, 231, 250, 0.7);
  border-radius: 10px;
  height: 58px;
  width: 100%;
  padding: 8px;
  object-fit: contain;
}

.copyright {
  margin: 18px 0 0;
  text-align: center;
  font-size: 0.93rem;
  color: #dbe6ff;
}

@media (max-width: 1024px) {
  :root {
    --sidebar-width: 214px;
  }

  .games-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --sidebar-width: 0px;
  }

  .header-inner {
    min-height: 56px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0;
    gap: 8px;
  }

  .site-header {
    position: sticky;
    top: 0;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    border-right: none;
  }

  .logo-link {
    justify-content: flex-start;
  }

  .header-nav {
    display: none;
  }

  .logo {
    width: 84px;
  }

  .header-actions {
    width: auto;
    gap: 6px;
    margin-top: 0;
    display: flex;
  }

  .header-btn {
    width: auto;
    padding: 7px 10px;
    font-size: 0.82rem;
    border-radius: 999px;
  }

  main,
  .updated-bar,
  .site-footer {
    margin-left: 0;
    width: 100%;
  }

  .section-block {
    padding: 24px 0;
  }

  .section-block .container {
    border-radius: 16px;
    padding: 16px;
  }

  .games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .cta-btn {
    width: 100%;
    max-width: 330px;
  }

  .form-inline-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
