@media (max-width: 768px) {
  .header__burger {
    display: block;
  }
  .header__nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--color-navy);
    border-bottom: 3px solid var(--color-gold);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  }
  .header__nav--open {
    display: flex;
  }
  .header__nav a {
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    padding: 0.75rem 0;
  }
  .hero__inner {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
  .hero__text {
    max-width: 100%;
  }
  .hero__game-preview {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .history__grid,
  .explainer__grid,
  .featured-game__grid,
  .editorial__inner,
  .contact__inner,
  .about__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .explainer__grid .explainer__image {
    order: 2; 
  }
  .features__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .features__grid .feature-card {
    text-align: center;
    align-items: center;
  }
  .pros-cons__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .footer__col {
    align-items: center;
  }
  .footer__payments,
  .footer__responsible {
    justify-content: center;
  }
  .comparison__table {
    font-size: 0.85rem;
  }
  .comparison__table th,
  .comparison__table td {
    padding: 0.75rem 1rem;
  }
  .lead-form__wrap {
    grid-template-columns: 1fr;
  }
  .lead-form__wrap input,
  .lead-form__wrap button {
    width: 100%;
  }
  .slot-machine__controls {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  :root {
    --size-hero: 1.8rem;
    --size-h2: 1.4rem;
  }
  .section {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }
  .slot-machine__display {
    gap: 4px;
    padding: 8px;
    height: 120px;
  }
  .slot-reel {
    height: 102px;
  }
  .slot-symbol {
    height: 102px;
  }
  .slot-symbol svg {
    width: 32px;
    height: 32px;
  }
  .slot-symbol span {
    font-size: 0.65rem;
  }
  @keyframes reelSpin {
    0% { transform: translateY(0); }
    100% { transform: translateY(-306px); }
  }
  #wheel-canvas {
    width: 280px;
    height: 280px;
  }
  .wheel-game__controls,
  .scratch-game__controls {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 320px) {
  .container {
    padding: 0 0.75rem;
  }
  .btn--large {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
  .header__logo {
    font-size: 1.1rem;
  }
}