/* ============================================================
   PLAYBUZZ — Shared Static Styles
   ============================================================ */

/* Google Fonts: Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #009CFF;
  --black:      #000000;
  --title:      #202d37;
  --gray:       #979797;
  --gray-light: #efefef;
  --gray-mid:   #767676;
  --purple:     #a234f7;
  --white:      #ffffff;
  --grad:       linear-gradient(90deg, var(--purple), var(--blue));
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: var(--title);
  background: var(--white);
  padding-top: 55px;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   NAVBAR
   ============================================================ */
.pb-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 55px;
  background: var(--black);
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

/* Logo */
.pb-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.pb-logo svg { width: 115px; height: 30px; }

/* Nav Links (desktop) */
.pb-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 28px;
}
.pb-nav-links a {
  color: var(--white);
  font-size: 13px;
  font-weight: 300;
  opacity: 0.85;
  transition: opacity .2s;
}
.pb-nav-links a:hover { opacity: 1; }

/* Left group */
.pb-navbar-left {
  display: flex;
  align-items: center;
}

/* Search */
.pb-search-form {
  display: flex;
  align-items: center;
  background: #1a1a1a;
  border-radius: 4px;
  padding: 0 10px;
  height: 34px;
  margin-left: 20px;
}
.pb-search-form input {
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-family: inherit;
  font-size: 13px;
  width: 160px;
  font-weight: 300;
}
.pb-search-form input::placeholder { color: #888; }
.pb-search-icon {
  width: 15px;
  height: 15px;
  fill: #888;
  margin-right: 8px;
  flex-shrink: 0;
}

/* Right buttons */
.pb-navbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pb-btn-subscribe {
  color: var(--white);
  font-size: 13px;
  font-weight: 400;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 4px;
  transition: border-color .2s;
}
.pb-btn-subscribe:hover { border-color: var(--white); }
.pb-btn-create {
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 4px;
  white-space: nowrap;
}
.pb-btn-create:hover { background: #0089e0; }

/* Hamburger (mobile) */
.pb-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.pb-hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

/* Mobile nav drawer */
.pb-mobile-menu {
  display: none;
  position: fixed;
  top: 55px; left: 0; right: 0; bottom: 0;
  background: var(--black);
  z-index: 1001;
  flex-direction: column;
  padding: 20px;
  overflow-y: auto;
}
.pb-mobile-menu.open { display: flex; }
.pb-mobile-menu a {
  color: var(--white);
  font-size: 16px;
  font-weight: 300;
  padding: 14px 0;
  border-bottom: 1px solid #222;
}
.pb-mobile-search {
  display: flex;
  align-items: center;
  background: #1a1a1a;
  border-radius: 4px;
  padding: 0 12px;
  height: 42px;
  margin-bottom: 16px;
}
.pb-mobile-search input {
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-family: inherit;
  font-size: 14px;
  width: 100%;
}

/* ============================================================
   TAGS HEADER
   ============================================================ */
.pb-tags-header {
  max-width: 820px;
  margin: 0 auto 30px;
  padding: 0 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.pb-tags-header::-webkit-scrollbar { display: none; }
.pb-tags-header ul {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 10px 0;
}
.pb-tags-header li a,
.pb-tags-header li span {
  display: block;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--gray-mid);
  border-radius: 2px;
  position: relative;
  transition: color .2s;
}
.pb-tags-header li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 12px; right: 12px;
  height: 2px;
  background: var(--grad);
  opacity: 0;
  transition: opacity .2s;
}
.pb-tags-header li a:hover { color: var(--title); }
.pb-tags-header li a:hover::after { opacity: 0.5; }
.pb-tags-header li.active a,
.pb-tags-header li.active span {
  color: var(--title);
  font-weight: 600;
}
.pb-tags-header li.active a::after { opacity: 1; }

/* ============================================================
   SECTION TITLE
   ============================================================ */
.pb-section-title {
  position: relative;
  height: 53px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pb-section-title.left { justify-content: flex-start; }
.pb-section-title .line {
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 1px;
  background: var(--gray-light);
}
.pb-section-title .back {
  position: relative;
  z-index: 1;
  background: #f5f5f5;
  border: 1px solid var(--gray-light);
  padding: 6px 20px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--title);
  letter-spacing: .5px;
  transform: translate(4px, 4px);
}
.pb-section-title .heading {
  position: absolute;
  z-index: 2;
  background: var(--white);
  border: 1px solid var(--gray-light);
  padding: 6px 20px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--title);
  letter-spacing: .5px;
}

