@media (max-width: 768px) {
  .main-title {
    font-size: 32px;
    margin-bottom: 50px;
  }

  /* Hide table header on mobile */
  .casinos-table thead {
    display: none;
  }

  /* Make table responsive without scroll */
  .table-wrapper {
    overflow-x: visible;
  }

  .casinos-table {
    border-spacing: 0;
  }

  /* Display table rows as cards */
  .casinos-table tbody tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 15px;
    margin-bottom: 30px;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  }

  .casinos-table tbody td {
    padding: 0;
    text-align: center;
    border: none;
    border-radius: 0 !important;
    position: relative;
  }

  /* Logo - top left */
  .casinos-table tbody td:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Bonus - top right */
  .casinos-table tbody td:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  /* Rating - bottom left */
  .casinos-table tbody td:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Hide payment methods on mobile */
  .casinos-table tbody td:nth-child(4) {
    display: none;
  }

  /* Button - bottom right */
  .casinos-table tbody td:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .casino-logo {
    height: 50px;
    max-width: 160px;
  }

  .bonus-amount {
    font-size: 20px;
  }

  .rating-number {
    font-size: 28px;
  }

  .stars {
    font-size: 22px;
  }

  .payment-icons {
    gap: 10px;
  }

  .payment-icon {
    width: 42px;
    height: 28px;
    font-size: 11px;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 14px;
  }

  /* Content sections */
  .content-section {
    padding: 25px 20px;
  }

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

  .content-section p,
  .content-section ul li {
    font-size: 14px;
  }

  /* Footer */
  .footer-links {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-link {
    text-align: center;
  }

  .disclaimer {
    padding: 30px 20px;
  }

  .disclaimer h2 {
    font-size: 24px;
  }

  /* Cookie banner */
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .accept-cookies {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 26px;
    margin-bottom: 40px;
    letter-spacing: 1px;
  }

  .logo {
    height: 45px;
    max-width: 180px;
  }

  .container {
    padding: 20px 15px;
  }

  .casinos-table tbody tr {
    padding: 15px;
    margin-bottom: 20px;
  }

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

  .rating-number {
    font-size: 24px;
  }

  .content-section {
    padding: 20px 15px;
    margin-bottom: 25px;
  }

  .content-section h2 {
    font-size: 20px;
  }

  .disclaimer {
    padding: 25px 15px;
  }
}
