:root {
  --bg: #b87c7c;
  --dark: #111827;
  --soft-dark: #1f2937;
  --accent: #b3432f;
  --accent-dark: #7f2e22;
  --cream: #fffaf2;
  --muted: #6b7280;
  --line: rgba(17, 24, 39, 0.12);
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--dark);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  background: rgba(246, 243, 237, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-shell {
  min-height: 72px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.88);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
}

.brand img {
  width: 160px;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.desktop-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--soft-dark);
  transition: 0.25s;
}

.desktop-nav a:hover {
  background: var(--dark);
  color: var(--white);
}

.header-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-size: 13px;
  color: var(--muted);
}

.header-info a {
  color: var(--accent-dark);
  font-weight: 700;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--dark);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 96px;
  background-image: url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 22%, rgba(179, 67, 47, 0.18), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(31, 41, 55, 0.14), transparent 24%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 34px;
  align-items: center;
}

.hero-text {
  padding: 58px;
  border-radius: 34px;
  background: var(--dark);
  color: var(--white);
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  width: fit-content;
  margin-bottom: 20px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #f4d7cf;
  font-size: 13px;
  letter-spacing: 0.4px;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -1.8px;
  margin-bottom: 22px;
}

.hero p {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.65;
  color: #d1d5db;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-btn,
.secondary-btn {
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s;
}

.primary-btn {
  background: var(--accent);
  color: var(--white);
}

.primary-btn:hover {
  background: #cf5945;
}

.secondary-btn {
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
}

.secondary-btn:hover {
  background: rgba(255,255,255,0.08);
}

.hero-card {
  padding: 34px;
  border-radius: 34px;
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.12);
}

.card-label {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.hero-card h2 {
  font-size: 34px;
  margin-bottom: 26px;
}

.mini-list {
  display: grid;
  gap: 14px;
}

.mini-list div {
  padding: 18px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--line);
}

.mini-list strong {
  display: block;
  color: var(--accent);
  font-size: 24px;
  margin-bottom: 6px;
}

.mini-list span {
  color: var(--soft-dark);
}

.ranking-section {
  padding: 72px 0 88px;
  background: #b87c7c;
}

.warning-strip {
  max-width: 980px;
  margin: 0 auto 48px;
  padding: 14px 22px;
  border-radius: 999px;
  background: #c9382d;
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

.warning-strip span {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading span {
  color: var(--accent);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.section-heading h2 {
  margin: 12px 0 12px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -1px;
}

.section-heading p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.bookmaker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.bookmaker-card {
  position: relative;
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, #fffaf2 0%, #ffffff 100%);
  border: 1px solid var(--line);
  box-shadow: 0 22px 55px rgba(17, 24, 39, 0.08);
  overflow: hidden;
}

.bookmaker-card.featured {
  transform: translateY(-14px);
  border-color: rgba(179, 67, 47, 0.35);
}

.bookmaker-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 8px;
  background: linear-gradient(90deg, var(--accent), var(--dark));
}

.rank-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--dark);
  color: #ffffff;
  font-weight: 900;
}

.bookmaker-logo {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-right: 56px;
}

.bookmaker-logo img {
  max-width: 170px;
  max-height: 66px;
  object-fit: contain;
}

.bonus-box {
  margin: 18px 0 22px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(179, 67, 47, 0.08);
  border: 1px solid rgba(179, 67, 47, 0.18);
}

.bonus-box small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.7px;
  font-size: 11px;
}

.bonus-box strong {
  display: block;
  font-size: 17px;
  line-height: 1.35;
}

.benefits-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}

.benefits-list li {
  position: relative;
  padding-left: 30px;
  color: var(--soft-dark);
  font-size: 15px;
  line-height: 1.45;
}

.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.bookmaker-btn {
  display: block;
  padding: 16px 20px;
  border-radius: 18px;
  background: var(--dark);
  color: #ffffff;
  text-align: center;
  font-weight: 800;
  transition: 0.25s;
}

.bookmaker-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.about-section {
  padding: 88px 0;
  background: #b87c7c;
}

.about-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
  padding: 38px;
  border-radius: 36px;
  background: #f2efe8;
  border: 1px solid var(--line);
}

