:root {
  --bg-page: #fff7ed;
  --bg-page-soft: #ffedd5;
  --bg-section: #ffffff;
  --bg-section-alt: #fffaf0;
  --bg-chip: #ffedd5;
  --ink-main: #431407;
  --ink-soft: #713f12;
  --ink-muted: #854d0e;
  --accent: #ea580c;
  --accent-soft: #fdba74;
  --accent-strong: #c2410c;
  --border-soft: #fed7aa;
  --radius-lg: 8px;
  --radius-md: 4px;
  --shadow-soft: 0 10px 20px rgba(69, 26, 3, 0.08);
  --shadow-strong: 0 15px 30px rgba(69, 26, 3, 0.12);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: linear-gradient(to bottom, #ffedd5 0%, #fff7ed 100%);
  color: var(--ink-main);
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}
section {
  padding: 60px 0;
}
.main-header {
  position: fixed;
  top: 0;
  z-index: 1000;
  background: rgba(255, 247, 237, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(253, 186, 116, 0.8);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
.logo a {
  color: inherit;
}
.nav {
  display: flex;
  align-items: center;
}
.nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}
.nav a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-muted);
  padding: 7px 3px;
  transition: color 0.25s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2.5px;
  width: 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent-strong), var(--accent));
  transition: width 0.25s ease;
}
.nav a:hover {
  color: var(--accent);
}
.nav a:hover::after {
  width: 100%;
}
.menu-icon {
  display: none;
  font-size: 1.8rem;
  color: var(--ink-main);
  cursor: pointer;
}
#menu-toggle {
  display: none;
}
.hero {
  background: linear-gradient(to right, #fff7ed 0%, #ffedd5 100%);
  padding: 95px 0 85px;
  color: #431407;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 90%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 45px;
  align-items: center;
}
.hero-content {
  order: 1;
}
.hero-image {
  order: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 13px;
  border-radius: 8px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  background: rgba(69, 26, 3, 0.1);
  border: 1px solid rgba(69, 26, 3, 0.2);
  color: #713f12;
}
.hero-badge::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}
.hero-content h1 {
  font-size: clamp(2.3rem, 2.6vw + 1.7rem, 3rem);
  margin: 20px 0 12px;
  color: #431407;
}
.hero-content p {
  font-size: 1rem;
  color: #854d0e;
  max-width: 580px;
  line-height: 1.75;
  margin: 9px 0;
}
.hero-content .highlight {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  padding: 9px 15px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  background: rgba(69, 26, 3, 0.05);
  border: 1px solid rgba(234, 88, 12, 0.3);
  color: #fdba74;
}
.hero-content .highlight::before {
  content: "★";
  font-size: 0.95rem;
  opacity: 0.9;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.btn-primary,
.btn-ghost {
  border-radius: 8px;
  padding: 11px 23px;
  font-size: 0.96rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #f97316);
  color: #fff7ed;
  box-shadow: 0 10px 25px rgba(234, 88, 12, 0.4);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(234, 88, 12, 0.6);
}
.btn-ghost {
  border: 1px solid rgba(133, 77, 14, 0.8);
  background: rgba(69, 26, 3, 0.05);
  color: #854d0e;
}
.btn-ghost:hover {
  background: rgba(69, 26, 3, 0.1);
  border-color: rgba(133, 77, 14, 1);
}
.hero-image-frame {
  background: #fffaf0;
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.hero-image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom right, rgba(234, 88, 12, 0.15), transparent 60%);
  mix-blend-mode: screen;
}
.hero-image img {
  position: relative;
  border-radius: 12px;
  object-fit: cover;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header.centered {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}
.section-header h2 {
  font-size: 2rem;
  margin: 0 0 9px;
  color: var(--ink-main);
}
.section-header .subtitle {
  font-size: 1rem;
  color: var(--ink-muted);
  line-height: 1.75;
}
.about-section {
  background: var(--bg-section);
}
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: center;
  margin-bottom: 44px;
}
.about-layout-main {
  margin-bottom: 52px;
}
.about-layout-alt {
  margin-top: 14px;
}
.about-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 24px 24px 26px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
}
.about-card h3 {
  font-size: 1.3rem;
  margin: 0 0 14px;
  color: var(--ink-main);
}
.about-card p {
  margin: 9px 0;
  font-size: 0.97rem;
  color: var(--ink-soft);
  line-height: 1.8;
}
.about-card strong {
  color: var(--accent);
}
.about-media {
  align-self: stretch;
}
.about-image {
  position: relative;
  height: 100%;
}
.about-image::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 18px;
  border: 1px solid rgba(133, 77, 14, 0.5);
  pointer-events: none;
}
.about-image img {
  border-radius: 16px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}
