body {
  margin: 0;
  background: #05070b;
  color: #d9d9d9;
  font-family: Arial, sans-serif;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* =========================
   GLOBAL WATERMARK BACKGROUND
   ========================= */
.background-logo {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1400px;
  max-width: 95vw;
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}

/* =========================
   NAVIGATION
   ========================= */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 50px;
  position: relative;
  z-index: 2;
}

.nav-logo {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav a {
  color: #d9d9d9;
  text-decoration: none;
  letter-spacing: 2px;
  transition: 0.3s ease;
}

.nav a:hover {
  color: white;
  text-shadow: 0 0 8px #00aaff;
}

/* =========================
   DJ IMAGE
   ========================= */
.dj-container {
  position: relative;
  z-index: 2;
}

.dj-image {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================
   EMAIL SECTION
   ========================= */
.email-section {
  margin-top: 80px;
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
}

.email-section input {
  padding: 12px;
  width: 250px;
  border-radius: 5px;
  border: none;
  margin-right: 10px;
}

.email-section button {
  padding: 12px 20px;
  background: #00aaff;
  border: none;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

.email-section button:hover {
  background: #008ecc;
}

/* Make Kit form match site */
.email-section .formkit-form {
  max-width: 520px;
  margin: 0 auto;
}

/* Input styling */
.email-section .formkit-input {
  background: rgba(255,255,255,0.95) !important;
  border-radius: 10px !important;
  border: 1px solid rgba(0,170,255,0.35) !important;
  padding: 14px 16px !important;
}

/* Button styling */
.email-section .formkit-submit {
  border-radius: 10px !important;
  background: rgba(0,170,255,0.95) !important;
  box-shadow: 0 0 18px rgba(0,170,255,0.25);
}

.email-section .formkit-submit:hover {
  box-shadow: 0 0 26px rgba(0,170,255,0.45);
  transform: translateY(-1px);
}

/* Hide "Built with Kit" */
.email-section .formkit-powered-by-convertkit-container {
  display: none !important;
}

/* =========================
   SOCIAL BAR
   ========================= */
.social-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 60px 0;
  position: relative;
  z-index: 2;
}

.social-bar img {
  width: 38px;
  height: 38px;
  transition: 0.3s ease;
}

.social-bar img:hover {
  transform: scale(1.15);
  filter: drop-shadow(0 0 12px #00ccff);
}

/* =========================
   MERCH PAGE
   ========================= */
.merch-wrap{
  width: min(1100px, 92vw);
  margin: 60px auto 100px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.merch-title{
  margin: 0 0 8px 0;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.merch-sub{
  margin: 0 0 40px 0;
  opacity: 0.7;
  letter-spacing: 0.1em;
}

.shopify-embed{
  display: flex;
  justify-content: center;
}

/* Shopify Buy Button “blend-in” look */
.shopify-buy__btn {
  border-radius: 12px !important;
  box-shadow: 0 0 18px rgba(0,170,255,0.25) !important;
}

.shopify-buy__btn:hover {
  box-shadow: 0 0 26px rgba(0,170,255,0.45) !important;
  transform: translateY(-1px);
}

/* =========================
   PRODUCT CARD
   ========================= */
.shopify-card{
  width: min(560px, 94vw);
  margin: 0 auto;
  padding: 28px 24px;
  border-radius: 24px;

  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(255,255,255,0.4);

  box-shadow:
    0 20px 60px rgba(0,0,0,0.45),
    0 0 40px rgba(0,170,255,0.15);

  position: relative;
  z-index: 3;
}

/* Shopify text fix for white card */
.shopify-card .shopify-buy__product__title,
.shopify-card .shopify-buy__product__price,
.shopify-card .shopify-buy__product__variant-title,
.shopify-card .shopify-buy__option-select__label,
.shopify-card .shopify-buy__product__description {
  color: #0b0f14 !important;
}

/* Dropdown styling */
.shopify-card select,
.shopify-card input {
  border-radius: 12px !important;
  border: 1px solid rgba(0,0,0,0.12) !important;
}

/* Button styling */
.shopify-card .shopify-buy__btn{
  border-radius: 14px !important;
  background: rgba(0,170,255,0.95) !important;
  box-shadow: 0 0 18px rgba(0,170,255,0.25) !important;
}

.shopify-card .shopify-buy__btn:hover{
  box-shadow: 0 0 30px rgba(0,170,255,0.45) !important;
  transform: translateY(-1px);
}

/* =========================
   COUNTDOWN — NEON PINK BOXES (GLOBAL)
   20% SMALLER (font/padding/radius/gap)
   ========================= */

/* Layout for boxed countdown */
.countdown-overlay #countdown{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;          /* was 12px */
  flex-wrap: wrap;
}

/* Subtle pulse */
@keyframes pinkPulse {
  0%, 100% {
    box-shadow:
      0 0 8px rgba(255,43,214,0.85),
      0 0 22px rgba(255,43,214,0.55),
      inset 0 0 14px rgba(255,43,214,0.25);
  }
  50% {
    box-shadow:
      0 0 14px rgba(255,43,214,1),
      0 0 34px rgba(255,43,214,0.75),
      inset 0 0 18px rgba(255,43,214,0.35);
  }
}

/* Each number capsule (20% smaller) */
.countdown-overlay #countdown .cd-box{
  min-width: 2.6ch;
  text-align: center;

  padding: 8px 11px;     /* was 10px 14px */
  border-radius: 12px;   /* was 14px */
  border: 2px solid rgba(255, 43, 214, 0.95);
  background: rgba(255, 43, 214, 0.08);

  font-size: clamp(18px, 2.7vw, 29px); /* was clamp(22px, 3.4vw, 36px) */
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.05;
  color: #fff;

  /* blue text glow */
  text-shadow:
    0 0 12px rgba(0,170,255,0.65),
    0 0 28px rgba(0,170,255,0.40),
    0 0 48px rgba(0,170,255,0.22);

  /* extra blue neon via filter */
  filter:
    drop-shadow(0 0 10px rgba(0,170,255,0.70))
    drop-shadow(0 0 26px rgba(0,170,255,0.38));

  /* pink box neon */
  box-shadow:
    0 0 8px rgba(255,43,214,0.85),
    0 0 22px rgba(255,43,214,0.55),
    inset 0 0 14px rgba(255,43,214,0.25);

  animation: pinkPulse 2.4s ease-in-out infinite;
}

/* Separators (:) */
.countdown-overlay #countdown .cd-sep{
  opacity: 0.65;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 2px;
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .countdown-overlay #countdown .cd-box { animation: none !important; }
}
/* X icon slight size adjustment */
.social-bar .x-icon{
  width: 34px;
  height: 34px;
}

/* keep hover glow consistent */
.social-bar .x-icon:hover{
  transform: scale(1.15);
  filter: drop-shadow(0 0 12px #00ccff);
}
/* X icon slight size adjustment */
.social-bar .x-icon{
  width: 34px;
  height: 34px;
}
/* X icon enhancement */
.social-bar .x-icon{
  width: 36px;
  height: 36px;
  filter:
    brightness(1.2)
    drop-shadow(0 0 8px rgba(0,170,255,0.35));
  transition: 0.3s ease;
}

.social-bar .x-icon:hover{
  transform: scale(1.15);
  filter:
    brightness(1.4)
    drop-shadow(0 0 14px rgba(0,170,255,0.6));
}
/* X icon (SVG) — visible + matches hover glow */
.social-bar .x-svg{
  width: 38px;
  height: 38px;
  display: block;
  fill: #fff;
  opacity: 0.95;
  transition: 0.3s ease;
  filter: drop-shadow(0 0 8px rgba(0,170,255,0.25));
}

.social-bar a:hover .x-svg{
  transform: scale(1.15);
  filter: drop-shadow(0 0 12px rgba(0,204,255,0.55));
}
/* =========================
   X ICON (social bar)
   If your x.png is dark, this forces it to read as white on the site.
   ========================= */
.social-bar img.x-icon{
  width: 38px;
  height: 38px;

  /* If the icon is already white, this won’t hurt.
     If it’s black/dark, this makes it pop. */
  filter: invert(1) drop-shadow(0 0 12px #00ccff);
  opacity: 0.95;
}
/* X icon visibility */
.social-bar img.x-icon{
  width: 38px;
  height: 38px;

  /* makes dark x.png show on dark bg */
  filter: invert(1) drop-shadow(0 0 12px #00ccff);
  opacity: 0.95;
}
/* Force X icon to be visible on dark background (works even without class) */
.social-bar img[src*="x.png"],
.social-bar img[alt="X"]{
  filter: invert(1) drop-shadow(0 0 12px #00ccff);
  opacity: 0.95;
}
/* =======================================================
   SOCIAL BAR ICON NORMALIZATION (fix X SVG sizing/alignment)
   Paste this at the BOTTOM of styles.css so it overrides
   ======================================================= */

.social-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-bar img {
  width: 28px;
  height: 28px;
  display: block;         /* removes baseline whitespace */
  object-fit: contain;    /* keeps aspect ratio consistent */
}

/* X SVG often appears optically smaller; bump it slightly */
.social-bar .x-icon {
  width: 26px;
  height: 26px;
}
/* =======================================================
   SOCIAL BAR NORMALIZATION (safe for all pages)
   Paste at BOTTOM of styles.css
   ======================================================= */

.social-bar a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* keep your PNG icons consistent */
.social-bar img{
  display: block;
}

/* IMPORTANT:
   If you previously added .x-icon sizing rules, neutralize them.
   (Doesn't hurt even if x-icon no longer exists.)
*/
.social-bar .x-icon{
  width: auto !important;
  height: auto !important;
}