@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&family=Unbounded:wght@500;600;700;800&display=swap");

:root {
  --bg: #eef2f3;
  --bg-soft: #f7f4ee;
  --dark: #151722;
  --soft-dark: #2b3040;
  --accent: #ff5a3d;
  --accent-dark: #c83a26;
  --accent-soft: rgba(255, 90, 61, 0.12);
  --green: #1f9d76;
  --gold: #f2b84b;
  --cream: #fffdf7;
  --muted: #69717f;
  --line: rgba(21, 23, 34, 0.12);
  --white: #ffffff;
  --shadow-sm: 0 14px 34px rgba(21, 23, 34, 0.07);
  --shadow-md: 0 22px 60px rgba(21, 23, 34, 0.12);
  --shadow-lg: 0 34px 90px rgba(21, 23, 34, 0.18);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Manrope", Arial, sans-serif;
  background: linear-gradient(180deg, #eef2f3 0%, #f7f4ee 48%, #eef4ef 100%);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

::selection {
  background: var(--accent);
  color: var(--white);
}

:focus-visible {
  outline: 3px solid rgba(255, 90, 61, 0.35);
  outline-offset: 3px;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  background: rgba(238, 242, 243, 0.82);
  border-bottom: 1px solid rgba(21, 23, 34, 0.08);
  backdrop-filter: blur(18px);
}

.header-shell {
  min-height: 74px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 247, 0.9);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  box-shadow: var(--shadow-sm);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
}

.brand img {
  width: 160px;
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.desktop-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--soft-dark);
  font-size: 14px;
  font-weight: 800;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.desktop-nav a:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-1px);
}

.header-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.header-info a {
  color: var(--accent-dark);
  font-weight: 900;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.menu-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 90, 61, 0.35);
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--dark);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 96px;
  background:
    linear-gradient(90deg, rgba(238, 242, 243, 0.94), rgba(238, 242, 243, 0.46)),
    url("../img/hero-bg.jpg") center / cover no-repeat;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 34px;
  align-items: center;
}

.hero-text {
  min-height: 430px;
  padding: 58px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(21, 23, 34, 0.9);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.eyebrow {
  width: fit-content;
  margin-bottom: 20px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffd7cf;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1,
.section-heading h2,
.about-content h2,
.facts-title h2,
.contact-cta-content h2,
.responsible-box h2,
.content-page h1,
.content-page h2,
.about-responsible-box h2,
.contact-intro h1,
.legal-content h1,
.legal-content h2,
.guide-content h2 {
  font-family: "Unbounded", "Manrope", sans-serif;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 64px;
  line-height: 1.02;
}

.hero p {
  max-width: 620px;
  color: #dce2e8;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-btn,
.secondary-btn,
.cta-btn,
.bookmaker-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.primary-btn,
.cta-btn {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(255, 90, 61, 0.24);
}

.primary-btn:hover,
.cta-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.hero-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 247, 0.94);
  box-shadow: var(--shadow-md);
}

.card-label,
.section-heading span,
.section-kicker,
.facts-title span,
.guide-kicker {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.card-label {
  margin-bottom: 12px;
}

.hero-card h2 {
  margin-bottom: 26px;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 32px;
  line-height: 1.15;
}

.mini-list {
  display: grid;
  gap: 14px;
}

.mini-list div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.mini-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-dark);
  font-size: 24px;
  font-weight: 900;
}

.mini-list span {
  color: var(--soft-dark);
  font-weight: 600;
}

.ranking-section,
.about-section,
.faq-section,
.facts-section,
.guide-section {
  padding: 88px 0;
  background: transparent;
}

.warning-strip {
  max-width: 980px;
  margin: 0 auto 48px;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent));
  color: var(--white);
  text-align: center;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(200, 58, 38, 0.18);
}

.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.22);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2 {
  margin: 12px 0;
  font-size: 44px;
  line-height: 1.12;
}

.section-heading p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.bookmaker-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.bookmaker-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.bookmaker-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.bookmaker-card.featured {
  transform: translateY(-14px);
  border-color: rgba(255, 90, 61, 0.35);
  box-shadow: var(--shadow-md);
}

.bookmaker-card.featured:hover {
  transform: translateY(-18px);
}

.bookmaker-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--green));
}

.rank-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--dark);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(21, 23, 34, 0.22);
}

.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: 1px solid rgba(255, 90, 61, 0.18);
  border-radius: 18px;
  background: var(--accent-soft);
}

