/* ===== ОБЩИЕ СТИЛИ ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #15151e;
  color: white;
}

/* ===== АНИМАЦИИ ===== */
@keyframes pulse { 0% { opacity: 0.8; } 50% { opacity: 1; } 100% { opacity: 0.8; } }
@keyframes glow { 0% { box-shadow: 0 0 5px 1px rgba(15, 233, 108, 0.4); } 100% { box-shadow: 0 0 10px 3px rgba(15, 233, 108, 0.7); } }
@keyframes rocket-flight { 0% { transform: translateY(0); } 50% { transform: translateY(-5px); } 100% { transform: translateY(0); } }
@keyframes fire-burning { 0% { transform: scale(1); } 50% { transform: scale(1.1); } 100% { transform: scale(1); } }
@keyframes euro-gradient { 0% { color: #0fe96c; } 50% { color: #06a549; } 100% { color: #0fe96c; } }
@keyframes highlight-gradient { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes telegram-pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(15, 233, 108, 0.4); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 5px rgba(15, 233, 108, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(15, 233, 108, 0); }
}
@keyframes scroll-cards {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-180px * 7 - 15px * 7)); }
}
@keyframes cashout-carousel {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-100% / 2)); }
}

/* ===== HEADER ===== */
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
  background-color: #1e213a;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  margin: 0 auto;
}

.logo-icon, .euro-symbol {
  color: #0fe96c;
  margin-right: 1px;
  font-size: 24px;
  display: inline-block;
  font-weight: bold;
}

.start-button {
  background-color: #0fe96c;
  color: black;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
}

/* ===== MAIN CONTENT ===== */
.main-content {
  text-align: center;
  padding: 30px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.main-title {
  font-size: 3.6rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: bold;
}

.highlight {
  background: linear-gradient(to right, #0fe96c, #08bd54, #06a549, #08bd54, #0fe96c);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: inline-block;
  animation: highlight-gradient 3s ease infinite;
  font-weight: bold;
}

/* ===== STATS BAR ===== */
.stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  font-size: 16px;
}

.stats-item {
  display: flex;
  align-items: center;
}

/* Общие стили для мигающих зеленых точек */
.stats-dot, .green-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #0fe96c;
  margin-right: 8px;
  position: relative;
  animation: pulse 1.5s infinite;
}

.stats-dot:after, .green-dot:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #0fe96c;
  box-shadow: 0 0 8px 2px rgba(15, 233, 108, 0.7);
  animation: glow 1.5s infinite alternate;
  top: 0;
  left: 0;
  z-index: -1;
}

/* Стили для отступов после чисел */
#earnings-amount, #videos-count {
  margin-right: 2px;
  padding-right: 2px;
  font-weight: bolder;
  
}

/* ===== PLATFORM CARDS ===== */
.platforms-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.platform-card {
  background-color: transparent;
  border-radius: 12px;
  padding: 0;
  width: 220px;
  display: flex;
  flex-direction: column;
  text-align: left;
  overflow: hidden;
}

