:root {
  --bg-page: #f9fafc;
  --bg-page-soft: #f1f5f9;
  --bg-section: #ffffff;
  --bg-section-alt: #f8fafc;
  --bg-chip: #ede9fe;
  --ink-main: #1f2937;
  --ink-soft: #64748b;
  --ink-muted: #94a3b8;
  --accent: #7c3aed;
  --accent-soft: #c4b5fd;
  --accent-strong: #6d28d9;
  --border-soft: #e2e8f0;
  --radius-lg: 12px;
  --radius-md: 8px;
  --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-strong: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom, #f3e8ff 0%, var(--bg-page-soft) 50%, var(--bg-page) 100%);
  color: var(--ink-main);
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
}
section {
  padding: 60px 0;
}
.main-header {
  position: fixed;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}
.header-inner {
  max-width: 1200px;
  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.02em;
  text-transform: uppercase;
  color: var(--accent-strong);
  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: 8px 0;
  transition: color 0.3s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav a:hover {
  color: var(--accent-strong);
}
.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, #f3e8ff 0%, #ede9fe 100%);
  padding: 100px 0 90px;
  color: var(--ink-main);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 95%;
  display: flex;
  flex-direction: row;
  gap: 50px;
  align-items: center;
}
.hero-content {
  flex: 1;
}
.hero-image {
  flex: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-md);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--bg-chip);
  color: var(--accent-strong);
}
.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.hero-content h1 {
  font-size: clamp(2rem, 2.5vw + 1.5rem, 2.5rem);
  margin: 16px 0 8px;
  color: var(--ink-main);
}
.hero-content p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: 500px;
  line-height: 1.6;
  margin: 6px 0;
}
.hero-content .highlight {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 6px 12px;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 500;
  background: var(--bg-chip);
  color: var(--accent-strong);
}
.hero-content .highlight::before {
  content: "•";
  font-size: 0.9rem;
  opacity: 0.8;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.btn-primary,
.btn-ghost {
  border-radius: var(--radius-md);
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-strong);
}
.btn-ghost {
  border: 1px solid var(--border-soft);
  background: transparent;
  color: var(--ink-main);
}
.btn-ghost:hover {
  background: var(--bg-section-alt);
  border-color: var(--accent-soft);
}
.hero-image-frame {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.hero-image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom left, rgba(124, 58, 237, 0.1), transparent 60%);
  mix-blend-mode: screen;
}
.hero-image img {
  position: relative;
  border-radius: var(--radius-md);
  object-fit: cover;
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header.centered {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}
.section-header h2 {
  font-size: 1.8rem;
  margin: 0 0 6px;
  color: var(--ink-main);
}
.section-header .subtitle {
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.6;
}
.about-section {
  background: var(--bg-section);
}
.about-layout {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  margin-bottom: 36px;
}
.about-layout-main {
  margin-bottom: 44px;
}
.about-layout-alt {
  margin-top: 10px;
}
.about-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 20px 20px 22px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
}
.about-card h3 {
  font-size: 1.2rem;
  margin: 0 0 10px;
  color: var(--ink-main);
}
.about-card p {
  margin: 6px 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.about-card strong {
  color: var(--accent-strong);
}
.about-media {
  align-self: stretch;
}
.about-image {
  position: relative;
  height: 100%;
}
.about-image::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.4);
  pointer-events: none;
}
.about-image img {
  border-radius: var(--radius-md);
  height: 100%;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}
