﻿:root {
  --red: #e8001e;
  --red-dark: #b30018;
  --red-light: #ff1a35;
  --bg-dark: #1a1a1a;
  --bg-card: #242424;
  --bg-card2: #2c2c2c;
  --text-primary: #ffffff;
  --text-muted: #aaaaaa;
  --border: #333333;
  --accent: #e8001e;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* ===== HEADER / NAV ===== */
header {
  background: #111111;
  border-bottom: 2px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.nav-logo-text {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: 1px;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

nav a {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

nav a:hover { color: #fff; background: rgba(232,0,30,0.15); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-login {
  background: transparent;
  border: 2px solid var(--red);
  color: var(--red);
  padding: 7px 18px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s;
}

.btn-login:hover { background: var(--red); color: #fff; }

.btn-register {
  background: var(--red);
  color: #fff;
  padding: 7px 18px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}

.btn-register:hover { background: var(--red-dark); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 40%, #cc0018 70%, #8b0010 100%);
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 20px;
  padding-right: min(48%, 640px);
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(54%, 660px);
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 1;
}

.hero-banner-image {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: right center;
  display: block;
}

.hero-badge {
  display: inline-block;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  max-width: 600px;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-bonus {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 520px;
}

.btn-cta {
  display: inline-block;
  background: #fff;
  color: var(--red);
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  background: #f5f5f5;
}

/* ===== FEATURE CARDS ===== */
.features {
  background: #1e1e1e;
  padding: 32px 20px;
}

.features-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 20px 0 20px 20px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
  min-height: 148px;
}

.feature-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
}

.feature-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 2;
  padding-right: 8px;
}

.feature-card-img {
  flex-shrink: 0;
  width: auto;
  max-width: 58%;
  height: auto;
  max-height: 130px;
  object-fit: contain;
  object-position: right bottom;
  align-self: flex-end;
  margin-top: auto;
  pointer-events: none;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}

.feature-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.btn-more {
  display: inline-block;
  margin-top: 12px;
  background: transparent;
  border: 1px solid var(--text-muted);
  color: var(--text-primary);
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: border-color 0.2s, color 0.2s;
  width: fit-content;
}

.btn-more:hover { border-color: var(--red); color: var(--red); }

/* ===== SPORT EVENTS ===== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sport-section.sport-events-section {
  max-width: 1280px;
  width: calc(100% - 40px);
  margin: 24px auto 32px;
  padding: 32px;
  background: #1f2429;
  border-radius: 18px;
  box-sizing: border-box;
  overflow: hidden;
}

.sport-events-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.sport-events-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}

.sport-search {
  position: relative;
  flex-shrink: 0;
  width: 275px;
  max-width: 100%;
}

.sport-search::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2.5' stroke-linecap='round'%3E%3Ccircle cx='10' cy='10' r='7'/%3E%3Cline x1='15.5' y1='15.5' x2='21' y2='21'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}

.sport-search input[type="search"] {
  width: 100%;
  background: #2a3036;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 7px;
  padding: 9px 12px 9px 36px;
  color: #fff;
  font-size: 0.88rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.sport-search input[type="search"]::placeholder {
  color: rgba(255,255,255,0.45);
}

.sport-search input[type="search"]:focus {
  border-color: rgba(255,255,255,0.2);
}

.sport-events-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.sport-events-row::-webkit-scrollbar {
  display: none;
}

.sport-event-card {
  position: relative;
  flex: 0 0 220px;
  height: 110px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, #6f777d 0%, #4a5258 50%, #3e454b 100%);
  transition: opacity 0.2s, transform 0.2s;
}

.sport-event-card:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.sport-event-card--live {
  background: #e4002b;
}

.sport-event-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 14px 16px;
  height: 100%;
  max-width: 58%;
}

.sport-event-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.sport-event-subtitle {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.62);
  margin-top: 5px;
  line-height: 1.3;
}

.sport-event-image {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: auto;
  max-width: 52%;
  object-fit: contain;
  object-position: right bottom;
  pointer-events: none;
}

.sport-events-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 14px;
}

.sport-events-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1;
  transition: border-color 0.2s, color 0.2s;
}

.sport-events-arrow:hover {
  border-color: rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.85);
}

/* ===== FONBET SHOWCASE SECTIONS ===== */
.fonbet-showcase-section {
  max-width: 1280px;
  width: calc(100% - 40px);
  margin: 0 auto 24px;
  padding: 32px;
  background: #1f2429;
  border-radius: 18px;
  box-sizing: border-box;
  overflow: hidden;
}

.fonbet-showcase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.fonbet-showcase-tabs {
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
}

.fonbet-showcase-tab {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 900;
  color: rgba(255,255,255,0.42);
  line-height: 1.1;
  transition: color 0.2s;
}

.fonbet-showcase-tab.is-active,
.fonbet-showcase-tab:hover {
  color: #fff;
}

.fonbet-showcase-title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}

.fonbet-showcase-all {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  transition: color 0.2s;
}

.fonbet-showcase-all:hover {
  color: #fff;
}

.promo-cards-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.promo-cards-row::-webkit-scrollbar {
  display: none;
}

.promo-card {
  position: relative;
  flex: 0 0 300px;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  transition: opacity 0.2s, transform 0.2s;
}

.promo-card:hover {
  opacity: 0.94;
  transform: translateY(-1px);
}

.promo-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.promo-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.45) 45%, rgba(0,0,0,0.05) 100%);
}

