/* ============================================
   JeuAviator.com — Full Stylesheet
   Mobile-first responsive design
   Aviator game theme (dark + red/orange)
   ============================================ */

/* --- CSS Variables --- */
:root {
  --bg: #0e0e1a;
  --bg-card: #1a1a2e;
  --bg-section: #141425;
  --primary: #e74c3c;
  --primary-hover: #ff6b35;
  --accent: #ff6b35;
  --accent-glow: rgba(231, 76, 60, 0.3);
  --green: #2ecc40;
  --green-hover: #3dd54a;
  --gold: #f1c40f;
  --text: #e8e8f0;
  --text-muted: #9a9ab5;
  --text-heading: #ffffff;
  --border: #2a2a45;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 8px 30px rgba(231, 76, 60, 0.2);
  --transition: 0.3s ease;
  --max-width: 1200px;
  --header-height: 64px;
}

/* --- Reset --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-hover);
}

ul, ol {
  padding-left: 1.5em;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-heading);
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 0.75rem; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); margin-bottom: 0.5rem; }
h4 { font-size: clamp(1rem, 2vw, 1.25rem); margin-bottom: 0.5rem; }

p {
  margin-bottom: 1rem;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

/* --- Skip Link (Accessibility) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius);
  z-index: 10000;
  font-weight: 600;
}

.skip-link:focus {
  top: 8px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(14, 14, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: var(--header-height);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-heading);
  text-decoration: none;
}

.header__logo img {
  height: 36px;
  width: auto;
}

/* Desktop Nav */
.nav {
  display: none;
  list-style: none;
  gap: 4px;
  padding: 0;
}

.nav a {
  display: block;
  padding: 8px 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav a:hover,
.nav a.active {
  color: var(--text-heading);
  background: rgba(231, 76, 60, 0.1);
}

/* CTA Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--green);
  color: #000;
}

.btn--primary:hover {
  background: var(--green-hover);
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(46, 204, 64, 0.3);
}

.btn--secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn--secondary:hover {
  background: var(--primary);
  color: #fff;
}

.btn--large {
  padding: 14px 32px;
  font-size: 1.1rem;
}

.btn--small {
  padding: 6px 14px;
  font-size: 0.85rem;
}

.header__cta {
  display: none;
}

/* Burger Menu */
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all var(--transition);
  border-radius: 2px;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(14, 14, 26, 0.98);
  z-index: 999;
  padding: 24px 16px;
  overflow-y: auto;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 14px 16px;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.mobile-menu a:hover {
  color: var(--primary);
  padding-left: 24px;
}

.mobile-menu__cta {
  display: block;
  margin-top: 20px;
  text-align: center;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding: 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, var(--accent-glow) 0%, transparent 50%);
  opacity: 0.3;
  pointer-events: none;
}

.hero__plane {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero__plane svg {
  width: 60%;
  height: auto;
  max-height: 100%;
  margin-left: auto;
}

.hero .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .hero__plane svg {
    width: 100%;
  }
  .hero__plane {
    opacity: 0.2;
  }
}

.hero__badge {
  display: inline-block;
  background: rgba(231, 76, 60, 0.15);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

.hero h1 {
  position: relative;
}

.hero__split {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero__split-text {
  flex: 1;
}

.hero__split-image {
  flex: 0 0 280px;
  text-align: center;
}

.hero__split-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  filter: drop-shadow(0 8px 32px rgba(231, 76, 60, 0.2));
}

@media (max-width: 767px) {
  .hero__split {
    flex-direction: column;
    text-align: center;
  }
  .hero__split-image {
    flex: none;
    width: 200px;
    order: -1;
  }
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 24px;
}

.hero__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* Quick Stats */
.quick-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.quick-stats__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  text-align: center;
}

.quick-stats__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.quick-stats__value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-heading);
}

.quick-stats__value--highlight {
  color: var(--green);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 48px 0;
}

.section--alt {
  background: var(--bg-section);
}

.section__header {
  text-align: center;
  margin-bottom: 32px;
}

.section__header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
}

.card:hover {
  border-color: rgba(231, 76, 60, 0.3);
  box-shadow: var(--shadow-hover);
}

.cards-grid {
  display: grid;
  gap: 16px;
}

/* ============================================
   CASINO TABLE
   ============================================ */
.casino-table {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.casino-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.casino-table th {
  background: var(--bg-section);
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}

.casino-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.casino-table tr:hover td {
  background: rgba(231, 76, 60, 0.05);
}

.casino-table__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text-heading);
}

.casino-table__logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
  padding: 4px;
}

.casino-table__bonus {
  color: var(--green);
  font-weight: 600;
}

.casino-table__badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.casino-table__badge--top {
  background: rgba(241, 196, 15, 0.15);
  color: var(--gold);
}

/* Casino Cards (Mobile) */
.casino-cards {
  display: none;
}

.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 12px;
}

.casino-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.casino-card__header img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
  padding: 4px;
}

.casino-card__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.casino-card__field {
  font-size: 0.85rem;
}

.casino-card__field span {
  display: block;
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.active {
  border-color: rgba(231, 76, 60, 0.4);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  background: var(--bg-card);
  border: none;
  color: var(--text-heading);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background var(--transition);
  gap: 12px;
}

.faq-question:hover {
  background: rgba(26, 26, 46, 0.8);
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--primary);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer__inner {
  padding: 0 20px 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ============================================
   AUTHOR BOX
   ============================================ */
.author-box {
  display: flex;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  align-items: flex-start;
}

.author-box__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--primary);
}

.author-box__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 4px;
}

