.cart-icon {
  position: relative;
  background: rgba(108, 92, 231, 0.2);
  padding: 10px;
  border-radius: 50%;
  margin-right: 1rem;
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #6c5ce7;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-top: -30px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(108, 92, 231, 0.1) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: pulse 4s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 200px;
  background: radial-gradient(
    ellipse 60% 100% at center bottom,
    rgba(108, 92, 231, 0.3) 0%,
    rgba(76, 81, 191, 0.2) 40%,
    transparent 100%
  );
  filter: blur(30px);
  z-index: -1;
  animation: heroGlow 5s ease-in-out infinite alternate;
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.8;
  }
}

@keyframes heroGlow {
  0% {
    opacity: 0.6;
    transform: translateX(-50%) scale(1);
  }
  100% {
    opacity: 0.9;
    transform: translateX(-50%) scale(1.1);
  }
}

.hero-subtitle {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-weight: 500;
  opacity: 0;
  animation: slideUp 0.8s ease 0.2s forwards;
  margin-top: auto;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.2;
  background: linear-gradient(135deg, #fff, #a29bfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: slideUp 0.8s ease 0.4s forwards;
}

.hero-description {
  font-size: 1.3rem;
  color: #bbb;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  opacity: 0;
  animation: slideUp 0.8s ease 0.6s forwards;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: slideUp 0.8s ease 0.8s forwards;
}

.primary-button {
  background: linear-gradient(135deg, rgb(108, 92, 231), rgb(162, 155, 254));
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(225, 112, 85, 0.4);
}

.secondary-button {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  backdrop-filter: blur(10px);
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.1);
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle,
.hero-title,
.hero-description,
.hero-buttons {
  transform: translateY(30px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .nav-menu {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding: 4rem 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
    max-width: 300px;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
  margin-top: 30px;
}

.title {
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 56px;
  letter-spacing: -0.025em;
  line-height: 1.1;
  position: relative;
}

.title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #7c3aed, transparent);
  border-radius: 2px;
}

.podium-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
  height: 450px;
  perspective: 1000px;
}

.podium-place {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: podiumRise 1s cubic-bezier(0.16, 1, 0.3, 1);
  animation-fill-mode: both;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.podium-place:hover {
  transform: translateY(-8px) rotateX(5deg);
}

.podium-place.first {
  animation-delay: 0.6s;
  z-index: 3;
}

.podium-place.second {
  animation-delay: 0.3s;
  z-index: 2;
}

.podium-place.third {
  animation-delay: 0.4s;
  z-index: 1;
}

@keyframes podiumRise {
  from {
    opacity: 0;
    transform: translateY(80px) rotateX(15deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

.avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3), 0 8px 16px rgba(0, 0, 0, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 3px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.avatar::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(45deg) translate(-100%, -100%);
  transition: transform 0.6s ease;
}

.avatar:hover::before {
  transform: rotate(45deg) translate(100%, 100%);
}

.avatar:hover {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), 0 12px 24px rgba(0, 0, 0, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.first .avatar {
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 50%, #ff8c00 100%);
  width: 112px;
  height: 112px;
  font-size: 2.8rem;
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 20px 40px rgba(255, 165, 0, 0.4), 0 16px 32px rgba(0, 0, 0, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.3), 0 0 60px rgba(255, 215, 0, 0.3);
}

.first .avatar:hover {
  box-shadow: 0 32px 64px rgba(255, 165, 0, 0.5), 0 20px 40px rgba(0, 0, 0, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.4), 0 0 80px rgba(255, 215, 0, 0.4);
}

.second .avatar {
  background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 50%, #909090 100%);
  border-color: rgba(192, 192, 192, 0.3);
  box-shadow: 0 16px 32px rgba(192, 192, 192, 0.2),
    0 12px 24px rgba(0, 0, 0, 0.3), inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.third .avatar {
  background: linear-gradient(135deg, #cd7f32 0%, #b8860b 50%, #a0522d 100%);
  border-color: rgba(205, 127, 50, 0.3);
  box-shadow: 0 16px 32px rgba(205, 127, 50, 0.2),
    0 12px 24px rgba(0, 0, 0, 0.3), inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.player-info {
  text-align: center;
  color: white;
  margin-bottom: 24px;
}

.player-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.player-score {
  font-size: 1rem;
  opacity: 0.85;
  font-weight: 500;
  color: #e0e7ff;
}

.podium-base {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px 16px 0 0;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(20px) saturate(150%);
}

.podium-base::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
}

.podium-base::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    transparent 50%,
    rgba(255, 255, 255, 0.03) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.podium-base:hover::after {
  opacity: 1;
}

.first .podium-base {
  width: 160px;
  height: 200px;
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.15) 0%,
    rgba(255, 215, 0, 0.05) 100%
  );
  border-color: rgba(255, 215, 0, 0.25);
  box-shadow: 0 16px 32px rgba(255, 215, 0, 0.1);
}

.first .podium-base::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 215, 0, 0.6),
    transparent
  );
}

.second .podium-base {
  width: 140px;
  height: 160px;
  background: linear-gradient(
    135deg,
    rgba(192, 192, 192, 0.12) 0%,
    rgba(192, 192, 192, 0.04) 100%
  );
  border-color: rgba(192, 192, 192, 0.2);
  box-shadow: 0 12px 24px rgba(192, 192, 192, 0.08);
}

.second .podium-base::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(192, 192, 192, 0.5),
    transparent
  );
}