.platform-logo {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.youtube-logo { background-color: white; }
.instagram-logo { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.tiktok-logo { background-color: black; }

.logo-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.logo-content img {
  width: auto;
  max-width: 60%;
  max-height: 60%;
  object-fit: contain;
}

.platform-details {
  padding: 12px 15px;
  background-color: #22243b;
  border-radius: 0 0 12px 12px;
}

.platform-name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 6px;
}

.platform-type {
  font-size: 14px;
  color: #8a8b9c;
  margin-bottom: 12px;
}

.platform-price-rating {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.platform-price {
  font-size: 20px;
  font-weight: bold;
}

.platform-rating {
  display: flex;
  align-items: center;
}

.star {
  color: gold;
  font-size: 16px;
  margin-right: 5px;
}

.rating-value {
  font-weight: bold;
}

/* ===== CTA SECTION & BUTTONS ===== */
.cta-section {
  max-width: 700px;
  margin: 10px auto;
  background-color: #1b1d2f;
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
}

.cta-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 30px;
}

/* Общие стили для кнопок Telegram */
.telegram-button, .telegram-link-button, .main-telegram-link {
  display: inline-block;
  background-color: #0fe96c;
  color: #1a1e2e;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  border-radius: 10px;
  animation: telegram-pulse 2s infinite;
  position: relative;
  overflow: visible;
}

.telegram-button {
  font-size: 20px;
  padding: 15px 30px;
  border: none;
  width: 100%;
  max-width: 450px;
}

.telegram-link-button {
  font-size: 22px;
  padding: 20px 50px;
}

.main-telegram-link {
  font-size: 22px;
  padding: 15px 50px;
  color: #111520;
}

.telegram-button:hover, .telegram-link-button:hover, .main-telegram-link:hover {
  background-color: #0cd15e;
}

/* ===== STATS SECTION ===== */
.stats-section {
  max-width: 1200px;
  margin: 40px auto;
  background-color: #1b1d2f;
  border-radius: 20px;
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.stats-column {
  flex: 1;
  min-width: 250px;
  text-align: center;
  padding: 20px;
  position: relative;
}

.stats-column:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 80px;
  width: 1px;
  background-color: #2a2d45;
}

.stats-value {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-icon {
  margin-right: 10px;
  font-size: 30px;
}

.stats-description {
  font-size: 18px;
  color: #bbb;
  max-width: 250px;
  margin: 0 auto;
  line-height: 1.4;
}

/* Стили для иконок */
.rocket-icon {
  display: inline-block;
  animation: rocket-flight 2s ease-in-out infinite;
  transform-origin: center;
}

.fire-icon {
  display: inline-block;
  animation: fire-burning 1.5s ease-in-out infinite;
  transform-origin: bottom center;
  color: #ff6f00;
  text-shadow: 0 0 5px rgba(255, 111, 0, 0.6);
}

/* ===== FEATURES SECTION ===== */
.features-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.features-title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 50px;
  text-align: center;
}

.features-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-item {
  flex: 1;
  min-width: 300px;
  margin-bottom: 30px;
}

.feature-image {
  width: 700px;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  background-color: #1e213a;
  margin: 0 auto 20px;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.feature-description {
  font-size: 18px;
  line-height: 1.5;
  color: #bbb;
  text-align: center;
}

/* ===== ADVANTAGES SECTION ===== */
.advantages-section {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 20px;
}

.advantages-header {
  text-align: center;
  margin-bottom: 80px;
}

.advantages-title {
  font-size: 42px;
  font-weight: bold;
  line-height: 1.3;
  display: inline;
}

.advantages-subtitle {
  color: #0fe96c;
  font-weight: bold;
  margin-left: 15px;
}

.advantages-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.advantage-item {
  flex: 1;
  min-width: 280px;
  background-color: #1b1d2f;
  border-radius: 20px;
  padding: 40px 30px;
  margin-bottom: 1.5rem;
  text-align: center;
}

.advantage-icon {
  width: 80px;
  height: 80px;
  background-color: #0fe96c;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1rem;
  box-shadow: 0 0 15px rgba(15, 233, 108, 0.4);
}

.advantage-icon span {
  font-size: 40px;
  color: #fff;
}

.advantage-title {
  font-size: 24px;
  font-weight: bold;
  margin: 1rem 0 20px;
  color: #fff;
  text-align: center;
}

.advantage-description {
  font-size: 16px;
  line-height: 1.6;
  color: #a0a0c0;
  text-align: center;
}

/* ===== PAYMENT METHODS SECTION ===== */
.payment-methods-section {
  background-color: #111520;
  padding: 60px 0;
  text-align: center;
  margin-top: 80px;
}

.payment-methods-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
}

.payment-methods-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.payment-method-item {
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.payment-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.payment-icon img {
  max-width: 40px;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.litecoin {
  font-size: 24px;
  color: white;
  font-weight: bold;
}

.ubereats {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.uber-text {
  font-size: 12px;
  font-weight: bold;
}

.eats-text {
  font-size: 10px;
  color: #0fe96c;
  font-weight: bold;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  max-width: 100%;
  padding: 100px 20px;
  text-align: center;
}

.testimonials-title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 60px;
  text-align: center;
}

.testimonials-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  background-color: #1e213a;
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 40px;
  text-align: left;
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial-card.active {
  display: block;
  opacity: 1;
}

.testimonial-rating {
  margin-bottom: 20px;
}

.testimonial-star {
  color: #0fe96c;
  font-size: 24px;
  margin-right: 5px;
}

.testimonial-heading {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 30px;
}

.testimonial-author {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 5px;
}

.testimonial-date {
  color: #888;
  font-size: 16px;
}

.testimonials-navigation {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.nav-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #1b1d2f;
  border: 2px solid #0fe96c;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 20px;
}

.nav-button:hover {
  background-color: #2a2d45;
}

/* ===== TELEGRAM CTA SECTION ===== */
.telegram-cta {
  text-align: center;
  padding: 10px 20px;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  max-width: 1000px;
  margin: 60px auto 100px;
  padding: 0 20px;
}

.faq-title {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  border-radius: 15px;
  background-color: #1b1d2f;
  overflow: hidden;
}

.faq-question {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
}

.faq-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 30px 25px;
  color: #bbb;
  line-height: 1.6;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* ===== REALTIME PAYMENTS SECTION ===== */
.realtime-payments-section {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 20px;
}

.realtime-payments-container {
  background-color: #1b1d2f;
  border-radius: 15px;
  padding: 30px;
  overflow: hidden;
}

.realtime-payments-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-left: 10px;
  font-size: 18px;
}

.payment-card {
  background-color: #1e213a;
  background-image: url('images/live-bg.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: none;
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.payment-amount {
  font-size: 96px;
  font-weight: bold;
  color: #FFD700;
  text-align: center;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 2;
  margin: 20px 0;
}

.coins-top-left {
  position: absolute;
  top: -20px;
  left: -10px;
  opacity: 0.8;
  transform: rotate(-20deg);
}

.coins-top-right {
  position: absolute;
  top: -30px;
  right: 30px;
  opacity: 0.7;
  transform: rotate(15deg);
}

.coins-bottom-right {
  position: absolute;
  bottom: -20px;
  right: -15px;
  opacity: 0.9;
  transform: rotate(-10deg);
}

.coin-image {
  border-radius: 50%;
}

.payment-methods {
  display: flex;
  position: absolute;
  bottom: 20px;
  left: 20px;
  gap: 10px;
}

.payment-method-logo {
  width: 35px;
  height: 35px;
  background-color: #2e3170;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== MAIN TELEGRAM BUTTON ===== */
.main-telegram-button {
  display: flex;
  justify-content: center;
  padding: 50px 20px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 10px 20px 40px;
  color: white;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.footer-logo-icon {
  color: #0fe96c;
  font-size: 40px;
  margin-bottom: 15px;
}

.footer-logo-text {
  font-size: 24px;
  font-weight: bold;
}

.footer-copyright {
  color: #888;
  margin-bottom: 30px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.footer-link:hover {
  text-decoration: underline;
}

/* ===== TELEGRAM CARDS ===== */
.telegram-cards-section {
  margin: 2rem 0;
  width: 100%;
  padding-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.telegram-cards-container {
  display: flex;
  gap: 15px;
  padding: 10px 15px;
  width: 100%;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.telegram-cards-container::-webkit-scrollbar {
  height: 5px;
}

.telegram-cards-container::-webkit-scrollbar-track {
  background: #1e213a;
  border-radius: 10px;
}

.telegram-cards-container::-webkit-scrollbar-thumb {
  background: #0fe96c;
  border-radius: 10px;
}

.telegram-card {
  flex: 1 1 0;
  min-width: 0;
  max-width: 180px;
  border-radius: 15px;
  overflow: hidden;
  background-color: #1e213a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
}

.card-content {
  position: relative;
  height: 200px;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-status {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background-color: rgba(30, 33, 58, 0.7);
  border-radius: 8px;
  padding: 5px 8px;
  font-size: 0.9rem;
}

.user-info {
  font-size: 0.8rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
}

.like-badge, .dislike-badge {
  font-size: 0.8rem;
  color: #fff;
  padding: 3px 6px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.4);
}

.card-title {
  padding: 8px 15px 3px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.card-footer {
  margin-top: auto;
  padding: 3px 15px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

/* Предотвращение переноса символа евро */
.price-wrapper {
  white-space: nowrap;
  display: inline-block;
}

/* Добавляем глобальный класс для символа евро в любом месте страницы */
.euro-symbol {
  color: #0fe96c;
  animation: none;
}

/* Специфичный стиль для символа евро в блоке статистики */
.stats-value .euro-symbol {
  font-size: inherit;
}

/* Специфичный стиль для символа евро в карточках */
.card-price .euro-symbol {
  font-size: inherit;
  margin-right: 1px;
}

/* ===== ОТСТУПЫ МЕЖДУ СЕКЦИЯМИ ===== */
.stats-section, .features-section, .advantages-section, 
.payment-methods-section, .testimonials-section, 
.faq-section, .realtime-payments-section, 
.main-telegram-button, .telegram-cards-section {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 768px) {
  .main-title { font-size: 4.8rem; }
  .stats { flex-direction: column; align-items: center; gap: 15px; }
  
  .platforms-container {
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 10px 10px;
    gap: 5px;
  }
  
  .platform-card { flex: 0 0 auto; width: 32%; min-width: 100px; }
  .platform-logo { height: 100px; }
  .platform-name { font-size: 14px; }
  .platform-type { font-size: 12px; }
  .platform-price { font-size: 16px; }
  .platform-details { padding: 8px 10px; }
  .star { font-size: 14px; }
  
  /* Стили для Telegram карточек в мобильной версии */
  .telegram-cards-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  
  .telegram-card {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
    min-width: 140px;
  }
  
  .cta-section { max-width: 100%; padding: 30px 15px; margin: 30px auto; }
  .cta-title { font-size: 32px; }
  .feature-item { min-width: 250px; }
  .advantages-container { flex-direction: column; }
  .advantage-item { max-width: 100%; }
  .payment-amount { font-size: 60px; }
  .payment-card { padding: 40px 20px; }
  .footer-links { flex-direction: column; gap: 15px; }
  .feature-image { width: 100%; border-radius: 8px; }
  
  /* Отступы секций */
  .stats-section, .features-section, .advantages-section, 
  .payment-methods-section, .testimonials-section, 
  .faq-section, .realtime-payments-section, 
  .main-telegram-button, .telegram-cards-section {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }
  
  .cashout-cards-container {
    padding: 0 8px;
    -webkit-overflow-scrolling: touch;
  }
  
  .cashout-cards-track {
    animation-duration: 15s;
  }
  
  .cashout-card {
    min-width: 120px;
  }
  
  .cashout-bank {
    font-size: 12px;
  }
  
  .cashout-amount {
    font-size: 20px;
  }
  
  /* Добавляем стили для символа евро в карточках cashout на мобильных */
  .cashout-amount .euro-symbol {
    font-size: 20px; /* Такой же размер, как и для цифр суммы */
  }
}

@media (max-width: 480px) {
  .main-title { font-size: 2rem; }
  .payment-amount { font-size: 42px; }
  .payment-card { padding: 30px 20px; }
  
  .cashout-cards-track {
    animation-duration: 12s;
  }
  
  .cashout-card {
    min-width: 100px;
  }
  
  .cashout-amount {
    font-size: 18px;
  }
  
  .cashout-amount .euro-symbol {
    font-size: 18px;
  }
}

@media (max-width: 320px) {
  .payment-amount { font-size: 36px; }
}

.card-actions {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

.watch-btn {
  background-color: #FFD700;
  color: #000;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.watch-btn:hover {
  background-color: #FFC107;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.watch-btn:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cashout-cards-section {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  border: none;
  padding: 12px 0;
  margin: 0;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  box-sizing: border-box;
  overflow: hidden;
  background: linear-gradient(to right, #141828, #1a1e2e, #141828);
  position: relative;
}

.cashout-cards-section::before,
.cashout-cards-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  display: block;
  background: linear-gradient(to right, transparent, rgba(15, 233, 108, 0.3), transparent);
}

.cashout-cards-section::before {
  top: 0;
}

.cashout-cards-section::after {
  bottom: 0;
}

.cashout-cards-container {
  padding: 0;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.cashout-cards-track {
  display: flex;
  width: auto;
  will-change: transform;
  transform: translateX(0);
  animation: none;
}

.cashout-card {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  background-color: rgba(30, 33, 58, 0.7);
  border-radius: 10px;
  padding: 8px 10px;
  margin: 0 4px;
  min-width: 140px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
}

.cashout-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.cashout-logo {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 5px;
  transition: all 0.3s ease;
}

.cashout-card:hover .cashout-logo {
  background-color: rgba(255, 255, 255, 0.2);
}

.cashout-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}

.cashout-details {
  display: flex;
  flex-direction: row;
  min-width: 0;
  flex: 1;
  align-items: center;
  justify-content: space-between;
}

.cashout-info {
  display: flex;
  flex-direction: column;
}

.cashout-bank {
  font-weight: bold;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #ffffff;
  margin-bottom: 1px;
  letter-spacing: 0.3px;
}

.cashout-label {
  font-size: 10px;
  color: rgba(138, 139, 156, 0.9);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-weight: 500;
}

.cashout-amount {
  font-weight: bold;
  font-size: 24px;
  color: #0fe96c;
  text-shadow: 0 0 8px rgba(15, 233, 108, 0.3);
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  margin-left: 8px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .cashout-cards-container {
    padding: 0 8px;
    -webkit-overflow-scrolling: touch;
  }
  
  .cashout-cards-track {
    animation-duration: 15s;
  }
  
  .cashout-card {
    min-width: 120px;
  }
  
  .cashout-bank {
    font-size: 12px;
  }
  
  .cashout-amount {
    font-size: 20px;
  }
  
  .cashout-amount .euro-symbol {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .cashout-cards-track {
    animation-duration: 12s;
  }
  
  .cashout-card {
    min-width: 100px;
  }
  
  .cashout-amount {
    font-size: 18px;
  }
  
  .cashout-amount .euro-symbol {
    font-size: 18px;
  }
}

/* ===== COOKIE POPUP STYLES ===== */
.cookie-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.cookie-popup.show {
  opacity: 1;
  visibility: visible;
}

.cookie-popup-content {
  max-width: 500px;
  width: 90%;
  background-color: rgba(30, 33, 58, 0.98);
  border-radius: 10px;
  margin: 0 auto;
  padding: 25px;
  border: 2px solid #0fe96c;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-popup.show .cookie-popup-content {
  transform: scale(1);
}

.cookie-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.cookie-popup-header h3 {
  color: #fff;
  margin: 0;
  font-size: 1.3rem;
}

.cookie-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.cookie-popup p {
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 1rem;
}

.cookie-link {
  color: #0fe96c;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: bold;
}

.cookie-link:hover {
  color: #06a549;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cookie-accept {
  background-color: #0fe96c;
  color: #000;
  border: none;
  border-radius: 5px;
  padding: 12px 20px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cookie-accept:hover {
  background-color: #06a549;
}

.cookie-deny {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 12px 20px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cookie-deny:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-popup-content {
    padding: 20px;
    width: 85%;
  }
}
