  .offer-item {
    margin-bottom: 2rem;
  }

  .offer-card {
    background: linear-gradient(180deg, #1E1435, #0D0A1A);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }

  .offer-card:hover {
    transform: scale(1.02);
  }

  .offer-card--recommended {
    border: 2px solid #00f7ff;
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.5), 0 0 30px rgba(0, 247, 255, 0.2);
  }

  .offer-card--popular {
    border: 2px solid #ff00ff;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.5), 0 0 30px rgba(255, 0, 255, 0.2);
  }

  .offer-card--new {
    border: 2px solid #ffff00;
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.5), 0 0 30px rgba(255, 255, 0, 0.2);
  }

  .offer-logo {
    flex: 1;
    min-width: 150px;
    text-align: center;
  }

  .offer-logo img {
    width: 200px;
    margin: 0 auto 1rem;
    object-fit: contain;
  }

  .offer-label {
    background: #00cc00;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    display: inline-block;
  }

  .offer-card--popular .offer-label {
    background: #0077ff;
  }

  .offer-card--new .offer-label {
    background: #ffaa00;
  }

  .offer-details {
    flex: 2;
    min-width: 200px;
    text-align: left;
  }

  .offer-rating {
    color: #ffeb3b;
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
  }

  .offer-stats {
    color: #b0b0b0;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
  }

  .offer-description {
    font-size: 1rem;
    font-weight: 500;
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
  }

  .offer-actions {
    flex: 1;
    min-width: 200px;
    text-align: center;
  }

  .payment-icons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .payment-icons img {
    width: 50px;

    transition: transform 0.2s ease;
  }

  .payment-icons img:hover {
    transform: scale(1.1);
  }

  .offer-button {
    display: inline-block;
    background: linear-gradient(90deg, #0055ff, #00aaff);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    transition: background 0.3s ease, box-shadow 0.3s ease;
  }

  .offer-button:hover {
    background: linear-gradient(90deg, #0033cc, #0088ff);
    box-shadow: 0 0 10px rgba(0, 136, 255, 0.5);
  }

  #cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1E1435;
    color: #e0e0e0;
    padding: 1rem;
    text-align: center;
    z-index: 1000;
  }
  #cookie-banner.hidden {
    display: none;
  }
  #cookie-banner button {
    background: linear-gradient(90deg, #0055ff, #00aaff);
    color: white;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    margin: 0 0.5rem;
  }
  #cookie-banner button:hover {
    background: linear-gradient(90deg, #0033cc, #0088ff);
    box-shadow: 0 0 10px rgba(0, 136, 255, 0.5);
  }
  #cookie-banner .decline-btn {
    background: linear-gradient(90deg, #ff3333, #ff6666);
  }
  #cookie-banner .decline-btn:hover {
    background: linear-gradient(90deg, #cc0000, #ff3333);
    box-shadow: 0 0 10px rgba(255, 51, 51, 0.5);
  }