.promo-card-kicker {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: rgba(255,255,255,0.72);
  text-transform: uppercase;
  line-height: 1.2;
}

.promo-card-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: #fff;
  margin-top: 6px;
  line-height: 1.3;
}

.promo-card-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  line-height: 1.3;
}

.promo-card-button {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 14px;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 6px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #fff;
  width: fit-content;
  line-height: 1.2;
}

.quick-games-showcase-section .quick-games-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.quick-game-card {
  position: relative;
  height: 220px;
  min-width: 0;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  background: #2a3036;
  transition: opacity 0.2s, transform 0.2s;
}

.quick-game-card:hover {
  opacity: 0.94;
  transform: translateY(-1px);
}

.quick-game-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}

.quick-game-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  background: #e4002b;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  line-height: 1;
}

.quick-game-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.55) 42%, rgba(0,0,0,0.08) 100%);
}

.quick-game-title {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.quick-game-subtitle {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.62);
  margin-top: 5px;
  line-height: 1.35;
}

.fonbet-showcase-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 14px;
}

.fonbet-showcase-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1;
  transition: border-color 0.2s, color 0.2s;
}

.fonbet-showcase-arrow:hover {
  border-color: rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.85);
}

/* ===== MAIN CONTENT ===== */
.main-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

/* TOC */
.toc-wrap {
  background: var(--bg-card);
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin-bottom: 36px;
}

/* Content text styles */
.content-body {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 32px;
  border: 1px solid var(--border);
  line-height: 1.8;
}

.content-body p {
  margin-bottom: 1em;
  color: #ddd;
}

.content-body strong { color: #fff; }

/* ===== TABLE STYLES ===== */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.5em 0;
  border-radius: var(--radius);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  background: var(--bg-card2);
}

thead {
  background: var(--red);
}

thead th {
  color: #fff;
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

tbody tr:hover { background: rgba(232,0,30,0.07); }

tbody td {
  padding: 11px 16px;
  color: #ddd;
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  table { min-width: unset; }
  thead { display: none; }
  tbody tr {
    display: block;
    margin-bottom: 1em;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-card2);
  }
  tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6em 1em;
    border-bottom: 1px solid var(--border);
  }
  tbody td:last-child { border-bottom: none; }
  tbody td::before {
    content: attr(data-label);
    font-weight: bold;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 12px;
    flex-shrink: 0;
  }
}

/* ===== FAQ STYLES ===== */
.faq-section {
  margin-bottom: 40px;
}

.section-label {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}

details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}

details[open] {
  border-color: var(--red);
}

summary {
  cursor: pointer;
  font-weight: 700;
  padding: 16px 20px;
  color: #fff;
  font-size: 0.95rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
  user-select: none;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.2s;
}

details[open] summary::after {
  content: '−';
  transform: rotate(0deg);
}

details[open] summary {
  color: var(--red);
  background: rgba(232,0,30,0.08);
}

details p {
  padding: 0 20px 18px;
  color: #ccc;
  line-height: 1.7;
  font-size: 0.92rem;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
  margin-bottom: 40px;
}

.comment {
  background: var(--bg-card);
  padding: 1em 1.2em;
  border-radius: var(--radius);
  margin-bottom: 14px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.comment:hover { border-color: rgba(232,0,30,0.4); }

.comment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 2px;
}

.comment-author {
  font-weight: 700;
  font-size: 1.0rem;
  color: var(--red);
}

.comment-date {
  font-size: 0.85em;
  color: var(--text-muted);
  opacity: 0.7;
}

