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

    .offer-item:after{
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 8px;
    background: linear-gradient(260.52deg, #1c99fe -4.98%, #7644ff 48.42%, #fd4766 96.9%);
    z-index: -1;
  }

  .top-in > div{
    border: 2px solid #fff;
    border-radius: 30px;
    padding: 10px;
  }

  .offer-card {
    background: linear-gradient(135deg, #1E1435 0%, #2D1B4E 50%, #1E1435 100%);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
  }

.bg-image{
  position: relative;
  background-image: url('../images/hero.webp') !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7); /* затемнение */
  z-index: 1;
}

.bg-image > * {
  position: relative;
  z-index: 2;
}

/*  .offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
  }*/

  .offer-card:hover::before {
    left: 100%;
  }

  .container {
    padding: 0 10px;
  }

  .offer-card:hover {
    transform: translateY(-5px);
    /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);*/
  }
/*
  .offer-card--recommended {
    border: 2px solid #00f7ff;
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.3), 0 0 30px rgba(0, 247, 255, 0.1);
  }

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

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

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

  .offer-logo img {
    width: 150px;
    max-width: 100%;
    height: auto;
    margin: 0 auto 1rem;
    object-fit: contain;
    transition: transform 0.3s ease;
  }

  .offer-logo img:hover {
    transform: scale(1.05);
  }

  .offer-label {
    background: linear-gradient(0deg, #00cc00, #00ff00);
    color: #000;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    display: inline-block;
    box-shadow: 0 2px 10px rgba(0, 204, 0, 0.3);
    position: absolute;
    left: 20px;
    top: -20px;
  }

  .offer-card--new .offer-label {
    background: linear-gradient(0deg, #0077ff, #00aaff);
    box-shadow: 0 2px 10px rgba(0, 119, 255, 0.3);
  }

  .offer-card--popular .offer-label {
    background: linear-gradient(0deg, #ffaa00, #ffcc00);
    box-shadow: 0 2px 10px rgba(255, 170, 0, 0.3);
  }

  .offer-button__one{
    background: linear-gradient(0deg, #ffaa00, #ffcc00)!important;
    color: #000!important;
  }

  .offer-button__two{
    background: linear-gradient(0deg, #00cc00, #00ff00)!important;
    color: #000!important;
  }

  .offer-button__three{
    background: linear-gradient(0deg, #0077ff, #00aaff)!important;
    color: #000!important;
  }

  .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;
    text-shadow: 0 0 10px rgba(255, 235, 59, 0.5);
  }

  .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;
    line-height: 1.4;
  }

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

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

  .payment-icons img {
    width: 40px;
    height: auto;
    transition: transform 0.2s ease;
  }

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

  .offer-button {
    display: inline-block;
    background: linear-gradient(45deg, #0055ff, #00aaff, #0055ff);
    background-size: 200% 200%;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: gradientShift 3s ease infinite;
    box-shadow: 0 4px 15px rgba(0, 85, 255, 0.3);
  }

  @keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  .offer-button:hover {
    background: linear-gradient(45deg, #0033cc, #0088ff, #0033cc);
    box-shadow: 0 6px 20px rgba(0, 136, 255, 0.5);
    transform: translateY(-2px);
  }

  .top-section-description span{
    font-weight: bold;
    color: #ecd93c;
  }

  .top-section-title span{
    font-weight: bold;
    color: #ecd93c;
  }

  .bg-color{
    background-color: #08000b;
  }

  .list {
  margin-top: 2rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
}
.list-item {
  display: flex!important;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.5rem;
}
.list-item__img {
  width: 1.25rem;
  height: 1.25rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767.98px) {
  .list {
    margin-top: 1rem;
    flex-wrap: wrap;
  }
}

  /* Mobile Responsive */
  @media (max-width: 768px) {
    .offer-card {
      flex-direction: column;
      text-align: center;
      padding: 1rem;
    }

    .offer-logo {
      min-width: auto;
      width: 100%;
    }

    .offer-logo img {
      width: 120px;
    }

    .offer-details {
      min-width: auto;
      width: 100%;
      text-align: center;
    }

    .offer-actions {
      min-width: auto;
      width: 100%;
    }

    .payment-icons {
      justify-content: center;
    }

    .payment-icons img {
      width: 35px;
    }

    .offer-button {
      width: 100%;
      max-width: 250px;
    }

    h1.text-3xl{
      font-size: 22px;
    }

    .top-in{
      display: flex !important;
      flex-direction: row;
      font-size: 12px !important;
      justify-content: center;
      align-items: center;
      gap: 10px !important;
      flex-wrap: wrap;
    }

    /*.top-section-title{
      margin-top: 20px !important;
    }*/

    .top-section-description{
      margin-top: 10px !important;
      font-size: 16px;
    }
  }

  @media (max-width: 480px) {
    .offer-card {
      padding: 0.75rem;
    }

    header{
      padding: 10px 0;
    }
    
    h1.text-3xl{
      font-size: 16px;
    }

    .offer-logo img {
      width: 240px;
      margin-top: 16px;
    }

    .offer-rating {
      font-size: 1.1rem;
    }

    .offer-stats {
      font-size: 0.8rem;
    }

    .offer-description {
      font-size: 0.9rem;
    }

    .payment-icons img {
      width: 30px;
    }
  }

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