<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#item_custom_premium,
#item_custom_vip {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #fff !important;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.25);
  margin-left: 10px;
}

#item_custom_premium:hover,
#item_custom_vip:hover {
  background: linear-gradient(135deg, #FFA500, #FF8C00);
  transform: scale(1.05);
}

#item_custom_premium i,
#item_custom_vip i {
  margin-right: 6px;
  color: #fff;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  background-color: #000;
}

.social-icons .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

.social-icons .icon.x {
  color: #1DA1F2;
  background-color: #141d26;
}

.social-icons .icon.x:hover {
  background-color: #1DA1F2;
  color: white;
  box-shadow: 0 0 15px #1DA1F2;
  transform: scale(1.15);
}

.social-icons .icon.x svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  transition: fill 0.3s ease;
}

.social-icons .icon.discord {
  color: #7289DA;
  background-color: #1e2136;
}

.social-icons .icon.discord:hover {
  background-color: #7289DA;
  color: white;
  box-shadow: 0 0 15px #7289DA;
  transform: scale(1.15);
}

.social-icons .icon.discord i {
  font-size: 24px;
  transition: color 0.3s ease;
}</pre></body></html>