.comment-stars {
  color: #ffd700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.comment-text {
  margin-top: 0.5em;
  line-height: 1.6;
  color: #ccc;
  font-size: 0.92rem;
}

/* Review Form */
.review-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  margin-top: 20px;
}

.review-form-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
}

.review-form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-form-wrap input[type="text"],
.review-form-wrap textarea {
  background: #1a1a1a;
  border: 1px solid var(--border);
  border-radius: 7px;
  color: #fff;
  font-size: 0.92rem;
  padding: 11px 14px;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
  width: 100%;
}

.review-form-wrap input[type="text"]:focus,
.review-form-wrap textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(232,0,30,0.2);
}

.review-form-wrap textarea {
  min-height: 110px;
}

.btn-submit {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 12px 28px;
  border-radius: 7px;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
}

.btn-submit:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

/* ===== AUTHOR SECTION ===== */
.author-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
}

.author-inner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  border: 3px solid var(--red);
  box-shadow: 0 0 20px rgba(232,0,30,0.3);
}

.author-info { flex: 1; min-width: 200px; }

.author-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 4px;
}

.author-name-text {
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}

.author-bio-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== PROMO BANNER ===== */
.promo-banner {
  background: linear-gradient(90deg, var(--red-dark) 0%, var(--red) 100%);
  border-radius: var(--radius);
  padding: 32px;
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.promo-text p:first-child {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
  margin-bottom: 4px;
}

.promo-text p:last-child {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
}

.btn-cta-red {
  display: inline-block;
  background: #fff;
  color: var(--red);
  padding: 13px 32px;
  border-radius: 7px;
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  white-space: nowrap;
}

.btn-cta-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

/* ===== FOOTER ===== */
footer {
  background: #111;
  border-top: 2px solid var(--red);
  padding: 40px 20px 24px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand .brand-name {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-col-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links li a {
  color: var(--text-muted);
  font-size: 0.87rem;
  transition: color 0.2s;
}

.footer-links li a:hover { color: var(--red); }

.footer-partners {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 8px 0 32px;
}

.footer-partners::before,
.footer-partners::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.12);
  min-width: 24px;
}

.footer-partner-logo {
  height: 42px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.9;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.footer-disclaimer {
  color: var(--text-muted);
  font-size: 0.75rem;
  opacity: 0.6;
  max-width: 500px;
  text-align: right;
}

.responsible-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.responsible-badge span { color: var(--red); font-weight: 700; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  nav { display: none; }
  .btn-login { display: none; }
  .hero-inner {
    padding: 40px 20px;
    padding-right: 20px;
  }
  .hero-visual {
    width: 72%;
    max-width: 340px;
    opacity: 0.35;
  }
  .hero-banner-image {
    object-position: right center;
  }
  .features-inner {
    grid-template-columns: 1fr;
  }
  .feature-card {
    min-height: 130px;
  }
  .feature-card-img {
    max-width: 50%;
    max-height: 110px;
  }
  .sport-section.sport-events-section {
    width: calc(100% - 32px);
    padding: 24px 20px;
    margin: 20px auto 28px;
  }
  .fonbet-showcase-section {
    width: calc(100% - 32px);
    padding: 24px 20px;
    margin: 0 auto 20px;
  }
  .sport-search {
    width: 100%;
  }
  .promo-card {
    flex: 0 0 260px;
    height: 168px;
  }
  .quick-games-showcase-section .quick-games-row {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .quick-games-showcase-section .quick-games-row::-webkit-scrollbar {
    display: none;
  }
  .quick-game-card {
    flex: 0 0 240px;
    height: 200px;
  }
  .sport-event-card {
    flex: 0 0 200px;
    height: 104px;
  }
  .content-body { padding: 20px; }
  .promo-banner { padding: 20px; }
  .author-section { padding: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-disclaimer { text-align: left; max-width: 100%; }
  .footer-partners {
    gap: 16px;
    margin: 4px 0 24px;
  }
  .footer-partner-logo {
    height: 34px;
    max-width: 110px;
  }
}

@media (max-width: 480px) {
  .hero-visual {
    width: 68%;
    max-width: 280px;
    opacity: 0.28;
  }
  .sport-event-card {
    flex: 0 0 185px;
    height: 100px;
  }
  .promo-card {
    flex: 0 0 240px;
    height: 160px;
  }
  .quick-game-card {
    flex: 0 0 220px;
    height: 188px;
  }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-inner { padding: 0 14px; }
  .btn-register { padding: 7px 12px; font-size: 0.78rem; }
  .author-avatar { width: 60px; height: 60px; font-size: 1.5rem; }
}