/* -----------------------------------------
   GLOBAL THEME: Arcane-Tech + Neon Glow
----------------------------------------- */

body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: radial-gradient(circle at 50% 0%, #1a1a1a, #0d0d0d 60%, #000 100%);
  color: #e6e6e6;
}

.container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}
/* -----------------------------------------
   ANIMATED TIKTOK BANNER (ALCHEMISE STYLE)
----------------------------------------- */

.ai-tiktok-banner {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 14px;
  border: 2px solid #1f1f1f;
  box-shadow: 0 0 25px rgba(255, 0, 80, 0.25);
}

.ai-tiktok-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) contrast(1.1);
}

/* Neon glow pulse */
.ai-banner-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 14px;
  box-shadow:
    0 0 40px 12px rgba(255, 0, 80, 0.35),
    0 0 40px 12px rgba(0, 255, 255, 0.35);
  animation: aiGlowPulse 4.5s ease-in-out infinite;
}

@keyframes aiGlowPulse {
  0% { opacity: 0.4; }
  50% { opacity: 1; }
  100% { opacity: 0.4; }
}

/* TikTok gradient sweep */
.ai-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 0, 80, 0.25),
    rgba(0, 255, 255, 0.25),
    rgba(255, 0, 80, 0.25)
  );
  background-size: 300% 300%;
  mix-blend-mode: overlay;
  animation: aiGradientShift 14s ease infinite;
  pointer-events: none;
}

@keyframes aiGradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Soft shimmer pass */
.ai-banner-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  background-size: 200% 100%;
  mix-blend-mode: soft-light;
  animation: aiShimmer 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes aiShimmer {
  0% { background-position: -200% 0; }
  50% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* -----------------------------------------
   TIKTOK HEADER + BANNER
----------------------------------------- */

.tiktok-header {
  width: 100%;
  background: linear-gradient(180deg, #111, #0a0a0a);
  border-bottom: 4px solid #ff0050;
  box-shadow: 0 0 25px rgba(255, 0, 80, 0.35);
  padding-bottom: 20px;
}

.tiktok-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
}

.tiktok-banner {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 20px;
  border: 2px solid #1f1f1f;
  box-shadow: 0 0 18px rgba(255, 0, 80, 0.25);
}

.tiktok-title {
  font-size: 2.4rem;
  margin: 10px 0 20px;
  color: #ff0050;
  letter-spacing: 0.04em;
  text-shadow: 0 0 12px rgba(255, 0, 80, 0.6);
}

.tiktok-follow-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  background: #ff0050;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 0 14px rgba(255, 0, 80, 0.6);
  transition: transform 0.15s ease-out;
}

.tiktok-follow-btn:hover {
  transform: scale(1.05);
}

/* -----------------------------------------
   GRID + DROP CARDS
----------------------------------------- */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.drop {
  background: #111;
  border-radius: 14px;
  border: 2px solid #1f1f1f;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.drop:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.25);
}

.drop img {
  width: 100%;
  display: block;
  background: #000;
}

.drop-name {
  padding: 15px;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  color: #00eaff;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.4);
}

.drop-price {
  text-align: center;
  font-size: 1.1rem;
  color: #ff0099;
  margin-bottom: 10px;
  text-shadow: 0 0 6px rgba(255, 0, 153, 0.4);
}

.drop-category {
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 10px;
}

.corner-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff0099;
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(255, 0, 153, 0.6);
}

.live-pulse {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff0050;
  color: white;
  padding: 6px 10px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: bold;
  animation: pulse 1.4s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 0, 80, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(255, 0, 80, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 0, 80, 0); }
}

/* -----------------------------------------
   EXPAND BUTTON
----------------------------------------- */

.expand-btn {
  width: 100%;
  padding: 12px;
  background: #0f0f0f;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  color: #00eaff;
  border-top: 2px solid #1f1f1f;
  transition: background 0.2s, color 0.2s;
}

.expand-btn:hover {
  background: #00eaff;
  color: #000;
}

.links-box {
  display: none;
  padding: 15px;
  background: #0a0a0a;
  border-top: 2px solid #1f1f1f;
}

.links-box a {
  display: block;
  margin: 8px 0;
  color: #ff0099;
  text-decoration: none;
  font-weight: bold;
  text-shadow: 0 0 6px rgba(255, 0, 153, 0.4);
}

.links-box a:hover {
  text-decoration: underline;
}

/* -----------------------------------------
   BADGE-THEME BUTTONS
----------------------------------------- */

.badge-button {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 2px solid #00eaff;
  background: radial-gradient(circle at 30% 30%, #003b47 0%, #001f24 60%, #000 100%);
  color: #00eaff;
  font-family: system-ui, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.03em;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.4);
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out;
}

/* -----------------------------------------
   BUTTON GRID LAYOUT
----------------------------------------- */

.button-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
}

.badge-button:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 18px rgba(0, 255, 255, 0.6);
}

.badge-button:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3);
}
/* -----------------------------------------
   ANIMATED TIKTOK BANNER
----------------------------------------- */

.ai-tiktok-banner {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 14px;
  border: 2px solid #1f1f1f;
  box-shadow: 0 0 25px rgba(255, 0, 80, 0.25);
}

.ai-tiktok-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}

/* Neon glow pulse */
.ai-banner-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: 0 0 40px 10px rgba(255, 0, 80, 0.4),
              0 0 40px 10px rgba(0, 255, 255, 0.4);
  animation: aiGlowPulse 4s ease-in-out infinite;
  border-radius: 14px;
}

@keyframes aiGlowPulse {
  0% { opacity: 0.4; }
  50% { opacity: 1; }
  100% { opacity: 0.4; }
}

/* Moving TikTok gradient overlay */
.ai-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 0, 80, 0.25),
    rgba(0, 255, 255, 0.25),
    rgba(255, 0, 80, 0.25)
  );
  background-size: 300% 300%;
  mix-blend-mode: overlay;
  animation: aiGradientShift 12s ease infinite;
  pointer-events: none;
}

@keyframes aiGradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
