/* Tablet */
@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }

  .burger-menu {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

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

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

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

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

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

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

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

  .box-shadow {
    padding: 30px 20px;
  }
}

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

  .header-inner {
    flex-wrap: wrap;
  }

  .online-counter {
    display: none;
  }

  .hero-slider {
    height: 350px;
  }

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

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

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-hero {
    width: 100%;
  }

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

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

  .jackpot-amount {
    font-size: 28px;
  }

  .desktop-grid {
    display: none;
  }

  .mobile-slider {
    display: block;
    position: relative;
    overflow: hidden;
  }

  .slider-track {
    display: flex;
    transition: transform 0.3s ease;
  }

  .screenshot-slide {
    min-width: 100%;
    flex-shrink: 0;
  }

  .slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
  }

  .slider-btn {
    background: #0255c2;
    color: #ffffff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
  }

  .winners-table {
    font-size: 14px;
  }

  .winners-table th,
  .winners-table td {
    padding: 8px;
  }

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

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

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

  .wheel-container {
    width: 300px;
    height: 300px;
  }

  #wheelCanvas {
    width: 300px;
    height: 300px;
  }

  .spin-button {
    width: 80px;
    height: 80px;
    font-size: 16px;
  }

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

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

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

  .widget-button {
    width: 100%;
  }

  .box-shadow {
    padding: 25px 15px;
    border-radius: 8px;
  }
}

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

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

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

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

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

  .jackpot-amount {
    font-size: 24px;
  }

  .winners-table {
    font-size: 12px;
  }

  .wheel-container {
    width: 280px;
    height: 280px;
  }

  #wheelCanvas {
    width: 280px;
    height: 280px;
  }

  .result-content,
  .lose-content {
    padding: 30px 20px;
    margin: 0 15px;
  }
}
