/* =====================================================
   PIXEL-stream — ADVERTISEMENT PSYCHOLOGY SYSTEM (FIXED)
   Enterprise • Calm • Aligned • Non-Intrusive
===================================================== */

/* =====================================================
   GLOBAL AD RULES
===================================================== */

.sv-hero-native,
.sv-hero-native *,
.ad-slot,
.ad-slot * {
  text-align: center !important;
  box-sizing: border-box;
}

/* =====================================================
   HERO / MID-PAGE NATIVE AD
===================================================== */

.sv-hero-native {
  /* Alignment with content */
  max-width: 1200px;
  margin: 40px auto;
  padding: 18px 20px;

  /* Visual */
  background: linear-gradient(
    135deg,
    rgba(138, 43, 226, 0.16),
    rgba(255, 255, 255, 0.04)
  );

  border: 1px solid rgba(138, 43, 226, 0.32);
  border-radius: 18px;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  /* box-shadow: 0 26px 80px rgba(0,0,0,0.75), inset 0 0 0 1px rgba(255,255,255,0.06); */
}

/* Sponsored label */
.sv-hero-native::before {
  content: "Sponsored";
  display: block;
  margin-bottom: 10px;

  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.6);
}

/* =====================================================
   INLINE / FOOTER ADS
===================================================== */

.ad-slot {
  max-width: 1200px;
  margin: 40px auto;
  padding: 16px 14px;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;

  backdrop-filter: blur(10px);
}

/* Prevent iframe overflow */
.ad-slot iframe {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

/* =====================================================
   DESKTOP BEHAVIOR
===================================================== */

@media (min-width: 1200px) {
  .sv-hero-native {
    position: sticky;
    top: 120px; /* below header */
  }
}

/* =====================================================
   MOBILE SAFETY
===================================================== */

@media (max-width: 768px) {
  .sv-hero-native,
  .ad-slot {
    margin: 26px 12px;
    padding: 14px 12px;
    border-radius: 16px;
  }
}
/* =====================================================
   PIXEL-stream — GOLDEN PREMIUM AD SYSTEM
   SINGLE VISUAL LANGUAGE (INDEX + WATCH + ADSTERRA)
===================================================== */

:root {
  --gold-main: rgba(212, 175, 55, 0.85);
  --gold-soft: rgba(212, 175, 55, 0.45);
  --gold-glow: rgba(255, 215, 120, 0.35);
}

/* BASE GOLD GLASS */
.sv-hero-native,
.ad-slot,
.adsterra-ad {
  position: relative;

  background: rgba(18, 6, 38, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border-radius: 20px;
  border: 2px solid var(--gold-soft);

  box-shadow:
    0 0 22px var(--gold-glow),
    inset 0 0 14px rgba(255, 255, 255, 0.08);

  overflow: hidden;
}

/* GOLD AURA */
.sv-hero-native::before,
.ad-slot::before,
.adsterra-ad::before {
  content: "";
  position: absolute;
  inset: -40%;

  background: radial-gradient(
    circle,
    rgba(255, 215, 120, 0.28),
    transparent 65%
  );

  opacity: 0.55;
  pointer-events: none;
}

/* GOLD SHIMMER EDGE */
.sv-hero-native::after,
.ad-slot::after,
.adsterra-ad::after {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: inherit;

  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255, 215, 120, 0.35),
    transparent 80%
  );

  opacity: 0.35;
  pointer-events: none;
}

/* HOVER — PREMIUM, CALM */
.sv-hero-native:hover,
.ad-slot:hover,
.adsterra-ad:hover {
  /* box-shadow: 0 0 30px rgba(255, 215, 120, 0.45), inset 0 0 18px rgba(255, 255, 255, 0.12); */
}
/* =====================================================
   PIXEL-stream — FINAL AD THEME (LOCKED)
   Calm • Premium • No Glow • No Overlap
   Index + Watch + Adsterra
===================================================== */

/* ---------- BASE AD CONTAINER ---------- */
.sv-hero-native,
.ad-slot {
  position: relative;
  max-width: 1200px;
  margin: 32px auto;
  padding: 18px 18px;

  background: rgba(18, 6, 38, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border: 1px solid rgba(212, 175, 55, 0.45) !important; /* soft gold */
  border-radius: 18px;

  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);

  text-align: center;
  overflow: hidden;
}

/* ---------- REMOVE ALL GLOW EFFECTS ---------- */
.sv-hero-native *,
.ad-slot * {
  box-shadow: none !important;
  text-shadow: none !important;
  filter: none !important;
}

/* ---------- "YOUR AD COULD BE HERE" ---------- */
.ad-glass {
  background: transparent;
  border: none;
  padding: 0;
}

.ad-glass h3 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 14px;
}

.ad-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- AD BUTTONS (CALM) ---------- */
.ad-btn {
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);

  transition: background 0.2s ease;
}

.ad-btn:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* ---------- ADSTERRA / IFRAME ADS ---------- */
.ad-slot iframe {
  width: 100%;
  max-width: 100%;
  display: block;

  border-radius: 14px;
  border: none;

  margin: 0 auto;
}

/* ---------- PREVENT OVERLAP ---------- */
.ad-slot,
.sv-hero-native {
  clear: both;
}

/* ---------- MOBILE SAFETY ---------- */
@media (max-width: 768px) {
  .sv-hero-native,
  .ad-slot {
    margin: 22px 12px;
    padding: 14px;
    border-radius: 16px;
  }
}

/* ---------- NEVER STICKY ---------- */
.sv-hero-native,
.ad-slot {
  position: relative !important;
  top: auto !important;
}