.bonus-box small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.bonus-box strong {
  display: block;
  font-size: 17px;
  line-height: 1.4;
}

.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;
  font-weight: 600;
  line-height: 1.5;
}

.benefits-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.bookmaker-btn {
  display: flex;
  border-radius: 16px;
  background: var(--dark);
  color: var(--white);
  text-align: center;
}

.bookmaker-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.about-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 247, 0.9);
  box-shadow: var(--shadow-sm);
}

.about-media {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 26px;
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 23, 34, 0) 45%, rgba(21, 23, 34, 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;
}

.about-content h2 {
  margin-bottom: 18px;
  font-size: 44px;
  line-height: 1.12;
}

.about-content p {
  margin-bottom: 16px;
  color: var(--soft-dark);
  font-size: 16px;
  line-height: 1.8;
}

.about-lead {
  color: var(--dark) !important;
  font-size: 18px !important;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--accent-dark);
  font-weight: 900;
}

.text-link span {
  transition: transform 0.25s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.faq-heading {
  margin-bottom: 34px;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--cream);
  box-shadow: 0 14px 34px rgba(21, 23, 34, 0.05);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  border: 0;
  background: transparent;
  color: var(--dark);
  font-weight: 900;
  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;
  border-radius: 2px;
  background: var(--accent);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.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);
  font-size: 15px;
  line-height: 1.75;
}

.facts-box {
  position: relative;
  overflow: hidden;
  padding: 48px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #151722 0%, #263529 100%);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.facts-title {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.facts-title span {
  display: inline-block;
  margin-bottom: 12px;
  color: #ffd7cf;
}

.facts-title h2 {
  font-size: 42px;
  line-height: 1.15;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.fact-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 253, 247, 0.08);
}

.fact-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 90, 61, 0.22);
  color: #ffd7cf;
  font-weight: 900;
}

.fact-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.fact-card p {
  color: #dce2e8;
  font-size: 14px;
  line-height: 1.7;
}

.contact-cta,
.responsible-section,
.sports-section {
  padding: 88px 0;
  background: var(--white);
}

.contact-cta-box {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 48px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(90deg, rgba(21, 23, 34, 0.92), rgba(31, 157, 118, 0.7)),
    url("../assets/contact-bg.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.contact-cta-content {
  max-width: 720px;
  color: var(--white);
}

.contact-cta-content span {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffd7cf;
  font-size: 13px;
  font-weight: 900;
}

.contact-cta-content h2 {
  margin-bottom: 18px;
  font-size: 46px;
  line-height: 1.12;
}

.contact-cta-content p {
  max-width: 640px;
  margin: 0 auto 28px;
  color: #f2f5f7;
  line-height: 1.75;
}

.responsible-box {
  max-width: 920px;
  margin: 0 auto;
  padding: 42px 48px;
  border-radius: 28px;
  background: linear-gradient(135deg, #1f9d76 0%, #16493d 100%);
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.responsible-box h2 {
  margin-bottom: 18px;
  font-size: 38px;
}

.responsible-text {
  margin-bottom: 14px;
  color: #f2f5f7;
  font-size: 15px;
  line-height: 1.75;
}

.responsible-note {
  margin-top: 16px;
  color: #ffe6df;
  font-size: 14px;
  font-weight: 900;
}

.site-footer {
  background: var(--dark);
  color: var(--white);
  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: #dce2e8;
  font-size: 14px;
  line-height: 1.6;
}

.footer-col strong {
  display: block;
  margin-bottom: 12px;
  font-size: 15px;
}

.footer-phone,
.age-note {
  color: #ffd7cf !important;
  font-weight: 900;
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer-logos a {
  display: inline-block;
}

.footer-logos img {
  height: 40px;
  max-height: 42px;
  width: auto;
  padding: 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}

.footer-logos img:hover {
  transform: scale(1.05);
  opacity: 0.86;
  background: rgba(255, 255, 255, 0.18);
}

.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: #a9b1bd;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: #a9b1bd;
}

.footer-links a:hover,
.footer-col a:hover {
  color: var(--white);
}

.footer-disclaimer {
  margin-top: 30px;
  color: #a9b1bd;
  text-align: center;
  font-size: 13px;
  line-height: 1.65;
}

.footer-disclaimer p {
  margin-bottom: 10px;
}

.inner-page,
.legal-page {
  padding: 82px 0 96px;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg) 100%);
}

.content-page,
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: var(--shadow-md);
}

