/* =============================================
   CAMELOT SLOTS — RESPONSIVE.CSS
   Mobile-First Media Queries
   ============================================= */

/* --- TABLET: max-width 1200px --- */
@media (max-width: 1200px) {
  :root {
    --section-padding: 80px;
  }

  .section-title {
    font-size: 40px;
  }

  .hero-title {
    font-size: 56px;
  }

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

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

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 30px;
  }

  .secrets-layout {
    gap: 50px;
  }

  .secrets-card-stack {
    width: 340px;
    height: 340px;
  }
}

/* --- TABLET: max-width 992px --- */
@media (max-width: 992px) {
  :root {
    --section-padding: 70px;
  }

  .container {
    padding: 0 30px;
  }

  .header-inner {
    padding: 0 24px;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-overlay {
    display: block;
  }

  .hero-section {
    padding: 140px 30px 80px;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 19px;
  }

  .page-hero-title {
    font-size: 44px;
  }

  .section-title {
    font-size: 36px;
  }

  .cta-title {
    font-size: 40px;
  }

  .secrets-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .secrets-visual {
    order: -1;
  }

  .secrets-card-stack {
    width: 320px;
    height: 320px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .rg-resources {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

/* --- MOBILE: max-width 768px --- */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }

  body {
    font-size: 16px;
  }

  .container {
    padding: 0 20px;
  }

  .hero-section {
    padding: 130px 20px 70px;
    min-height: auto;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 14px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .page-hero {
    padding: 140px 0 70px;
  }

  .page-hero-sm {
    padding: 130px 0 60px;
  }

  .page-hero-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 30px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 30px 24px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-card {
    padding: 28px 16px;
  }

  .stat-number {
    font-size: 30px;
  }

  .stat-label {
    font-size: 12px;
  }

  .magic-step {
    gap: 20px;
  }

  .magic-step-number {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }

  .magic-step-connector {
    margin-left: 23px;
  }

  .magic-step-content h3 {
    font-size: 20px;
  }

  .cta-title {
    font-size: 34px;
  }

  .cta-text {
    font-size: 17px;
  }

  .content-heading {
    font-size: 28px;
  }

  .contact-form-wrap {
    padding: 30px 24px;
  }

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

  .secrets-card-stack {
    width: 280px;
    height: 280px;
  }

  .secrets-floating-card {
    padding: 14px 18px;
  }

  .sfc-icon {
    font-size: 24px;
  }

  .sfc-label {
    font-size: 12px;
  }

  .game-frame-border {
    border-radius: 14px;
    padding: 4px;
  }

  .game-container {
    border-radius: 12px;
  }

  .game-container iframe {
    border-radius: 12px;
  }

  .rg-important-box {
    padding: 28px 20px;
  }
}

/* --- SMALL MOBILE: max-width 480px --- */
@media (max-width: 480px) {
  :root {
    --section-padding: 50px;
  }

  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-badge {
    padding: 6px 14px;
  }

  .badge-text {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .page-hero-title {
    font-size: 30px;
  }

  .section-title {
    font-size: 26px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 14px 28px;
    font-size: 13px;
  }

  .btn-lg {
    padding: 16px 32px;
    font-size: 14px;
  }

  .stat-number {
    font-size: 26px;
  }

  .cta-title {
    font-size: 28px;
  }

  .content-heading {
    font-size: 24px;
  }

  .game-frame-corner::before {
    width: 20px;
  }

  .game-frame-corner::after {
    height: 20px;
  }

  .contact-form-wrap {
    padding: 24px 18px;
  }

  .legal-content h2 {
    font-size: 22px;
  }

  .logo-text {
    font-size: 13px;
  }

  .secrets-card-stack {
    width: 260px;
    height: 260px;
  }
}