.about-media {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 420px;
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17, 24, 39, 0) 45%,
    rgba(17, 24, 39, 0.28) 100%
  );
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.about-content {
  max-width: 620px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}

.about-content h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -1px;
}

.about-content p {
  margin-bottom: 16px;
  color: var(--soft-dark);
  font-size: 16px;
  line-height: 1.75;
}

.about-lead {
  font-size: 18px !important;
  font-weight: 700;
  color: var(--dark) !important;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--accent-dark);
  font-weight: 900;
}

.text-link span {
  transition: 0.25s;
}

.text-link:hover span {
  transform: translateX(4px);
}

.faq-section {
  padding: 88px 0;
  background: #b87c7c;
}

.faq-heading {
  margin-bottom: 34px;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fffaf2;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.04);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  border: 0;
  background: transparent;
  color: var(--dark);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.faq-question span {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.faq-question span::before,
.faq-question span::after {
  content: "";
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
  transition: 0.25s;
}

.faq-question span::before {
  top: 8px;
  left: 2px;
  width: 14px;
  height: 2px;
}

.faq-question span::after {
  top: 2px;
  left: 8px;
  width: 2px;
  height: 14px;
}

.faq-item.active .faq-question span::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 24px 22px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

.facts-section {
  padding: 88px 0;
  background: var(--bg);
}

.facts-box {
  position: relative;
  overflow: hidden;
  padding: 48px;
  border-radius: 36px;
  background: radial-gradient(circle at top right, rgba(179, 67, 47, 0.28), transparent 34%),
    linear-gradient(135deg, #111827 0%, #262a3a 100%);
  color: #ffffff;
}

.facts-title {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.facts-title span {
  display: inline-block;
  margin-bottom: 12px;
  color: #f5c7bc;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 900;
}

.facts-title h2 {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -1px;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.fact-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 250, 242, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.fact-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(179, 67, 47, 0.26);
  color: #ffd8cf;
  font-weight: 900;
}

.fact-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.fact-card p {
  color: #d1d5db;
  font-size: 14px;
  line-height: 1.65;
}

.contact-cta {
  padding: 88px 0;
  background: #ffffff;
}

.contact-cta-box {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 36px;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.92), rgba(127, 46, 34, 0.72)),
    url("../assets/contact-bg.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px;
}

.contact-cta-content {
  max-width: 720px;
  color: #ffffff;
}

.contact-cta-content span {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #ffd8cf;
  font-size: 13px;
  font-weight: 800;
}

.contact-cta-content h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -1px;
}

.contact-cta-content p {
  margin: 0 auto 28px;
  max-width: 640px;
  color: #f3f4f6;
  line-height: 1.7;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 26px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(0,0,0,0.22);
  transition: 0.25s;
}

.cta-btn:hover {
  transform: translateY(-2px);
  background: #cf5945;
}

.responsible-section {
  padding: 88px 0;
  background: #ffffff;
}

.responsible-box {
  max-width: 920px;
  margin: 0 auto;
  padding: 42px 48px;
  border-radius: 28px;
  background: linear-gradient(135deg, #d6b5b5 0%, #4d4949 100%);
  color: #ffffff;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

.responsible-box h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 4vw, 40px);
}

.responsible-text {
  margin-bottom: 14px;
  line-height: 1.7;
  font-size: 15px;
  color: #f3f4f6;
}

.responsible-note {
  margin-top: 16px;
  font-weight: 900;
  font-size: 14px;
  color: #ffe9e2;
}

.site-footer {
  background: #111827;
  color: #ffffff;
  border-top: 4px solid var(--accent);
}

.footer-grid {
  padding: 58px 0 44px;
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.2fr;
  gap: 42px;
}

.footer-col h3 {
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.16);
  font-size: 16px;
}

.footer-col a,
.footer-col p {
  display: block;
  margin-bottom: 10px;
  color: #d1d5db;
  font-size: 14px;
  line-height: 1.55;
}

.footer-col strong {
  display: block;
  margin-bottom: 12px;
  font-size: 15px;
}