.third .podium-base {
  width: 120px;
  height: 120px;
  background: linear-gradient(
    135deg,
    rgba(205, 127, 50, 0.12) 0%,
    rgba(205, 127, 50, 0.04) 100%
  );
  border-color: rgba(205, 127, 50, 0.2);
  box-shadow: 0 12px 24px rgba(205, 127, 50, 0.08);
}

.third .podium-base::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(205, 127, 50, 0.5),
    transparent
  );
}

.rank-number {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  letter-spacing: -0.02em;
}

.other-rankings {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(30px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  margin-bottom: 10px;
}

.ranking-item {
  display: flex;
  align-items: center;
  padding: 20px;
  margin-bottom: 12px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  animation: rankingSlide 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  animation-fill-mode: both;
  position: relative;
  overflow: hidden;
}

.ranking-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  transition: left 0.5s ease;
}

.ranking-item:hover::before {
  left: 100%;
}

.ranking-item:nth-child(1) {
  animation-delay: 1s;
}
.ranking-item:nth-child(2) {
  animation-delay: 1.1s;
}
.ranking-item:nth-child(3) {
  animation-delay: 1.2s;
}

@keyframes rankingSlide {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.ranking-item:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  transform: translateX(8px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.rank-pos {
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-right: 24px;
  min-width: 40px;
  letter-spacing: -0.01em;
}

.mini-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  margin-right: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.mini-avatar::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(45deg) translate(-100%, -100%);
  transition: transform 0.4s ease;
}

.mini-avatar:hover::before {
  transform: rotate(45deg) translate(100%, 100%);
}

.mini-avatar:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.ranking-info {
  flex-grow: 1;
  color: white;
}

.ranking-name {
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.ranking-score {
  font-size: 0.95rem;
  opacity: 0.75;
  color: #c7d2fe;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .leaderboard-container {
    padding: 24px;
  }

  .title {
    font-size: clamp(2rem, 6vw, 2.5rem);
    margin-bottom: 40px;
  }

  .podium-container {
    gap: 16px;
    height: 380px;
  }

  .avatar {
    width: 72px;
    height: 72px;
    font-size: 1.8rem;
  }

  .first .avatar {
    width: 88px;
    height: 88px;
    font-size: 2.2rem;
  }

  .first .podium-base {
    width: 140px;
    height: 180px;
  }

  .second .podium-base {
    width: 120px;
    height: 140px;
  }

  .third .podium-base {
    width: 100px;
    height: 100px;
  }

  .rank-number {
    font-size: 2.5rem;
  }

  .other-rankings {
    padding: 24px;
  }

  .ranking-item {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .leaderboard-container {
    padding: 20px;
  }

  .podium-container {
    gap: 12px;
    height: 320px;
  }

  .avatar {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .first .avatar {
    width: 72px;
    height: 72px;
    font-size: 1.8rem;
  }

  .first .podium-base {
    width: 120px;
    height: 150px;
  }

  .second .podium-base {
    width: 100px;
    height: 120px;
  }

  .third .podium-base {
    width: 80px;
    height: 90px;
  }

  .rank-number {
    font-size: 2rem;
    bottom: 16px;
  }

  .player-name {
    font-size: 1.1rem;
  }

  .mini-avatar {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
}
/* Merch section */

.container-merch {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.premium-merch-section {
  padding: 120px 0;

  position: relative;
  overflow: hidden;
}

.premium-merch-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.luxury-bg-element {
  position: absolute;
  border-radius: 50%;

  filter: blur(40px);
  animation: luxuryFloat 15s ease-in-out infinite;
}

.luxury-element-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.luxury-element-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: -5%;
  animation-delay: 7s;
}

.luxury-element-3 {
  width: 250px;
  height: 250px;
  bottom: 20%;
  left: 20%;
  animation-delay: 14s;
}

@keyframes luxuryFloat {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.3;
  }
  25% {
    transform: translate(30px, -50px) rotate(90deg);
    opacity: 0.5;
  }
  50% {
    transform: translate(60px, -30px) rotate(180deg);
    opacity: 0.3;
  }
  75% {
    transform: translate(30px, 20px) rotate(270deg);
    opacity: 0.4;
  }
}

.premium-section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.premium-badge {
  display: inline-block;

  border: 1px solid rgba(120, 119, 198, 0.5);
  color: #7877c6;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  animation: premiumGlow 3s ease-in-out infinite;
}

@keyframes premiumGlow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(120, 119, 198, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(120, 119, 198, 0.6),
      0 0 40px rgba(220, 20, 60, 0.3);
  }
}

.premium-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.premium-title {
  font-size: 3.5rem;
  font-weight: 900;
  background-color: whitesmoke;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 25px;
  text-shadow: 0 0 30px rgba(120, 119, 198, 0.5);
}

.premium-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.premium-merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 80px 0;
  position: relative;
  z-index: 2;
}

.premium-merch-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(20px);
  position: relative;
  box-sizing: border-box;

  width: auto; /* biar mengikuti grid */
  height: auto; /* tinggi penuh mengikuti konten/grid */
}