/* ============================================================
   CATALOG PAGE
   ============================================================ */
.pb-catalog {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
}
.pb-catalog-title {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  margin: 40px 0 24px;
  color: var(--title);
}

/* Top Articles (3 columns) */
.pb-top-articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

/* Main two-column layout */
.pb-catalog-body {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.pb-articles-col {
  flex: 1;
  min-width: 0;
}
.pb-sidebar-col {
  width: 300px;
  flex-shrink: 0;
}

/* Articles Grid */
.pb-articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.pb-articles-grid .big-card {
  grid-column: 1 / -1;
}

/* ============================================================
   ARTICLE CARD
   ============================================================ */
.pb-card {
  border: 1px solid var(--gray-light);
  overflow: hidden;
  transition: box-shadow .2s;
  cursor: pointer;
}
.pb-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.10); }

/* Big card — horizontal layout */
.pb-card.big {
  display: flex;
  flex-direction: row-reverse;
}
.pb-card.big .pb-card-image { width: 50%; flex-shrink: 0; }
.pb-card.big .pb-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 24px;
}
.pb-card.big .pb-card-title { font-size: 20px; }

/* Normal card — vertical layout */
.pb-card-image {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  overflow: hidden;
  background: #eee;
}
.pb-card.big .pb-card-image { padding-bottom: 0; min-height: 220px; }
.pb-card-image img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.pb-card.big .pb-card-image img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.pb-card:hover .pb-card-image img { transform: scale(1.03); }

/* Binge badge */
.pb-binge-badge {
  position: absolute;
  bottom: 8px; left: 8px;
  background: var(--purple);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: .5px;
}

/* Share overlay */
.pb-card-share {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity .2s;
}
.pb-card:hover .pb-card-share { opacity: 1; }
.pb-share-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.pb-share-btn.fb { background: #1877f2; }
.pb-share-btn.tw { background: #1da1f2; }
.pb-share-btn.wa { background: #25d366; }

.pb-card-body {
  padding: 12px 14px 14px;
  border-top: 1px solid var(--gray-light);
}
.pb-card-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--title);
  line-height: 1.4;
  margin-bottom: 6px;
  text-align: center;
}
.pb-card.big .pb-card-title { text-align: left; }
.pb-card-creator {
  font-size: 12px;
  font-weight: 400;
  color: var(--gray-mid);
  text-align: center;
}
.pb-card.big .pb-card-creator { text-align: left; }

/* Trending sidebar cards */
.pb-trending-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pb-trending-card {
  display: flex;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--gray-light);
  padding-bottom: 14px;
  cursor: pointer;
}
.pb-trending-card:last-child { border-bottom: none; }
.pb-trending-thumb {
  width: 80px;
  height: 53px;
  flex-shrink: 0;
  overflow: hidden;
  background: #eee;
}
.pb-trending-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.pb-trending-card:hover .pb-trending-thumb img { transform: scale(1.05); }
.pb-trending-info {}
.pb-trending-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--title);
  line-height: 1.4;
  margin-bottom: 4px;
}
.pb-trending-creator {
  font-size: 11px;
  color: var(--gray-mid);
}

/* ============================================================
   SUBSCRIPTION BOX (sidebar)
   ============================================================ */