.footer-phone {
  color: #ffd8cf !important;
  font-weight: 900;
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer-logos img {
  max-height: 42px;
  width: auto;
  object-fit: contain;
  background: #979797;
  border-radius: 8px;
  padding: 6px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: #9ca3af;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: #9ca3af;
}

.footer-links a:hover,
.footer-col a:hover {
  color: #ffffff;
}

.age-note {
  color: #ffd8cf;
  font-weight: 800;
}

.inner-page {
  padding: 82px 0 96px;
  background: radial-gradient(circle at 12% 8%, rgba(179, 67, 47, 0.12), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

.content-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 54px;
  border-radius: 34px;
  background: #fffaf2;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.08);
}

.content-page h1 {
  margin-bottom: 22px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -1.5px;
}

.content-page h2 {
  margin: 34px 0 14px;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.7px;
}

.content-page p {
  margin-bottom: 16px;
  color: var(--soft-dark);
  font-size: 17px;
  line-height: 1.8;
}

.about-responsible {
  padding: 72px 0 88px;
  background: transparent;
}

.about-responsible-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 44px;
  border-radius: 28px;
  background: linear-gradient(135deg, #6f8a36 0%, #5c742b 100%);
  color: #ffffff;
  text-align: center;
  box-shadow: 0 22px 55px rgba(0,0,0,0.12);
}

.about-responsible-box h2 {
  margin-bottom: 18px;
  font-size: clamp(26px, 4vw, 38px);
}

.about-responsible-box p {
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.7;
  color: #f3f4f6;
}

.about-responsible-note {
  margin-top: 12px;
  font-weight: 900;
  color: #ffe9e2;
}

.lead-text {
  font-size: 18px;
  margin-bottom: 24px;
  color: var(--dark);
  font-weight: 600;
}

.info-block {
  margin-top: 28px;
  padding: 24px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.info-block h2 {
  margin-bottom: 10px;
  font-size: 22px;
}

.info-block p {
  font-size: 15px;
  color: var(--soft-dark);
  line-height: 1.7;
}

.warning-list {
  padding-left: 18px;
  margin-top: 10px;
}

.warning-list li {
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--soft-dark);
}

.highlight-help {
  background: linear-gradient(135deg, #6f8a36, #5c742b);
  color: #ffffff;
}

.highlight-help h2,
.highlight-help p {
  color: #ffffff;
}

.help-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0;
}

.help-links a {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
}

.help-phone {
  margin-top: 10px;
  font-weight: 900;
}

.responsible-warning {
  margin-top: 34px;
  padding: 16px;
  border-radius: 14px;
  text-align: center;
  background: #111827;
  color: #ffffff;
  font-weight: 900;
}

.contact-page {
  background: radial-gradient(circle at 82% 18%, rgba(111, 138, 54, 0.16), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: start;
}

.contact-intro,
.contact-form {
  padding: 38px;
  border-radius: 30px;
  background: #fffaf2;
  border: 1px solid var(--line);
  box-shadow: 0 22px 55px rgba(17, 24, 39, 0.07);
}

.contact-intro h1 {
  margin-bottom: 16px;
  font-size: clamp(38px, 5vw, 58px);
  letter-spacing: -1.5px;
}

.contact-intro > p {
  color: var(--soft-dark);
  line-height: 1.7;
  margin-bottom: 24px;
}

.contact-card {
  padding: 22px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.contact-card strong,
.contact-card a {
  display: block;
  margin-bottom: 10px;
}

.contact-card p {
  margin-bottom: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.contact-card a {
  color: var(--accent-dark);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--dark);
  font-weight: 800;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
  background: #ffffff;
  color: var(--dark);
  font: inherit;
  outline: none;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(179, 67, 47, 0.55);
  box-shadow: 0 0 0 4px rgba(179, 67, 47, 0.1);
}

.contact-form button {
  width: fit-content;
  border: 0;
  border-radius: 999px;
  padding: 15px 28px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 900;
  cursor: pointer;
  transition: 0.25s;
}

.contact-form button:hover {
  transform: translateY(-2px);
  background: #cf5945;
}

.legal-page {
  padding: 82px 0 96px;
  background: radial-gradient(circle at 80% 8%, rgba(179, 67, 47, 0.1), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 54px;
  border-radius: 32px;
  background: #fffaf2;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.08);
}

.legal-content h1 {
  margin-bottom: 8px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: -1.3px;
}

.legal-updated {
  margin-bottom: 28px !important;
  color: var(--muted) !important;
  font-size: 14px !important;
}

.legal-content h2 {
  margin: 30px 0 10px;
  font-size: clamp(22px, 3vw, 30px);
}

.legal-content p {
  margin-bottom: 14px;
  color: var(--soft-dark);
  font-size: 16px;
  line-height: 1.8;
}

.legal-content a {
  color: var(--accent-dark);
  font-weight: 800;
}

.brand {
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  color: #000;
}

.footer-disclaimer {
  margin-top: 30px;
  font-size: 13px;
  color: #aaa;
  text-align: center;
  line-height: 1.6;
}

.footer-disclaimer p {
  margin-bottom: 10px;
}

.footer-logos a {
  display: inline-block;
}

.footer-logos img:hover {
  transform: scale(1.05);
  opacity: 0.8;
}

@media (max-width: 960px) {
  .header-shell {
    grid-template-columns: auto 1fr auto;
  }
  
  .desktop-nav,
    .header-info {
    display: none;
  }
  
  .menu-btn {
    display: block;
    justify-self: end;
  }
  
  .mobile-menu {
    width: min(1180px, calc(100% - 32px));
    margin: 10px auto 0;
    padding: 12px;
    border-radius: 22px;
    background: var(--cream);
    border: 1px solid var(--line);
    box-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
  }
  
  .mobile-menu.active {
    display: grid;
    gap: 4px;
  }
  
  .mobile-menu a {
    padding: 14px;
    border-radius: 14px;
  }
  
  .mobile-menu a:hover {
    background: rgba(17, 24, 39, 0.06);
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-text {
    padding: 42px;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 130px;
  }
  
  .header-shell {
    min-height: 62px;
    border-radius: 18px;
    padding: 10px 12px;
  }
  
  .hero {
    padding: 44px 0 64px;
  }
  
  .hero-text {
    padding: 30px 22px;
    border-radius: 26px;
    min-height: auto;
  }
  
  .hero h1 {
    font-size: 38px;
    letter-spacing: -1px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .primary-btn,
    .secondary-btn {
    text-align: center;
  }
  
  .hero-card {
    padding: 24px;
    border-radius: 26px;
  }
}

@media (max-width: 980px) {
  .bookmaker-grid {
    grid-template-columns: 1fr;
  }
  
  .bookmaker-card.featured {
    transform: none;
  }
}

@media (max-width: 560px) {
  .ranking-section {
    padding: 54px 0 64px;
  }
  
  .warning-strip {
    border-radius: 20px;
    font-size: 13px;
    line-height: 1.45;
  }
  
  .bookmaker-card {
    padding: 24px;
    border-radius: 24px;
  }
  
  .bookmaker-logo img {
    max-width: 145px;
  }
}

@media (max-width: 900px) {
  .about-panel {
    grid-template-columns: 1fr;
    padding: 26px;
  }
  
  .about-media,
    .about-media img {
    min-height: 320px;
  }
}

@media (max-width: 560px) {
  .about-section {
    padding: 64px 0;
  }
  
  .about-panel {
    border-radius: 26px;
    padding: 18px;
  }
  
  .about-media {
    border-radius: 22px;
  }
  
  .about-content {
    padding: 6px;
  }
}

@media (max-width: 560px) {
  .faq-section {
    padding: 64px 0;
  }
  
  .faq-question {
    padding: 18px;
    font-size: 15px;
  }
  
  .faq-answer p {
    padding: 0 18px 20px;
  }
}

@media (max-width: 900px) {
  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .facts-box {
    padding: 34px;
  }
}

@media (max-width: 560px) {
  .facts-section {
    padding: 64px 0;
  }
  
  .facts-box {
    padding: 24px;
    border-radius: 26px;
  }
  
  .facts-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .contact-cta {
    padding: 64px 0;
  }
  
  .contact-cta-box {
    min-height: 420px;
    border-radius: 26px;
    padding: 28px;
  }
}

@media (max-width: 560px) {
  .responsible-section {
    padding: 64px 0;
  }
  
  .responsible-box {
    padding: 28px 20px;
    border-radius: 20px;
  }
}

@media (max-width: 820px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .inner-page {
    padding: 54px 0 70px;
  }
  
  .content-page {
    padding: 26px 20px;
    border-radius: 24px;
  }
  
  .content-page p {
    font-size: 16px;
  }
}

@media (max-width: 560px) {
  .about-responsible {
    padding: 54px 0 64px;
  }
  
  .about-responsible-box {
    padding: 26px 20px;
    border-radius: 22px;
  }
}

@media (max-width: 860px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .contact-intro,
    .contact-form {
    padding: 24px 18px;
    border-radius: 24px;
  }
}

@media (max-width: 560px) {
  .legal-page {
    padding: 54px 0 70px;
  }
  
  .legal-content {
    padding: 26px 20px;
    border-radius: 24px;
  }
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 22px;
  border-radius: 22px;
  background: #111827;
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(0,0,0,0.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #d1d5db;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-actions a {
  color: #ffd8cf;
  font-weight: 800;
  font-size: 14px;
}

.cookie-actions button {
  border: 0;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 900;
  cursor: pointer;
  transition: 0.25s;
}

.cookie-actions button:hover {
  background: #cf5945;
  transform: translateY(-2px);
}

@media (max-width: 560px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
    justify-content: space-between;
  }
}

.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.92);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-box {
  max-width: 420px;
  width: 90%;
  padding: 32px;
  border-radius: 24px;
  background: #fffaf2;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.age-box h2 {
  margin-bottom: 12px;
  font-size: 26px;
}

.age-box p {
  margin-bottom: 24px;
  color: #6b7280;
}

.age-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.age-actions button {
  flex: 1;
  padding: 14px;
  border-radius: 999px;
  border: 0;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s;
}

#ageYes {
  background: var(--accent);
  color: #fff;
}

#ageYes:hover {
  background: #cf5945;
}

#ageNo {
  background: #e5e7eb;
}

#ageNo:hover {
  background: #d1d5db;
}

.footer-logos img {
  height: 40px;
  width: auto;
}

.guide-section {
  padding: 88px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(179, 67, 47, 0.12), transparent 28%),
    var(--bg);
}

.guide-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
  padding: 44px;
  border-radius: 36px;
  background: #111827;
  color: #ffffff;
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.16);
}