.premium-merch-item:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(120, 119, 198, 0.5);
  box-shadow: 0 25px 60px rgba(120, 119, 198, 0.2),
    0 0 50px rgba(220, 20, 60, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.featured-item {
  background-color: transparent;
}

.limited-edition {
  border: 2px solid rgba(220, 20, 60, 0.5);
  background: rgba(220, 20, 60, 0.05);
}

.vip-package {
  border: 3px solid rgba(138, 43, 226, 0.6);
  background: rgba(138, 43, 226, 0.08);
  transform: scale(1.05);
}

.premium-badge-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 3;
  backdrop-filter: blur(10px);
}

.premium-badge-overlay.limited {
  background: linear-gradient(
    135deg,
    rgba(220, 20, 60, 0.9),
    rgba(255, 69, 0, 0.9)
  );
  color: white;
  animation: pulseRed 2s ease-in-out infinite;
}

.premium-badge-overlay.vip {
  background: linear-gradient(
    135deg,
    rgba(138, 43, 226, 0.9),
    rgba(75, 0, 130, 0.9)
  );
  color: white;
  animation: pulsePurple 2s ease-in-out infinite;
}

.premium-badge-overlay:not(.limited):not(.vip) {
  background: linear-gradient(
    135deg,
    rgba(120, 119, 198, 0.9),
    rgba(72, 61, 139, 0.9)
  );
  color: white;
  animation: pulseBlue 2s ease-in-out infinite;
}

@keyframes pulseRed {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.8);
  }
}

@keyframes pulsePurple {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.8);
  }
}

@keyframes pulseBlue {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(120, 119, 198, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(120, 119, 198, 0.8);
  }
}

.premium-merch-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(130deg, #226674, #2dd4bf);
}

.premium-image-bg {
  height: 100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.premium-icon {
  font-size: 5rem;
  position: relative;
  z-index: 2;
  animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(5deg);
  }
  75% {
    transform: translateY(10px) rotate(-5deg);
  }
}