.content-page {
  max-width: 860px;
}

.content-page h1,
.legal-content h1 {
  margin-bottom: 22px;
  font-size: 54px;
  line-height: 1.08;
}

.content-page h2,
.legal-content h2 {
  margin: 34px 0 14px;
  font-size: 30px;
}

.content-page p,
.legal-content p {
  margin-bottom: 16px;
  color: var(--soft-dark);
  font-size: 16px;
  line-height: 1.8;
}

.legal-updated {
  margin-bottom: 28px !important;
  color: var(--muted) !important;
  font-size: 14px !important;
}

.legal-content a {
  color: var(--accent-dark);
  font-weight: 900;
}

.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, #1f9d76 0%, #5b7f2d 100%);
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-responsible-box h2 {
  margin-bottom: 18px;
  font-size: 36px;
}

.about-responsible-box p {
  margin-bottom: 14px;
  color: #f2f5f7;
  font-size: 15px;
  line-height: 1.75;
}

.about-responsible-note {
  margin-top: 12px;
  color: #ffe6df;
  font-weight: 900;
}

.lead-text {
  margin-bottom: 24px;
  color: var(--dark);
  font-size: 18px;
  font-weight: 800;
}

.info-block {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.info-block h2 {
  margin-bottom: 10px;
  font-size: 22px;
}

.info-block p {
  color: var(--soft-dark);
  font-size: 15px;
  line-height: 1.75;
}

.warning-list {
  padding-left: 18px;
  margin-top: 10px;
}

.warning-list li {
  margin-bottom: 8px;
  color: var(--soft-dark);
  font-size: 15px;
}

.highlight-help {
  background: linear-gradient(135deg, var(--green), #16493d);
  color: var(--white);
}

.highlight-help h2,
.highlight-help p {
  color: var(--white);
}

.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: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.help-phone {
  margin-top: 10px;
  font-weight: 900;
}

.responsible-warning {
  margin-top: 34px;
  padding: 16px;
  border-radius: 14px;
  background: var(--dark);
  color: var(--white);
  text-align: center;
  font-weight: 900;
}

.contact-page {
  background: linear-gradient(180deg, var(--white) 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: 1px solid var(--line);
  border-radius: 28px;
  background: var(--cream);
  box-shadow: var(--shadow-sm);
}

.contact-intro h1 {
  margin-bottom: 16px;
  font-size: 54px;
}

.contact-intro > p {
  margin-bottom: 24px;
  color: var(--soft-dark);
  line-height: 1.75;
}

.contact-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.contact-card strong,
.contact-card a {
  display: block;
  margin-bottom: 10px;
}

.contact-card p {
  margin-bottom: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.contact-card a {
  color: var(--accent-dark);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--dark);
  font-size: 14px;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 90, 61, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 90, 61, 0.1);
}

.contact-form button {
  width: fit-content;
  min-height: 52px;
  padding: 15px 28px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.contact-form button:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.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: var(--dark);
  color: var(--white);
  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 {
  color: #dce2e8;
  font-size: 14px;
  line-height: 1.65;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-actions a {
  color: #ffd7cf;
  font-size: 14px;
  font-weight: 900;
}

.cookie-actions button {
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.cookie-actions button:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  padding: 20px;
  background: rgba(21, 23, 34, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-box {
  width: min(420px, 100%);
  padding: 32px;
  border-radius: 24px;
  background: var(--cream);
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.age-box h2 {
  margin-bottom: 12px;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 26px;
}

.age-box p {
  margin-bottom: 24px;
  color: var(--muted);
}

.age-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.age-actions button {
  flex: 1;
  min-height: 48px;
  padding: 14px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.age-actions button:hover {
  transform: translateY(-1px);
}

#ageYes {
  background: var(--accent);
  color: var(--white);
}

#ageYes:hover {
  background: var(--accent-dark);
}

#ageNo {
  background: #e6eaee;
}

#ageNo:hover {
  background: #d7dde3;
}

.guide-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
  padding: 44px;
  border-radius: var(--radius-lg);
  background: var(--dark);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.guide-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffd7cf;
}

.guide-content h2 {
  margin-bottom: 16px;
  font-size: 44px;
  line-height: 1.12;
}

.guide-content p {
  color: #dce2e8;
  line-height: 1.75;
}

.guide-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.guide-step {
  display: flex;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 253, 247, 0.08);
}

.guide-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 90, 61, 0.22);
  font-size: 22px;
}

