/* Responsive Styles */

@media (max-width: 992px) {
  .desktop-menu {
    display: none;
  }

  .burger {
    display: flex;
  }

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

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

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

  .toc-list {
    grid-template-columns: 1fr;
  }

  .app-info-section,
  .screenshots-section,
  .video-section,
  .demo-section,
  .faq-section,
  .author-section {
    padding: 30px 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-wrapper {
    flex-wrap: wrap;
  }

  .online-players {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero-section {
    padding: 60px 20px;
  }

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

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

  .hero-buttons {
    flex-direction: column;
  }

  .btn-lg {
    width: 100%;
    padding: 15px 30px;
  }

  .screenshots-slider {
    grid-template-columns: 1fr;
    overflow-x: auto;
    display: flex;
    gap: 15px;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .screenshot-item {
    flex: 0 0 280px;
    scroll-snap-align: center;
  }

  .demo-wrapper iframe {
    height: 400px;
  }

  .widget-content {
    flex-direction: column;
    text-align: center;
  }

  .widget-btn {
    width: 100%;
  }

  .app-info-table {
    font-size: 14px;
  }

  .app-info-table td {
    padding: 10px;
  }

  .btn-group {
    flex-direction: column;
    width: 100%;
  }

  .download-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 10px 0;
  }

  .logo img {
    height: 40px;
  }

  .header-buttons {
    gap: 5px;
  }

  .btn {
    padding: 8px 15px;
    font-size: 13px;
  }

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

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

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

  .toc-wrapper,
  .intro-section,
  .app-info-section,
  .screenshots-section,
  .video-section,
  .demo-section,
  .faq-section,
  .author-section {
    padding: 20px 15px;
  }

  .faq-question {
    font-size: 16px;
    padding: 15px;
  }

  .widget-bonus {
    font-size: 16px;
  }

  .widget-fs {
    font-size: 12px;
  }

  .widget-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-section {
    padding: 40px 20px;
  }

  .demo-wrapper iframe {
    height: 350px;
  }
}

/* Print styles */
@media print {
  .header,
  .fixed-widget,
  .burger,
  .mobile-menu {
    display: none;
  }

  body {
    background: white;
    color: black;
  }
}