.premium-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  background: radial-gradient(
    circle,
    rgba(120, 119, 198, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: premiumPulse 3s ease-in-out infinite;
}

@keyframes premiumPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.6;
  }
}

.premium-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(5px);
}

.premium-merch-item:hover .premium-overlay {
  opacity: 1;
}

.premium-quick-view {
  background: linear-gradient(
    135deg,
    rgba(120, 119, 198, 0.9),
    rgba(220, 20, 60, 0.9)
  );
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.premium-quick-view:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(120, 119, 198, 0.4);
}

.premium-merch-info {
  padding: 30px;
}

.premium-category {
  color: #7877c6;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.premium-merch-title {
  color: white;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.2;
}

.premium-merch-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.premium-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.feature-tag {
  background: rgba(120, 119, 198, 0.1);
  border: 1px solid rgba(120, 119, 198, 0.3);
  color: #7877c6;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.premium-price-section {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.original-price {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
  font-size: 1.1rem;
}

.premium-price {
  color: #7877c6;
  font-size: 1.8rem;
  font-weight: 800;
}

.discount-badge {
  background: linear-gradient(135deg, #dc143c, #ff6b6b);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.limited-stock {
  color: #dc143c;
  font-size: 0.9rem;
  font-weight: 600;
  font-style: italic;
}

.premium-add-to-cart {
  width: 100%;
  background: linear-gradient(135deg, #7877c6 0%, #dc143c 100%);
  color: white;
  border: none;
  padding: 18px;
  border-radius: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.premium-add-to-cart::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.premium-add-to-cart:hover::before {
  left: 100%;
}

.premium-add-to-cart:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(120, 119, 198, 0.4);
}

.limited-btn {
  background: linear-gradient(135deg, #dc143c 0%, #ff6b6b 100%);
}

.vip-btn {
  background: linear-gradient(135deg, #8a2be2 0%, #4b0082 100%);
  box-shadow: 0 0 30px rgba(138, 43, 226, 0.3);
}

.premium-benefits-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 80px 0;
  padding: 50px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  border-color: rgba(120, 119, 198, 0.3);
  box-shadow: 0 10px 25px rgba(120, 119, 198, 0.1);
}

.benefit-icon {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #7877c6, #dc143c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.benefit-text h4 {
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.benefit-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.premium-cta-section {
  text-align: center;
  margin-top: 60px;
}

.premium-view-all {
  background: linear-gradient(130deg, #226674, #2dd4bf);
  border: 0px;

  color: white;
  padding: 20px 50px;
  border-radius: 35px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.5s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 15px;

  position: relative;
  overflow: hidden;
}

.premium-view-all:hover {
  transform: translateY(-5px) scale(1.05);
}

.premium-note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-top: 20px;
  font-style: italic;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .premium-title {
    font-size: 2.5rem;
  }
  .premium-merch-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .vip-package {
    transform: none;
  }
  .premium-benefits-section {
    grid-template-columns: 1fr;
  }
  .benefit-item {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================= */
/* 📱 Responsive Styles          */
/* ============================= */
@media (max-width: 768px) {
  /* Navbar */
  .navbar {
    flex-direction: column;
    gap: 1rem;
  }

  .navbar-links {
    flex-direction: column;
    gap: 1rem;
  }

  .logo {
    text-align: center;
    width: 100%;
  }

  /* Leaderboard */
  .leaderboard-container {
    padding: 15px;
  }

  .title {
    font-size: 2rem;
  }

  .leaderboard {
    padding: 20px;
  }

  .leaderboard-item {
    flex-direction: column;
    text-align: center;
  }

  .rank {
    margin-bottom: 10px;
  }

  /* Merch */
  .container-merch {
    padding: 30px 15px;
  }

  .title {
    font-size: 2rem;
  }

  .premium-merch-grid {
    grid-template-columns: 1fr;
  }

  .premium-merch-item {
    padding: 20px;
  }
}

/* Tambahan grid responsif merch lebih halus */
@media (max-width: 992px) {
  .premium-merch-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .premium-merch-grid {
    grid-template-columns: 1fr;
  }
}
