.skins-section {
  width: 100%;
  margin-top: 60px;
}

.skins-section .hero-center-wrapper {
  width: 100%;
}

.skins-shell {
  width: 100%;
}

.skins-head {
  width: 100%;
  margin: 0 0 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
}

.skins-head-copy {
  min-width: 0;
  flex: 1 1 auto;
}

.skins-kicker {
  margin: 0 0 8px;
  font-family: var(--font-tech);
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.skins-title {
  margin: 0;
  display: block;
  width: fit-content;
  font-family: var(--font-tech);
  font-size: clamp(38px, 3.9vw, 58px);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(90deg, #ffffff 0%, #00f2fe 46%, #9146ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter:
    drop-shadow(0 0 15px rgba(0, 242, 254, 0.28))
    drop-shadow(0 0 22px rgba(145, 70, 255, 0.1));
}

.skins-sub {
  flex: 0 0 auto;
  margin: 0 0 2px;
  padding: 10px 15px;
  border-radius: 14px;
  background: rgba(0, 243, 255, 0.065);
  border: 1px solid rgba(0, 243, 255, 0.2);
  font-family: var(--font-tech);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(210, 250, 255, 0.9);
  box-shadow: 0 0 18px rgba(0, 243, 255, 0.06);
}

.skins-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.skin-card {
  --skin-accent: #5865f2;
  --skin-accent-rgb: 88, 101, 242;
  position: relative;
  min-width: 0;
  min-height: 300px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 26px;
  text-decoration: none;
  background:
    radial-gradient(circle at 75% 18%, rgba(var(--skin-accent-rgb), 0.18), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(0, 243, 255, 0.1), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.014)),
    rgba(8, 4, 15, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.085);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 24px 56px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: translate3d(0, 0, 0);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease;
}

.skin-card[data-platform="twitch"] {
  --skin-accent: #9146ff;
  --skin-accent-rgb: 145, 70, 255;
}

.skin-card[data-platform="youtube"] {
  --skin-accent: #ff2b2b;
  --skin-accent-rgb: 255, 43, 43;
}

.skin-card[data-platform="instagram"] {
  --skin-accent: #e1306c;
  --skin-accent-rgb: 225, 48, 108;
}

.skin-card[data-platform="discord"] {
  --skin-accent: #5865f2;
  --skin-accent-rgb: 88, 101, 242;
}

.skin-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 4px;
  background: var(--skin-accent);
  box-shadow: 0 0 18px rgba(var(--skin-accent-rgb), 0.5);
  z-index: 3;
  transition:
    top 0.24s ease,
    bottom 0.24s ease,
    width 0.24s ease,
    box-shadow 0.24s ease;
}

.skin-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(var(--skin-accent-rgb), 0.12), transparent 44%),
    linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.055), transparent);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.skin-card:hover {
  transform: translate3d(0, -4px, 0);
  border-color: rgba(var(--skin-accent-rgb), 0.32);
  box-shadow:
    0 30px 68px rgba(0, 0, 0, 0.38),
    0 0 34px rgba(var(--skin-accent-rgb), 0.12);
}

.skin-card:hover::before {
  top: 17px;
  bottom: 17px;
  width: 5px;
  box-shadow: 0 0 24px rgba(var(--skin-accent-rgb), 0.66);
}

.skin-card:hover::after {
  opacity: 1;
}

.skin-platform {
  position: relative;
  z-index: 4;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border-radius: 14px;
  background: rgba(var(--skin-accent-rgb), 0.12);
  border: 1px solid rgba(var(--skin-accent-rgb), 0.28);
  font-family: var(--font-tech);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #fff;
}

.skin-platform-icon {
  width: 17px;
  height: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--skin-accent);
}

.skin-platform-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.skin-image-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 150px;
  margin: 18px 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.skin-image-wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 55%;
  width: 220px;
  height: 70px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.42);
  filter: blur(18px);
}

.skin-image {
  position: relative;
  z-index: 2;
  max-width: 100%;
  max-height: 150px;
  object-fit: contain;
  transform: rotate(-6deg) translate3d(0, 0, 0);
  filter:
    drop-shadow(0 24px 20px rgba(0, 0, 0, 0.62))
    drop-shadow(0 0 22px rgba(var(--skin-accent-rgb), 0.18))
    saturate(1.1);
  transition:
    transform 0.24s ease,
    filter 0.24s ease;
}

.skin-card:hover .skin-image {
  transform: rotate(-3deg) translate3d(0, -6px, 0) scale(1.04);
  filter:
    drop-shadow(0 28px 24px rgba(0, 0, 0, 0.7))
    drop-shadow(0 0 28px rgba(var(--skin-accent-rgb), 0.28))
    saturate(1.16);
}

.skin-copy {
  position: relative;
  z-index: 4;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.skin-copy strong {
  font-family: var(--font-tech);
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 0 16px rgba(var(--skin-accent-rgb), 0.24);
}

.skin-copy span {
  margin-top: 10px;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.56);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.skin-bottom {
  position: relative;
  z-index: 4;
  width: 100%;
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.skin-price,
.skin-cta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-family: var(--font-tech);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.skin-price {
  padding: 8px 11px;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.22);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #00f2fe;
}

.skin-cta {
  padding: 10px 13px;
  background: rgba(var(--skin-accent-rgb), 0.14);
  border: 1px solid rgba(var(--skin-accent-rgb), 0.34);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #fff;
  box-shadow: 0 0 18px rgba(var(--skin-accent-rgb), 0.1);
  transition:
    transform 0.24s ease,
    background 0.24s ease,
    border-color 0.24s ease;
}

.skin-card:hover .skin-cta {
  transform: translateX(3px);
  background: rgba(var(--skin-accent-rgb), 0.22);
  border-color: rgba(var(--skin-accent-rgb), 0.52);
}

.skins-empty {
  grid-column: 1 / -1;
  min-height: 130px;
  padding: 28px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.011)),
    rgba(255, 255, 255, 0.018);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-tech);
  font-weight: 800;
  font-size: 12px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

@media (max-width: 900px) {
  .skins-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .skins-section {
    margin-top: 60px;
  }

  .skins-head {
    margin-bottom: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .skins-title {
    font-size: 42px;
  }

  .skins-sub {
    margin: 0;
  }
}

@media (max-width: 520px) {
  .skins-kicker {
    font-size: 9px;
    letter-spacing: 0.2em;
  }

  .skins-title {
    font-size: 36px;
  }

  .skins-sub {
    font-size: 11px;
  }

  .skin-card {
    min-height: 280px;
    padding: 18px;
    border-radius: 22px;
  }

  .skin-image-wrap {
    height: 130px;
  }

  .skin-image {
    max-height: 130px;
  }

  .skin-copy strong {
    white-space: normal;
    font-size: 20px;
  }

  .skin-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}