.guide-step h3 {
  margin-bottom: 6px;
  font-size: 17px;
}

.guide-step p {
  color: #dce2e8;
  font-size: 14px;
  line-height: 1.6;
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.sport-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sport-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(31, 157, 118, 0.1);
}

.sport-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.sport-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--dark);
  color: var(--white);
  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.7;
}

.method-section {
  padding: 60px 0;
}

.method-box {
  padding: 35px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--cream);
  box-shadow: var(--shadow-sm);
}

.method-content {
  max-width: 680px;
  margin-bottom: 30px;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.method-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.method-item strong {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 900;
}

.method-item h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.method-item p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .bookmaker-grid {
    grid-template-columns: 1fr;
  }

  .bookmaker-card.featured,
  .bookmaker-card.featured:hover {
    transform: none;
  }
}

@media (max-width: 960px) {
  .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: 1px solid var(--line);
    border-radius: 22px;
    background: var(--cream);
    box-shadow: var(--shadow-sm);
  }

  .mobile-menu.active {
    display: grid;
    gap: 4px;
  }

  .mobile-menu a {
    padding: 14px;
    border-radius: 14px;
    font-weight: 800;
  }

  .mobile-menu a:hover {
    background: rgba(21, 23, 34, 0.06);
  }

  .hero-grid,
  .about-panel,
  .guide-box {
    grid-template-columns: 1fr;
  }

  .hero-text {
    padding: 42px;
  }

  .hero h1,
  .content-page h1,
  .legal-content h1,
  .contact-intro h1 {
    font-size: 46px;
  }

  .section-heading h2,
  .about-content h2,
  .facts-title h2,
  .contact-cta-content h2,
  .guide-content h2 {
    font-size: 38px;
  }

  .sports-grid,
  .facts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .facts-box {
    padding: 34px;
  }
}

@media (max-width: 900px) {
  .about-media,
  .about-media img {
    min-height: 320px;
  }

  .guide-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .method-box {
    padding: 24px 18px;
  }

  .method-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container,
  .mobile-menu {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    padding: 10px 0;
  }

  .brand img {
    width: 130px;
  }

  .header-shell {
    min-height: 62px;
    padding: 10px 12px;
    border-radius: 18px;
  }

  .hero,
  .ranking-section,
  .about-section,
  .faq-section,
  .facts-section,
  .contact-cta,
  .responsible-section,
  .guide-section,
  .sports-section {
    padding: 64px 0;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-text {
    min-height: auto;
    padding: 30px 22px;
    border-radius: 24px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn,
  .cta-btn,
  .bookmaker-btn {
    width: 100%;
    text-align: center;
  }

  .hero-card,
  .bookmaker-card,
  .about-panel,
  .facts-box,
  .guide-box {
    padding: 24px;
    border-radius: 24px;
  }

  .warning-strip {
    border-radius: 20px;
    font-size: 13px;
    line-height: 1.45;
  }

  .section-heading h2,
  .about-content h2,
  .facts-title h2,
  .contact-cta-content h2,
  .guide-content h2,
  .responsible-box h2,
  .about-responsible-box h2 {
    font-size: 30px;
  }

  .bookmaker-logo img {
    max-width: 145px;
  }

  .about-panel {
    padding: 18px;
  }

  .about-media {
    border-radius: 20px;
  }

  .about-content {
    padding: 6px;
  }

  .faq-question {
    padding: 18px;
    font-size: 15px;
  }

  .faq-answer p {
    padding: 0 18px 20px;
  }

  .facts-grid,
  .sports-grid {
    grid-template-columns: 1fr;
  }

  .contact-cta-box {
    min-height: 420px;
    padding: 28px;
    border-radius: 24px;
  }

  .responsible-box,
  .about-responsible-box {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .inner-page,
  .legal-page {
    padding: 54px 0 70px;
  }

  .content-page,
  .legal-content,
  .contact-intro,
  .contact-form {
    padding: 26px 20px;
    border-radius: 22px;
  }

  .content-page h1,
  .legal-content h1,
  .contact-intro h1 {
    font-size: 34px;
  }

  .content-page h2,
  .legal-content h2 {
    font-size: 24px;
  }

  .content-page p,
  .legal-content p {
    font-size: 16px;
  }

  .about-responsible {
    padding: 54px 0 64px;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
    justify-content: space-between;
  }

  .age-actions {
    flex-direction: column;
  }

  .sport-card {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}