/* ============================================================
   OMNICLICKDRFT.CLICK — RESPONSIVE.CSS
   Box-Slot Social Casino — Responsive Breakpoints
   ============================================================ */

/* ─── TABLET (≤ 1100px) ─────────────────────────────────────── */
@media (max-width: 1100px) {

  :root {
    --space-xl: 80px;
  }

  .fairplay-grid,
  .values-grid,
  .rg-grid,
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .legal-layout {
    grid-template-columns: 200px 1fr;
  }

  .hero-headline {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
  }

}

/* ─── SMALL TABLET (≤ 900px) ────────────────────────────────── */
@media (max-width: 900px) {

  .main-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-right {
    order: -1;
  }

  .hero-game-preview {
    width: 280px;
    height: 280px;
  }

  .preview-box {
    width: 70px;
    height: 70px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .rewards-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .rewards-text .section-title.left {
    text-align: center;
  }

  .rewards-list {
    align-items: center;
  }

  .rewards-visual {
    justify-content: center;
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-stats {
    max-width: 480px;
    margin: 0 auto;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .company-details-grid {
    grid-template-columns: 1fr;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
  }

  .cta-strip-inner {
    flex-direction: column;
    text-align: center;
  }

}

/* ─── MOBILE (≤ 640px) ──────────────────────────────────────── */
@media (max-width: 640px) {

  :root {
    --space-xl: 60px;
    --space-lg: 48px;
    --space-md: 24px;
    --font-size-base: 15px;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .hero-section {
    padding-top: calc(var(--header-height) + 40px);
  }

  .hero-badge {
    font-size: 0.74rem;
  }

  .hero-game-preview {
    width: 240px;
    height: 240px;
  }

  .preview-box {
    width: 58px;
    height: 58px;
    font-size: 1.4rem;
  }

  .preview-box-grid {
    padding: 16px;
    gap: 8px;
  }

  .features-grid,
  .fairplay-grid,
  .values-grid,
  .rg-grid,
  .resources-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: unset;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }

  .game-embed {
    aspect-ratio: 4/3;
  }

  .symbol-row {
    grid-template-columns: 50px 1fr 1fr;
    font-size: 0.82rem;
    padding: 10px 14px;
  }

  .page-hero {
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 60px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .btn-lg {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .game-actions {
    flex-direction: column;
    align-items: center;
  }

  .company-card {
    padding: var(--space-md);
  }

  .contact-form-wrapper {
    padding: var(--space-md) var(--space-sm);
  }

  .rg-intro-card {
    padding: var(--space-md);
  }

  .tip-item {
    flex-direction: column;
    gap: 10px;
  }

  .cta-strip-inner {
    padding: var(--space-md);
  }

  .reward-card-stack {
    transform: scale(0.85);
  }

}

/* ─── EXTRA SMALL (≤ 400px) ─────────────────────────────────── */
@media (max-width: 400px) {

  .logo-text {
    font-size: 0.88rem;
  }

  .hero-headline {
    font-size: 2rem;
  }

  .preview-box {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

}

/* ─── REDUCED MOTION ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }

}