.guide-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #ffd8cf;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.guide-content h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -1px;
}

.guide-content p {
  color: #d1d5db;
  line-height: 1.7;
}

.guide-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.guide-step {
  display: flex;
  gap: 14px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 250, 242, 0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.guide-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(179, 67, 47, 0.28);
  font-size: 22px;
}

.guide-step h3 {
  margin-bottom: 6px;
  font-size: 17px;
}

.guide-step p {
  color: #d1d5db;
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .guide-box {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .guide-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .guide-section {
    padding: 64px 0;
  }

  .guide-box {
    border-radius: 26px;
    padding: 24px;
  }
}

.sports-section {
  padding: 88px 0;
  background: #ffffff;
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sport-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  min-height: 220px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, #fffaf2 0%, #ffffff 100%);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.06);
  transition: 0.25s;
}

.sport-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(179, 67, 47, 0.08);
}

.sport-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(17, 24, 39, 0.11);
}

.sport-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #111827;
  color: #ffffff;
  font-size: 26px;
}

.sport-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.sport-card p {
  position: relative;
  z-index: 1;
  color: var(--soft-dark);
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 960px) {
  .sports-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .sports-section {
    padding: 64px 0;
  }

  .sports-grid {
    grid-template-columns: 1fr;
  }

  .sport-card {
    min-height: auto;
  }
}

.checklist-section {
  padding: 60px 0;
}

.checklist-box {
  background: #111827;
  color: #fff;
  border-radius: 20px;
  padding: 35px;
}

.checklist-content {
  max-width: 700px;
  margin-bottom: 28px;
}

.checklist-content p {
  opacity: 0.8;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.checklist-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
  border-radius: 14px;
}

.checklist-item span {
  font-weight: 700;
}

.checklist-item p {
  margin: 0;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .checklist-box {
    padding: 24px 18px;
  }

  .checklist-grid {
    grid-template-columns: 1fr;
  }
}