/* Tablet Styles */
@media (max-width: 992px) {
  .header-nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--color-white);
    transition: left 0.3s ease;
    z-index: 999;
    overflow-y: auto;
  }

  .header-nav.active {
    left: 0;
  }

  .nav-menu {
    flex-direction: column;
    padding: 30px;
    gap: 0;
  }

  .nav-item {
    border-bottom: 1px solid var(--color-border);
  }

  .nav-link {
    display: block;
    padding: 15px 0;
    font-size: 16px;
  }

  .burger-menu {
    display: flex;
  }

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

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

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

  .online-counter {
    display: none;
  }

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

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

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

  .screenshots-slider {
    grid-template-columns: 1fr;
  }

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

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

/* Mobile Styles */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .site-header {
    padding: 10px 0;
  }

  .site-logo {
    height: 40px;
  }

  .header-buttons {
    gap: 8px;
  }

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

  .hero-section {
    height: 400px;
  }

  .hero-content {
    padding: 25px;
  }

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

  .hero-text {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .hero-btn {
    padding: 12px 30px;
    font-size: 16px;
  }

  .hero-prev,
  .hero-next {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .content-wrapper {
    padding: 25px 20px;
  }

  .main-heading {
    font-size: 24px;
    margin-bottom: 20px;
  }

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

  .author-avatar img {
    width: 60px;
    height: 60px;
    margin: 0 auto;
  }

  .casino-info-table td {
    padding: 12px 15px;
    font-size: 14px;
  }

  .casino-info-table td:first-child {
    width: 40%;
  }

  .screenshots-slider {
    overflow-x: auto;
    display: flex;
    gap: 15px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .screenshot-item {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }

  .mobile-app-section {
    padding: 20px;
  }

  .app-download-buttons {
    flex-direction: column;
  }

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

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-form-container {
    padding: 20px;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-badges {
    justify-content: center;
  }

  .sticky-widget {
    bottom: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
    padding: 15px;
  }

  .widget-content {
    gap: 10px;
  }

  .widget-icon {
    font-size: 32px;
  }

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

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

  .payment-logos,
  .provider-logos {
    justify-content: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-section {
    height: 350px;
  }

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

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

  .main-heading {
    font-size: 20px;
  }

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

  .content-body h3 {
    font-size: 18px;
  }

  .casino-info-table {
    font-size: 13px;
  }

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

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-section {
    height: 300px;
  }

  .hero-content {
    padding: 20px;
  }

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

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