.author-box__title {
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.author-box__bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   HOW-TO STEPS
   ============================================ */
.steps {
  counter-reset: step;
}

.step {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.step__content h3 {
  margin-bottom: 8px;
}

.step__content p {
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ============================================
   IMAGE GALLERY
   ============================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.gallery img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform var(--transition);
}

.gallery img:hover {
  transform: scale(1.02);
}

/* ============================================
   CALCULATOR
   ============================================ */
.calculator {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  max-width: 500px;
  margin: 0 auto;
}

.calculator__field {
  margin-bottom: 16px;
}

.calculator__field label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 500;
}

.calculator__field input {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 1rem;
  transition: border-color var(--transition);
}

.calculator__field input:focus {
  outline: none;
  border-color: var(--primary);
}

.calculator__result {
  text-align: center;
  padding: 16px;
  background: rgba(46, 204, 64, 0.1);
  border: 1px solid rgba(46, 204, 64, 0.3);
  border-radius: var(--radius);
  margin-top: 16px;
}

.calculator__result-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
}

/* ============================================
   PROS / CONS
   ============================================ */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.pros, .cons {
  padding: 20px;
  border-radius: var(--radius-lg);
}

.pros {
  background: rgba(46, 204, 64, 0.08);
  border: 1px solid rgba(46, 204, 64, 0.2);
}

.cons {
  background: rgba(231, 76, 60, 0.08);
  border: 1px solid rgba(231, 76, 60, 0.2);
}

.pros h4 { color: var(--green); }
.cons h4 { color: var(--primary); }

.pros li, .cons li {
  margin-bottom: 6px;
  padding-left: 4px;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  padding: 12px 0;
  font-size: 0.85rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  gap: 4px;
}

.breadcrumb li::after {
  content: '›';
  margin-left: 4px;
  color: var(--text-muted);
}

.breadcrumb li:last-child::after {
  display: none;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb li:last-child {
  color: var(--text);
}

/* ============================================
   TABLE OF CONTENTS
   ============================================ */
.toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 32px;
}

.toc__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-heading);
}

.toc ol {
  padding-left: 1.25em;
}

.toc li {
  margin-bottom: 6px;
}

.toc a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.toc a:hover {
  color: var(--primary);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  gap: 16px;
}

.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.testimonial__stars {
  color: var(--gold);
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.testimonial__text {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.testimonial__author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-heading);
}

.testimonial__location {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonial__source {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 6px;
  opacity: 0.7;
}

.testimonial__source a {
  color: var(--text-muted);
  text-decoration: underline;
}

.testimonials-note {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   INFO BOX / WARNING
   ============================================ */
.info-box {
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.info-box--warning {
  background: rgba(241, 196, 15, 0.1);
  border: 1px solid rgba(241, 196, 15, 0.3);
  color: var(--gold);
}

.info-box--info {
  background: rgba(52, 152, 219, 0.1);
  border: 1px solid rgba(52, 152, 219, 0.3);
  color: #5dade2;
}

.info-box--danger {
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
  color: var(--primary);
}

/* ============================================
   LAST UPDATED
   ============================================ */
.last-updated {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: rgba(46, 204, 64, 0.08);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(46, 204, 64, 0.2);
}

.last-updated::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  padding: 48px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer__heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 16px;
}

.footer__links {
  list-style: none;
  padding: 0;
}

.footer__links li {
  margin-bottom: 8px;
}

.footer__links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--primary);
}

.footer__about p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Trust Badges */
.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.footer__badges img {
  height: 40px;
  width: auto;
  opacity: 0.8;
  transition: opacity var(--transition);
}

.footer__badges img:hover {
  opacity: 1;
}

/* Disclaimer */
.footer__disclaimer {
  padding: 20px 0;
  border-top: 1px solid var(--border);
}

.footer__disclaimer p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: center;
}

.footer__disclaimer strong {
  color: var(--primary);
}

/* Copyright */
.footer__copyright {
  text-align: center;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   STICKY CTA BAR (Mobile)
   ============================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(14, 14, 26, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.sticky-cta__text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.sticky-cta .btn {
  flex-shrink: 0;
  padding: 8px 20px;
  font-size: 0.9rem;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 16px;
}

.cookie-banner.visible {
  display: block;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 0.85rem;
  color: var(--text-muted);
  flex: 1;
}

.cookie-banner__buttons {
  display: flex;
  gap: 8px;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.form__group {
  margin-bottom: 16px;
}

.form__group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 500;
}

.form__group input,
.form__group textarea,
.form__group select {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color var(--transition);
}

.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
  outline: none;
  border-color: var(--primary);
}

.form__group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============================================
   RESPONSIVE — Tablet (768px+)
   ============================================ */
@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }

  .hero {
    padding: 60px 0;
  }

  .quick-stats {
    grid-template-columns: repeat(4, 1fr);
    max-width: 700px;
  }

  .section {
    padding: 64px 0;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .pros-cons {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   RESPONSIVE — Desktop (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .nav {
    display: flex;
  }

  .header__cta {
    display: inline-flex;
  }

  .burger {
    display: none;
  }

  .hero {
    padding: 80px 0;
  }

  .section {
    padding: 80px 0;
  }

  .cards-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .sticky-cta {
    display: none !important;
  }
}

/* ============================================
   RESPONSIVE — Mobile overrides
   ============================================ */
@media (max-width: 767px) {
  .casino-table {
    display: none;
  }

  .casino-cards {
    display: block;
  }

  .sticky-cta {
    display: block;
  }

  .author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .step {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-primary { color: var(--primary); }
.text-green { color: var(--green); }
.text-gold { color: var(--gold); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Print */
@media print {
  .header, .footer, .sticky-cta, .cookie-banner, .btn {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
  }
}