.features-section {
  background: var(--bg-section-alt);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 32px;
}
.feature-item {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 22px 20px 24px;
  border: 1px solid rgba(253, 186, 116, 0.8);
  box-shadow: 0 10px 25px rgba(69, 26, 3, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(234, 88, 12, 0.6);
}
.feature-icon {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 12px;
}
.feature-item h4 {
  font-size: 1.1rem;
  margin: 0 0 9px;
  color: var(--ink-main);
}
.feature-item p {
  margin: 0;
  font-size: 0.96rem;
  color: var(--ink-soft);
  line-height: 1.75;
}
.why-section {
  background: linear-gradient(180deg, #ffedd5 0%, #fffaf0 100%);
}
.why-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: center;
}
.why-text h2 {
  font-size: 2rem;
  margin: 0 0 16px;
  color: var(--ink-main);
}
.why-text p {
  margin: 9px 0;
  font-size: 0.97rem;
  color: var(--ink-soft);
  line-height: 1.85;
}
.why-text strong {
  color: var(--accent);
}
.why-list {
  margin: 14px 0 16px;
  padding-left: 22px;
  font-size: 0.97rem;
  color: var(--ink-soft);
}
.why-list li + li {
  margin-top: 5px;
}
.why-image-frame {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-soft);
}
.why-image img {
  border-radius: 16px;
  object-fit: cover;
}
.bookmakers-section {
  background: var(--bg-section);
}
.bookmakers-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-content: center;
  margin-top: 36px;
}
.bookmaker-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: center;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 26px 26px 28px;
  border: 1px solid rgba(253, 186, 116, 0.85);
  box-shadow: var(--shadow-soft);
}
.bookmaker-info h3 {
  font-size: 1.5rem;
  margin: 0 0 11px;
  color: var(--ink-main);
}
.bookmaker-info p {
  margin: 9px 0 14px;
  font-size: 0.97rem;
  color: var(--ink-soft);
  line-height: 1.8;
}
.bookmaker-highlights {
  margin: 5px 0 18px;
  padding-left: 22px;
  font-size: 0.96rem;
  color: var(--ink-soft);
}
.bookmaker-highlights li + li {
  margin-top: 5px;
}
.bookmaker-media img {
  border-radius: 16px;
  object-fit: cover;
  height: 100%;
  min-height: 190px;
}
.bookmaker-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 0.96rem;
  font-weight: 500;
  background: linear-gradient(135deg, var(--accent), #f97316);
  color: #fff7ed;
  box-shadow: 0 12px 28px rgba(234, 88, 12, 0.4);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.bookmaker-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(234, 88, 12, 0.6);
  filter: brightness(1.04);
}
.responsible-note {
  margin-top: 32px;
  padding: 17px 19px;
  border-radius: 12px;
  background: #fffaf0;
  border: 1px solid rgba(133, 77, 14, 0.8);
}
.responsible-note h4 {
  margin: 0 0 9px;
  font-size: 1.05rem;
  color: var(--ink-main);
}
.responsible-note p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.75;
}
.testimonials-section {
  background: var(--bg-section-alt);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.testimonial-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 22px 20px 24px;
  border: 1px solid rgba(253, 186, 116, 0.85);
  box-shadow: 0 10px 24px rgba(69, 26, 3, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(234, 88, 12, 0.6);
}
.testimonial-text {
  font-style: normal;
  font-size: 0.96rem;
  color: var(--ink-soft);
  line-height: 1.85;
  margin: 0 0 14px;
}
.testimonial-author {
  text-align: left;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--accent);
}
.important-message {
  background: #431407;
  color: #fed7aa;
  padding: 68px 0;
}
.message-box {
  max-width: 950px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  padding: 28px 26px 28px;
  background: rgba(69, 26, 3, 0.95);
  border: 1px solid rgba(133, 77, 14, 0.8);
  box-shadow: var(--shadow-strong);
}
.message-box h3 {
  margin: 0 0 16px;
  font-size: 1.35rem;
  color: #fff7ed;
}
.message-box p {
  margin: 9px 0;
  font-size: 0.96rem;
  color: #fed7aa;
  line-height: 1.85;
}
.message-box .last-line {
  margin-top: 20px;
  font-weight: 500;
  color: #fbbf24;
}
.footer-section {
  background: #2c0e03;
  padding: 28px 0 22px;
  color: #a16207;
  font-size: 0.89rem;
  border-top: 1px solid #431407;
}
.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}
.img-container {
  background: #2c0e03;
  border-radius: 10px;
  padding: 9px;
  width: 160px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #431407;
}
.img-container img {
  max-height: 46px;
  object-fit: contain;
}
.footer-links {
  text-align: center;
  line-height: 1.75;
}
.footer-links a {
  color: #fed7aa;
  margin: 0 6px;
}
.footer-links a:hover {
  text-decoration: underline;
}
.footer-updated {
  margin-top: 3px;
  font-size: 0.85rem;
  color: #854d0e;
}
.sitename {
  color: #fed7aa;
}
@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-content {
    order: 2;
  }
  .hero-image {
    order: 1;
  }
  .about-layout,
  .why-content,
  .bookmaker-card {
    grid-template-columns: minmax(0, 1fr);
  }
  .bookmaker-media {
    order: 1;
  }
}
@media (max-width: 768px) {
  .header-inner {
    padding-inline: 5%;
  }
  .nav ul {
    position: absolute;
    flex-direction: column;
    align-items: flex-start;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(253, 186, 116, 0.85);
    padding: 11px 15px 13px;
    margin-top: 11px;
    box-shadow: 0 10px 24px rgba(69, 26, 3, 0.08);
    display: none;
  }
  .menu-icon {
    display: block;
  }
  #menu-toggle:checked + .menu-icon + .nav ul {
    display: flex;
  }
  .hero {
    padding: 85px 0 68px;
  }
  section {
    padding: 65px 0;
  }
  .features-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 576px) {
  .hero-inner {
    width: 88%;
  }
  .hero-content h1 {
    font-size: 2.1rem;
  }
  .bookmaker-card {
    padding: 22px 20px 24px;
  }
  .message-box {
    padding: 24px 22px;
  }
}