.features-section {
  background: var(--bg-section-alt);
}
.features-grid,
.features-reversed {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}
.feature-item {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 18px 16px 20px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
  border-color: var(--accent-soft);
}
.feature-icon {
  font-size: 1.6rem;
  color: var(--accent-strong);
  margin-bottom: 8px;
}
.feature-item h4 {
  font-size: 1rem;
  margin: 0 0 6px;
  color: var(--ink-main);
}
.feature-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.why-section {
  background: linear-gradient(180deg, var(--bg-chip) 0%, var(--bg-section-alt) 50%, #ffffff 100%);
}
.why-content {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
.why-text h2 {
  font-size: 1.8rem;
  margin: 0 0 12px;
  color: var(--ink-main);
}
.why-text p {
  margin: 6px 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.why-text strong {
  color: var(--accent-strong);
}
.why-list {
  margin: 10px 0 12px;
  padding-left: 18px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.why-list li + li {
  margin-top: 3px;
}
.why-image-frame {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: var(--shadow-soft);
}
.why-image img {
  border-radius: var(--radius-md);
  object-fit: cover;
}
.bookmakers-section {
  background: var(--bg-section);
}
.bookmakers-layout {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.bookmaker-card {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 22px 22px 24px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}
.bookmaker-info h3 {
  font-size: 1.3rem;
  margin: 0 0 8px;
  color: var(--ink-main);
}
.bookmaker-info p {
  margin: 6px 0 10px;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.bookmaker-highlights {
  margin: 2px 0 14px;
  padding-left: 18px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.bookmaker-highlights li + li {
  margin-top: 3px;
}
.bookmaker-media img {
  border-radius: var(--radius-md);
  object-fit: cover;
  height: 100%;
  min-height: 160px;
}
.bookmaker-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  background: var(--accent);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.bookmaker-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-strong);
  filter: brightness(1.05);
}
.responsible-note {
  margin-top: 28px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: var(--bg-section-alt);
  border: 1px solid var(--border-soft);
}
.responsible-note h4 {
  margin: 0 0 6px;
  font-size: 0.95rem;
  color: var(--ink-main);
}
.responsible-note p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.testimonials-section {
  background: var(--bg-section-alt);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.testimonial-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 18px 16px 20px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.testimonial-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-strong);
  border-color: var(--accent-soft);
}
.testimonial-text {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 10px;
}
.testimonial-author {
  text-align: right;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--accent-strong);
}
.important-message {
  background: var(--ink-main);
  color: #f1f5f9;
  padding: 60px 0;
}
.message-box {
  max-width: 860px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  padding: 24px 22px 24px;
  background: rgba(30, 41, 59, 0.95);
  border: 1px solid rgba(100, 116, 139, 0.8);
  box-shadow: var(--shadow-strong);
}
.message-box h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  color: #f9fafb;
}
.message-box p {
  margin: 6px 0;
  font-size: 0.9rem;
  color: #e2e8f0;
  line-height: 1.7;
}
.message-box .last-line {
  margin-top: 16px;
  font-weight: 500;
  color: #fbbf24;
}
.footer-section {
  background: #0f172a;
  padding: 24px 0 18px;
  color: #94a3b8;
  font-size: 0.85rem;
  border-top: 1px solid #1e293b;
}
.footer-links {
  text-align: center;
  line-height: 1.6;
}
.footer-links a {
  color: #cbd5e1;
  margin: 0 4px;
}
.footer-links a:hover {
  text-decoration: underline;
}
.sitename {
  color: #cbd5e1;
}
.divider-banner {
  background: var(--accent);
  color: #ffffff;
  padding: 20px 0;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
}
.divider-banner p {
  margin: 0;
}
@media (max-width: 992px) {
  .hero-inner {
    flex-direction: column;
  }
  .about-layout,
  .why-content,
  .bookmaker-card {
    flex-direction: column;
  }
  .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: var(--radius-md);
    border: 1px solid var(--border-soft);
    padding: 8px 12px 10px;
    margin-top: 8px;
    box-shadow: var(--shadow-soft);
    display: none;
  }
  .menu-icon {
    display: block;
  }
  #menu-toggle:checked + .menu-icon + .nav ul {
    display: flex;
  }
  .hero {
    padding: 80px 0 60px;
  }
  section {
    padding: 50px 0;
  }
  .features-grid,
  .features-reversed {
    grid-template-columns: minmax(0, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 576px) {
  .hero-inner {
    width: 92%;
  }
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .bookmaker-card {
    padding: 18px 16px 20px;
  }
  .message-box {
    padding: 20px 16px;
  }
}