 #sp-carousel-container {
    width: 100%;
    position: relative;
    margin-inline: auto;
    overflow: hidden;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border-radius: 12px;
    padding-block: 12px;
    margin-block: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(218, 165, 32, 0.3);
    max-width: 350px;
  }

  #sp-carousel-container:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(218, 165, 32, 0.7),
      transparent
    );
  }

  #sp-carousel-container:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(218, 165, 32, 0.7),
      transparent
    );
  }

  .sp-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 5px 5px;
  }

  .sp-carousel-slide {
    flex: 0 0 calc(33.333% - 6px);
    min-width: calc(33.333% - 6px);
    padding: 0 3px;
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: center center;
    display: flex;
    justify-content: center;
  }

  .sp-carousel-slide.active {
    transform: scale(1.05);
    z-index: 10;
  }

  .sp-game-card {
    background: linear-gradient(145deg, #222222, #0d0d0d);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid #333;
    transition: all 0.4s ease;
    height: 100%;
    width: 100px;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0 auto;
  }

  .sp-game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
    border-color: #daa520;
  }

  .sp-game-card:before {
    content: "";
    position: absolute;
    top: -2px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(218, 165, 32, 0.7),
      transparent
    );
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .sp-game-card:hover:before {
    opacity: 1;
  }

  .sp-game-img {
    width: 100px;
    height: 131px;
    overflow: hidden;
    position: relative;
  }

  .sp-game-img:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    z-index: 1;
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }

  .sp-game-card:hover .sp-game-img:after {
    opacity: 0.4;
  }

  .sp-game-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    transition: transform 0.7s ease;
  }

  .sp-game-card:hover .sp-game-img img {
    transform: scale(1.1) rotate(1deg);
    filter: brightness(1.1);
  }

  .sp-carousel-heading {
    text-align: center;
    color: #daa520;
    margin-bottom: 8px;
    font-size: 16px;
    position: relative;
    padding-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }

  .sp-carousel-heading:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 40%;
    right: 40%;
    height: 2px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(218, 165, 32, 0.7),
      transparent
    );
    border-radius: 2px;
  }

  .sp-carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }

  .sp-carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(218, 165, 32, 0.3);
    margin: 0 4px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .sp-carousel-indicator.active {
    background: #daa520;
    transform: scale(1.2);
  }

  .sp-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid #daa520;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #daa520;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  }

  .sp-carousel-prev {
    left: 15px;
  }

  .sp-carousel-next {
    right: 15px;
  }

  @media (max-width: 480px) {
    .sp-game-card {
      width: 90px;
    }

    .sp-game-img {
      width: 90px;
      height: 118px;
    }

    .sp-carousel-slide {
      flex: 0 0 calc(33.333% - 4px);
      min-width: calc(33.333% - 4px);
      padding: 0 2px;
    }

    .sp-carousel-btn {
      width: 24px;
      height: 24px;
      font-size: 14px;
    }
  }