.giveaways-showcase-head {
  margin-bottom: 24px;
  text-align: center;
}

.giveaways-showcase-kicker {
  margin-bottom: 6px;
  font-family: var(--font-tech);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.giveaways-showcase-title {
  margin: 0;
  font-family: var(--font-tech);
  font-size: clamp(24px, 3vh, 32px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(90deg, #fff 0%, #00f2fe 50%, #9146ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.4));
}

.giveaways-showcase-sub {
  margin-top: 8px;
  font-family: var(--font-tech);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.hero-gw-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 8px;
  overflow: visible;
  min-height: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 242, 254, 0.2) rgba(255, 255, 255, 0.02);
}

/* scroll tylko gdy JS doda klasę */
.hero-gw-list.is-scrollable {
  overflow-y: auto;
}

/* ważne: stała wysokość zamiast samego max-height */
.full-list.is-scrollable {
  height: 600px;
  max-height: 600px;
}

.sidebar-list .hero-gw-card:nth-child(n + 4) {
  display: none;
}

.hero-gw-list::-webkit-scrollbar {
  width: 5px;
}

.hero-gw-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 6px;
}

.hero-gw-list::-webkit-scrollbar-thumb {
  background: rgba(0, 242, 254, 0.2);
  border-radius: 6px;
}

.hero-gw-list::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 242, 254, 0.5);
}

.hero-gw-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  text-decoration: none;
  flex-shrink: 0; /* TO BLOKUJE ŚCISKANIE KART */
  min-height: 80px;
  transition:
    transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.hero-gw-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  z-index: 2;
}

.hero-gw-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: skewX(-25deg);
  transition: left 0.5s ease;
  z-index: -1;
}

.hero-gw-card:hover {
  transform: translateX(6px);
  background: rgba(0, 242, 254, 0.04);
  border-color: rgba(0, 242, 254, 0.2);
  box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-gw-card:hover::before {
  background: #00f2fe;
  box-shadow: 0 0 12px #00f2fe;
}

.hero-gw-card:hover::after {
  left: 200%;
}

.hero-gw-card:focus-visible {
  outline: 2px solid rgba(0, 242, 254, 0.9);
  outline-offset: 2px;
}

.hero-gw-thumb {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 10px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease;
}

.hero-gw-card:hover .hero-gw-thumb {
  transform: scale(1.1) rotate(3deg);
  border-color: rgba(0, 242, 254, 0.4);
}

.hero-gw-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-gw-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.hero-gw-name {
  font-family: var(--font-tech);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
}

.hero-gw-card:hover .hero-gw-name {
  color: #00f2fe;
}

.hero-gw-val {
  flex-shrink: 0;
  padding: 2px 8px;
  border-radius: 6px;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.2);
  font-family: var(--font-tech);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
  color: #00f2fe;
  white-space: nowrap;
}

.hero-gw-desc {
  font-family: var(--font-tech);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.4);
}

.hero-gw-date {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-family: var(--font-tech);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.3);
}

.hero-gw-date::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border-radius: 50%;
  background: #9146ff;
  box-shadow: 0 0 8px #9146ff;
}

.hero-gw-empty {
  padding: 30px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  font-family: var(--font-tech);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

@media (max-width: 1500px) {
  .full-list.is-scrollable {
    height: auto;
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 768px) {
  .hero-gw-card {
    padding: 12px;
    gap: 12px;
    min-height: 72px;
  }

  .hero-gw-thumb {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .hero-gw-name {
    font-size: 13px;
  }

  .hero-gw-val {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .giveaways-showcase-kicker {
    letter-spacing: 0.24em;
  }

  .giveaways-showcase-title {
    font-size: 24px;
    letter-spacing: 0.08em;
  }

  .giveaways-showcase-sub {
    letter-spacing: 0.1em;
  }

  .hero-gw-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .hero-gw-val {
    align-self: flex-start;
  }
}