.pb-subscribe-box {
  margin-top: 30px;
  background: linear-gradient(145deg, #1a1a2e, #16213e, #0f3460);
  border-radius: 6px;
  padding: 28px 20px;
  text-align: center;
  color: var(--white);
}
.pb-subscribe-box h3 {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 4px;
}
.pb-subscribe-box h3 span {
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pb-subscribe-box p {
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 16px;
  line-height: 1.5;
}
.pb-subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pb-subscribe-form input {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: inherit;
  font-size: 13px;
  outline: none;
}
.pb-subscribe-form input::placeholder { color: rgba(255,255,255,0.5); }
.pb-subscribe-form button {
  padding: 10px;
  background: var(--blue);
  color: var(--white);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  transition: background .2s;
}
.pb-subscribe-form button:hover { background: #0089e0; }
.pb-subscribe-legal {
  font-size: 9px;
  opacity: 0.5;
  margin-top: 10px;
  line-height: 1.4;
}

/* ============================================================
   PLAY / QUIZ PAGE
   ============================================================ */
.pb-play-wrapper {
  max-width: 760px;
  margin: 30px auto;
  padding: 0 20px;
}
.pb-play-cover {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 0;
}
.pb-play-cover-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
  margin-bottom: 0;
}
.pb-play-cover-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}
.pb-quiz-box {
  border: 1px solid var(--gray-light);
  border-top: none;
  border-radius: 0 0 4px 4px;
  overflow: hidden;
}
.pb-quiz-intro {
  padding: 30px 40px;
  text-align: center;
  background: #fff;
}
.pb-quiz-intro h1 {
  font-size: 26px;
  font-weight: 600;
  color: var(--title);
  line-height: 1.35;
  margin-bottom: 12px;
}
.pb-quiz-intro p {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 24px;
}
.pb-quiz-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 12px;
  color: var(--gray-mid);
  margin-bottom: 24px;
}
.pb-quiz-meta-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.pb-quiz-start-btn {
  display: inline-block;
  padding: 14px 48px;
  background: var(--blue);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background .2s;
  border: none;
  font-family: inherit;
}
.pb-quiz-start-btn:hover { background: #0089e0; }

/* Question area */
.pb-question {
  border-top: 1px solid var(--gray-light);
  padding: 28px 36px;
  display: none;
}
.pb-question.active { display: block; }
.pb-question-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
}
.pb-question-num {
  font-size: 11px;
  font-weight: 500;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.pb-question-text {
  font-size: 20px;
  font-weight: 600;
  color: var(--title);
  margin-bottom: 24px;
  line-height: 1.4;
}
.pb-answers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pb-answer {
  border: 2px solid var(--gray-light);
  border-radius: 4px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--title);
  cursor: pointer;
  transition: border-color .2s, background .2s;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 60px;
  line-height: 1.3;
}
.pb-answer:hover { border-color: var(--blue); color: var(--blue); }
.pb-answer.selected { border-color: var(--blue); background: rgba(0,156,255,0.08); color: var(--blue); }
.pb-answer.correct { border-color: #22c55e; background: rgba(34,197,94,0.1); color: #16a34a; }
.pb-answer.wrong { border-color: #ef4444; background: rgba(239,68,68,0.1); color: #dc2626; }
.pb-answer-img {
  width: 50px; height: 40px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}

/* Progress bar */
.pb-progress-bar-wrap {
  height: 4px;
  background: var(--gray-light);
  margin: 0 36px;
}
.pb-progress-bar {
  height: 4px;
  background: var(--grad);
  transition: width .4s ease;
}

/* Result screen */
.pb-result-screen {
  display: none;
  padding: 40px 36px;
  text-align: center;
  background: #fafafa;
}
.pb-result-screen.active { display: block; }
.pb-result-icon { font-size: 52px; margin-bottom: 12px; }
.pb-result-msg { font-size: 14px; color: var(--gray-mid); margin-top: 8px; }
.pb-result-score {
  font-size: 64px;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}
.pb-result-label {
  font-size: 22px;
  font-weight: 600;
  color: var(--title);
  margin-bottom: 12px;
}
.pb-result-desc {
  font-size: 14px;
  color: var(--gray-mid);
  max-width: 500px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.pb-result-share {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
}
.pb-result-share-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.pb-result-share-btn.fb { background: #1877f2; }
.pb-result-share-btn.tw { background: #1da1f2; }
.pb-result-share-btn.retake { background: var(--gray-light); color: var(--title); }
.pb-quiz-nav {
  padding: 16px 36px;
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid var(--gray-light);
}
.pb-next-btn {
  padding: 10px 28px;
  background: var(--blue);
  color: var(--white);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background .2s;
  display: none;
}
.pb-next-btn:hover { background: #0089e0; }
.pb-next-btn.visible { display: block; }

/* Separator */
.pb-separator {
  border: none;
  border-top: 1px solid var(--gray-light);
  margin: 40px 0;
}

/* Related items */
.pb-related-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--title);
  margin-bottom: 20px;
  letter-spacing: .5px;
}
.pb-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.pb-trending-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* ============================================================
   FOOTER
   ============================================================ */
.pb-footer {
  background: #111;
  color: rgba(255,255,255,0.6);
  padding: 40px 20px 24px;
  margin-top: 60px;
}
.pb-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}
.pb-footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: .8px;
  margin-bottom: 14px;
}
.pb-footer-col a {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  transition: color .2s;
}
.pb-footer-col a:hover { color: var(--white); }
.pb-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid #333;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.pb-footer-copy { font-size: 11px; }
.pb-footer-links { display: flex; gap: 16px; }
.pb-footer-links a { font-size: 11px; color: rgba(255,255,255,0.4); }
.pb-footer-links a:hover { color: var(--white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .pb-nav-links,
  .pb-search-form,
  .pb-btn-create { display: none; }
  .pb-hamburger { display: flex; }
  .pb-navbar-right { display: none; }

  .pb-top-articles { grid-template-columns: repeat(2, 1fr); }
  .pb-top-articles .pb-card:last-child { display: none; }

  .pb-catalog-body { flex-direction: column; }
  .pb-sidebar-col { width: 100%; }

  .pb-articles-grid { grid-template-columns: 1fr; }
  .pb-card.big { flex-direction: column; }
  .pb-card.big .pb-card-image { width: 100%; min-height: 0; padding-bottom: 56.25%; }

  .pb-footer-inner { grid-template-columns: repeat(2, 1fr); }

  .pb-related-grid { grid-template-columns: repeat(2, 1fr); }
  .pb-trending-grid { grid-template-columns: repeat(2, 1fr); }

  .pb-quiz-intro { padding: 20px; }
  .pb-question { padding: 20px; }
  .pb-answers { grid-template-columns: 1fr; }
  .pb-progress-bar-wrap { margin: 0 20px; }
  .pb-quiz-nav { padding: 12px 20px; }
  .pb-result-screen { padding: 30px 20px; }
}
@media (max-width: 480px) {
  .pb-top-articles { grid-template-columns: 1fr; }
  .pb-top-articles .pb-card:nth-child(n+2) { display: none; }
  .pb-footer-inner { grid-template-columns: 1fr; }
  .pb-result-share { flex-direction: column; align-items: center; }
}

/* ============================================================
   NEW TOP NAV (real-site style)
   ============================================================ */
.pb-topnav {
  position: fixed; top: 0; left: 0; right: 0;
  background: #111; z-index: 1010;
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
  display: block; padding: 0; height: 52px;
}
.pb-topnav-inner {
  display: flex; align-items: center; height: 52px;
  padding: 0 20px; gap: 0; width: 100%; box-sizing: border-box;
}
.pb-logo-txt {
  font-size: 22px; font-weight: 700; letter-spacing: -.5px;
  background: linear-gradient(90deg, #a234f7, #009CFF);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; text-decoration: none; flex-shrink: 0;
}
.pb-topnav-links { display: flex; align-items: center; gap: 2px; margin-left: 20px; }
.pb-topnav .pb-hamburger { display: none; margin-right: 10px; }
.pb-dd { position: relative; }
.pb-dd-btn {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.78); font-size: 12px; font-weight: 500;
  letter-spacing: .4px; padding: 8px 11px; border-radius: 4px;
  font-family: inherit; display: flex; align-items: center; gap: 4px;
  transition: background .15s, color .15s;
}
.pb-dd-btn:hover { color: #fff; background: rgba(255,255,255,.08); }
.pb-dd-caret { font-size: 9px; opacity: .65; }
.pb-dd-menu {
  display: none; position: absolute; top: calc(100% + 4px); left: 0;
  background: #1e1e1e; border: 1px solid rgba(255,255,255,.1);
  border-radius: 5px; min-width: 165px; padding: 6px 0;
  box-shadow: 0 6px 20px rgba(0,0,0,.5); z-index: 100;
}
.pb-dd.open .pb-dd-menu { display: block; }
.pb-dd-menu a {
  display: block; padding: 10px 16px; font-size: 13px;
  color: rgba(255,255,255,.72); text-decoration: none;
}
.pb-dd-menu a:hover { background: rgba(255,255,255,.07); color: #fff; }
.pb-search-toggle {
  margin-left: auto; background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.72); font-size: 12px; font-weight: 500;
  display: flex; align-items: center; gap: 6px; padding: 8px 11px;
  border-radius: 4px; font-family: inherit; transition: background .15s, color .15s;
}
.pb-search-toggle:hover { color: #fff; background: rgba(255,255,255,.08); }
.pb-search-expand {
  display: none; padding: 8px 20px 10px; background: #1a1a1a;
  border-top: 1px solid rgba(255,255,255,.06);
}
.pb-search-expand input {
  width: 100%; max-width: 520px; padding: 9px 14px; border: none;
  border-radius: 4px; font-size: 14px; outline: none; font-family: inherit;
}
.pb-mob-nav {
  display: none; position: fixed; top: 52px; left: 0; right: 0; bottom: 0;
  background: #111; z-index: 998; padding: 16px; flex-direction: column;
  overflow-y: auto;
}
.pb-mob-nav.open { display: flex; }
.pb-mob-nav a {
  color: #fff; font-size: 15px; padding: 13px 0;
  border-bottom: 1px solid #222; text-decoration: none;
}
@media (max-width: 820px) {
  .pb-topnav-links { display: none; }
  .pb-topnav .pb-hamburger { display: flex; }
  .pb-search-toggle { margin-left: auto; }
}

/* ============================================================
   SUBSCRIBE MODAL
   ============================================================ */
.pb-sub-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.72); z-index: 9990;
}
.pb-sub-modal {
  display: none; position: fixed; top: 50%; left: 50%;
  transform: translate(-50%, -50%); z-index: 9991;
  background: linear-gradient(145deg, #1a1a2e, #16213e, #0f3460);
  border-radius: 10px; padding: 38px 30px 28px; text-align: center;
  color: #fff; max-width: 420px; width: 90%;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.pb-sub-modal h2 {
  font-size: 20px; font-weight: 700; margin-bottom: 10px;
  letter-spacing: .5px;
}
.pb-sub-modal .pb-sub-sub { font-size: 14px; opacity: .9; margin-bottom: 4px; }
.pb-sub-modal .pb-sub-spam { font-size: 12px; opacity: .55; margin-bottom: 22px; }
.pb-sub-modal form { display: flex; flex-direction: column; gap: 10px; }
.pb-sub-modal input[type=email] {
  padding: 11px 14px; border: 1px solid rgba(255,255,255,.2);
  border-radius: 5px; background: rgba(255,255,255,.1); color: #fff;
  font-size: 13px; outline: none; font-family: inherit;
}
.pb-sub-modal input[type=email]::placeholder { color: rgba(255,255,255,.45); }
.pb-sub-modal .pb-sub-btn {
  padding: 11px; background: linear-gradient(90deg, #a234f7, #009CFF);
  color: #fff; border: none; border-radius: 5px; font-size: 14px;
  font-weight: 600; cursor: pointer; font-family: inherit;
}
.pb-sub-nothanks {
  display: inline-block; margin-top: 14px; font-size: 12px;
  opacity: .55; color: #fff; text-decoration: underline;
}
.pb-sub-nothanks:hover { opacity: .85; }
.pb-sub-legal {
  font-size: 10px; opacity: .38; margin-top: 14px; line-height: 1.6;
}
.pb-sub-legal a { color: #aaa; text-decoration: underline; }
.pb-sub-close {
  position: absolute; top: 12px; right: 14px; background: none; border: none;
  color: #fff; font-size: 22px; cursor: pointer; opacity: .55; line-height: 1;
}
.pb-sub-close:hover { opacity: 1; }

/* Nav action buttons */
.pb-nav-subscribe{background:none;border:none;color:#fff;font-size:11px;font-weight:600;letter-spacing:.8px;cursor:pointer;padding:7px 14px;font-family:inherit;white-space:nowrap;opacity:.85;margin-left:auto;}
.pb-nav-subscribe:hover{opacity:1;}
.pb-nav-create{background:#a234f7;color:#fff;font-size:11px;font-weight:600;letter-spacing:.5px;padding:8px 16px;border-radius:3px;text-decoration:none;white-space:nowrap;margin-left:4px;}
.pb-nav-create:hover{background:#8f1ee0;}
@media(max-width:900px){.pb-nav-subscribe,.pb-nav-create{display:none;}}
