:root {
  --gvst-purple: #6d28d9;
  --gvst-purple-2: #8b5cf6;
  --gvst-purple-3: #4c1d95;
  --gvst-bg: #f8f7fc;
  --gvst-card: #ffffff;
  --gvst-text: #120f20;
  --gvst-muted: #6f6a7c;
  --gvst-border: #ece7f6;
  --gvst-soft: #f2ebff;
  --gvst-shadow: 0 10px 30px rgba(33, 20, 75, .08);
  --gvst-shadow-hover: 0 18px 45px rgba(75, 40, 150, .16);
  --gvst-radius: 16px;
  --gvst-container: 1180px;
}

html.gvst-no-scroll,
body.gvst-body,
body.gvst-custom-front-page {
  overflow-x: hidden;
}

.gvst-wrap,
.gvst-wrap * {
  box-sizing: border-box;
}

.gvst-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  background: var(--gvst-bg);
  color: var(--gvst-text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.45;
}

body.gvst-body {
  margin: 0;
  background: var(--gvst-bg);
  color: var(--gvst-text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.gvst-wrap a {
  color: inherit;
  text-decoration: none;
}

.gvst-wrap img {
  max-width: 100%;
}

.gvst-container {
  width: min(var(--gvst-container), calc(100% - 40px));
  margin-inline: auto;
}

/* Header */
.gvst-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--gvst-border);
}

.admin-bar .gvst-header { top: 32px; }

.gvst-topbar {
  min-height: 68px;
  display: grid;
  grid-template-columns: 270px minmax(260px, 1fr) auto;
  align-items: center;
  gap: 22px;
}

.gvst-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  line-height: 1;
  letter-spacing: -1px;
  font-size: 28px;
  font-weight: 900;
}

.gvst-logo-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #fff;
  font-size: 24px;
  background: radial-gradient(circle at 34% 26%, #a78bfa, #6d28d9 58%, #2e1065 100%);
  border: 4px solid rgba(255,255,255,.75);
  box-shadow: 0 8px 22px rgba(109, 40, 217, .22);
}

.gvst-logo-word { white-space: nowrap; }
.gvst-logo-word b { color: var(--gvst-purple); }

.gvst-search {
  height: 45px;
  border: 1px solid var(--gvst-border);
  border-radius: 10px;
  background: #fff;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 48px;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(33, 20, 75, .04);
  min-width: 0;
}

.gvst-search span {
  color: var(--gvst-muted);
  text-align: right;
  padding-right: 4px;
  font-size: 20px;
}

.gvst-search input {
  width: 100%;
  min-width: 0;
  height: 100%;
  padding: 0 12px;
  border: 0 !important;
  outline: 0;
  background: transparent;
  color: var(--gvst-text);
  font-size: 14px;
}

.gvst-search button {
  width: 48px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, var(--gvst-purple), var(--gvst-purple-2));
  font-weight: 900;
  font-size: 22px;
}

.gvst-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}

.gvst-icon-btn,
.gvst-menu-toggle {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--gvst-text);
  cursor: pointer;
  border-radius: 50%;
  transition: background .2s ease, transform .2s ease, color .2s ease;
  font-size: 18px;
}

.gvst-icon-btn:hover,
.gvst-menu-toggle:hover {
  background: var(--gvst-soft);
  color: var(--gvst-purple);
  transform: translateY(-1px);
}

.gvst-follow,
.gvst-readmore,
.gvst-newsletter button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #fff !important;
  background: linear-gradient(135deg, var(--gvst-purple), #7c3aed);
  border-radius: 9px;
  box-shadow: 0 10px 20px rgba(109, 40, 217, .22);
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.gvst-follow {
  padding: 12px 16px;
  font-size: 13px;
  white-space: nowrap;
}

.gvst-follow:hover,
.gvst-readmore:hover,
.gvst-newsletter button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(109, 40, 217, .3);
  filter: brightness(1.04);
}

.gvst-menu-toggle { display: none; font-size: 23px; }

.gvst-nav {
  background: #fff;
  border-top: 1px solid var(--gvst-border);
}

.gvst-nav-inner {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.gvst-nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.gvst-nav-link {
  height: 100%;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0 8px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.gvst-nav-link span {
  color: var(--gvst-muted);
  font-size: 13px;
  transition: transform .2s ease, color .2s ease;
}

.gvst-nav-link::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(135deg, var(--gvst-purple), var(--gvst-purple-2));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}

.gvst-nav-item:hover .gvst-nav-link,
.gvst-nav-item:focus-within .gvst-nav-link {
  color: var(--gvst-purple);
  background: rgba(109,40,217,.06);
}

.gvst-nav-item:hover .gvst-nav-link span,
.gvst-nav-item:focus-within .gvst-nav-link span {
  transform: rotate(180deg);
  color: var(--gvst-purple);
}

.gvst-nav-item:hover .gvst-nav-link::after,
.gvst-nav-item:focus-within .gvst-nav-link::after { transform: scaleX(1); }

.gvst-dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  min-width: 240px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--gvst-border);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(27, 14, 63, .16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.gvst-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

.gvst-nav-item:hover .gvst-dropdown,
.gvst-nav-item:focus-within .gvst-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.gvst-dropdown-title {
  padding: 8px 10px 10px;
  font-weight: 900;
  color: var(--gvst-purple);
  border-bottom: 1px solid var(--gvst-border);
  margin-bottom: 6px;
}

.gvst-dropdown a {
  display: block;
  padding: 9px 10px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 800;
  color: var(--gvst-text);
  transition: background .2s ease, color .2s ease, padding-left .2s ease;
}

.gvst-dropdown a:hover {
  color: var(--gvst-purple);
  background: var(--gvst-soft);
  padding-left: 14px;
}

/* Main */
.gvst-main {
  padding: 20px 0 0;
}

.gvst-trending-chips {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 17px;
  min-width: 0;
}

.gvst-trending-chips strong,
.gvst-section-head h2 {
  color: var(--gvst-purple);
}

.gvst-trending-chips strong {
  flex: 0 0 auto;
  font-size: 16px;
}

.gvst-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 0;
}

.gvst-chip-row a {
  padding: 8px 18px;
  border-radius: 999px;
  background: #f0e9ff;
  color: var(--gvst-purple);
  font-size: 13px;
  font-weight: 900;
  transition: transform .2s ease, background .2s ease;
}

.gvst-chip-row a:hover {
  transform: translateY(-2px);
  background: #e8dcff;
}

.gvst-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 28px;
  align-items: start;
}

.gvst-content-col { min-width: 0; }

.gvst-featured-area {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 18px;
  min-width: 0;
}

.gvst-hero-slider {
  position: relative;
  min-height: 340px;
  border-radius: var(--gvst-radius);
  overflow: hidden;
  background: #120922;
  box-shadow: var(--gvst-shadow);
  isolation: isolate;
  touch-action: pan-y;
}

.gvst-hero-track {
  height: 100%;
  min-height: 340px;
  display: flex;
  transition: transform .45s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}

.gvst-hero-slide {
  position: relative;
  min-width: 100%;
  min-height: 340px;
  overflow: hidden;
  background: #120922;
}

.gvst-hero-media {
  position: absolute;
  inset: 0;
  display: block;
}

.gvst-hero-media img,
.gvst-hero-media .gvst-placeholder {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.gvst-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 4, 17, .12), rgba(6, 4, 17, .38) 42%, rgba(6, 4, 17, .88));
}

.gvst-hero-copy {
  position: absolute;
  top: 50%;
  right: 44px;
  width: min(380px, 52%);
  transform: translateY(-50%);
  color: #fff;
  z-index: 2;
}

.gvst-badge,
.gvst-card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--gvst-purple), var(--gvst-purple-2));
  color: #fff;
  font-size: 11px;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .2px;
}

.gvst-badge { padding: 7px 10px; margin-bottom: 15px; }
.gvst-badge.small { position: absolute; top: 16px; left: 16px; z-index: 3; padding: 6px 9px; font-size: 10px; }

.gvst-hero-copy h1 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(30px, 4vw, 43px);
  line-height: 1.14;
  letter-spacing: -.7px;
}

.gvst-hero-copy p {
  margin: 0 0 24px;
  color: rgba(255,255,255,.88);
  font-size: 16px;
  line-height: 1.55;
}

.gvst-readmore {
  min-height: 42px;
  padding: 12px 20px;
  font-size: 14px;
}

.gvst-slider-btn {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  background: rgba(255,255,255,.74);
  color: #111;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.gvst-slider-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.06);
}

.gvst-slider-prev { left: 15px; }
.gvst-slider-next { right: 15px; }

.gvst-slider-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  z-index: 5;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.gvst-slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.74);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}

.gvst-slider-dots button.is-active {
  width: 24px;
  background: var(--gvst-purple-2);
}

.gvst-featured-side {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.gvst-side-feature {
  position: relative;
  min-height: 161px;
  border-radius: 13px;
  overflow: hidden;
  background: #150b25;
  box-shadow: var(--gvst-shadow);
}

.gvst-side-feature a,
.gvst-side-feature img,
.gvst-side-feature .gvst-placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.gvst-side-feature img,
.gvst-side-feature .gvst-placeholder { object-fit: cover; min-height: 161px; }

.gvst-side-feature h3 {
  position: absolute;
  left: 16px;
  right: 14px;
  bottom: 34px;
  z-index: 2;
  margin: 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 1000;
}

.gvst-side-feature em {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  color: rgba(255,255,255,.85);
  font-style: normal;
  font-size: 12px;
}

/* Cards / widgets */
.gvst-widget,
.gvst-post-card,
.gvst-today-card,
.gvst-category-tile,
.gvst-video-card {
  background: var(--gvst-card);
  border: 1px solid var(--gvst-border);
  box-shadow: var(--gvst-shadow);
}

.gvst-category-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 25px;
}

.gvst-category-tile {
  min-height: 102px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 16px 8px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  background: linear-gradient(135deg, #fff, #fbf9ff);
}

.gvst-category-tile:hover,
.gvst-post-card:hover,
.gvst-video-card:hover,
.gvst-today-card:hover,
.gvst-story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gvst-shadow-hover);
  border-color: #d8c7fb;
}

.gvst-category-tile span {
  font-size: 37px;
  line-height: 1;
  margin-bottom: 9px;
}

.gvst-category-tile strong {
  font-size: 13px;
  font-weight: 1000;
}

.gvst-cat-celebrity,
.gvst-cat-how-to,
.gvst-cat-online-earning { background: linear-gradient(135deg, #fff, #fff8df); }
.gvst-cat-finance { background: linear-gradient(135deg, #fff, #eafbf0); }
.gvst-cat-social-media { background: linear-gradient(135deg, #fff, #eaf7ff); }
.gvst-cat-sarkari-yojana { background: linear-gradient(135deg, #fff, #f2fff6); }
.gvst-cat-entertainment { background: linear-gradient(135deg, #fff, #f8f3ff); }
.gvst-cat-tech { background: linear-gradient(135deg, #fff, #f4f6ff); }

.gvst-section { margin: 26px 0 31px; min-width: 0; }

.gvst-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 14px;
}

.gvst-section-head h2 {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -.3px;
}

.gvst-section-head a {
  flex: 0 0 auto;
  color: #3a3152;
  font-size: 13px;
  font-weight: 900;
  transition: color .2s ease, transform .2s ease;
}

.gvst-section-head a:hover { color: var(--gvst-purple); transform: translateX(2px); }

.gvst-post-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
}

.gvst-post-card,
.gvst-video-card {
  min-width: 0;
  border-radius: 13px;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.gvst-card-image {
  position: relative;
  display: block;
  height: 124px;
  background: #eee8fb;
  overflow: hidden;
}

.gvst-card-image img,
.gvst-mini-image img,
.gvst-today-img img,
.gvst-video-image img,
.gvst-story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gvst-card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 5px 8px;
  font-size: 9px;
}

.gvst-card-body {
  padding: 11px 11px 12px;
}

.gvst-card-body h3,
.gvst-video-card h3 {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.32;
  font-weight: 1000;
}

.gvst-card-meta,
.gvst-mini-post span,
.gvst-today-card span,
.gvst-date {
  color: var(--gvst-muted);
  font-size: 11px;
}

.gvst-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
}

.gvst-stars {
  margin-left: auto;
  color: #f6aa20;
  letter-spacing: 1px;
  font-size: 11px;
}

/* Web stories */
.gvst-story-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(145px, 1fr);
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0 0 2px;
}

.gvst-story-row::-webkit-scrollbar,
.gvst-swipe-row::-webkit-scrollbar { display: none; }

.gvst-story-card {
  position: relative;
  min-height: 220px;
  border-radius: 12px;
  overflow: hidden;
  background: #180d2e;
  scroll-snap-align: start;
  transition: transform .22s ease, box-shadow .22s ease;
}

.gvst-story-card a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  color: #fff;
}

.gvst-story-card img,
.gvst-story-card .gvst-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gvst-story-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(5,2,15,.18), rgba(5,2,15,.08) 34%, rgba(5,2,15,.9));
}

.gvst-story-progress {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  z-index: 3;
  display: flex;
  gap: 5px;
}

.gvst-story-progress i {
  display: block;
  height: 4px;
  flex: 1;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
}

.gvst-story-progress i:first-child { background: var(--gvst-purple-2); }

.gvst-story-views {
  position: absolute;
  left: 12px;
  bottom: 54px;
  z-index: 3;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.gvst-story-card h3 {
  position: absolute;
  left: 12px;
  right: 10px;
  bottom: 13px;
  z-index: 3;
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 1000;
}

/* Video */
.gvst-video-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gvst-video-card { padding-bottom: 12px; }

.gvst-video-image {
  position: relative;
  display: block;
  height: 122px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  background: #140c26;
}

.gvst-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  color: var(--gvst-purple);
  font-size: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
}

.gvst-duration {
  position: absolute;
  right: 8px;
  bottom: 8px;
  border-radius: 6px;
  padding: 4px 7px;
  background: rgba(0,0,0,.72);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.gvst-video-card h3,
.gvst-video-card .gvst-date {
  display: block;
  padding: 0 10px;
}

.gvst-video-card h3 { margin-top: 10px; }

/* Sidebar */
.gvst-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.gvst-widget {
  border-radius: var(--gvst-radius);
  padding: 20px;
}

.gvst-widget h3 {
  margin: 0 0 13px;
  font-size: 18px;
  line-height: 1.25;
}

.gvst-follow-box p,
.gvst-newsletter p {
  margin: -5px 0 15px;
  color: var(--gvst-muted);
  font-size: 13px;
}

.gvst-social-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.gvst-social {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  color: #fff !important;
  font-weight: 1000;
  font-size: 19px;
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
  transition: transform .2s ease, box-shadow .2s ease;
}

.gvst-social:hover { transform: translateY(-3px); box-shadow: 0 14px 26px rgba(0,0,0,.16); }
.gvst-social-facebook { background: #315fbd; }
.gvst-social-instagram { background: radial-gradient(circle at 20% 100%, #ffd86f, #ff2e67 45%, #6c35d8); }
.gvst-social-youtube { background: #f10606; }
.gvst-social-telegram { background: #2ca7df; }
.gvst-social-whatsapp { background: #25d366; }

.gvst-ranked-post {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-bottom: 15px;
}

.gvst-ranked-post:last-child { margin-bottom: 0; }

.gvst-rank,
.gvst-today-rank {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gvst-purple), var(--gvst-purple-2));
  color: #fff;
  font-weight: 1000;
  font-size: 12px;
}

.gvst-mini-post {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-width: 0;
}

.gvst-mini-image {
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: #f1edfb;
}

.gvst-mini-post h4 {
  margin: 0 0 5px;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 1000;
}

.gvst-mini-post h4 a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gvst-popular-cats a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gvst-border);
  font-weight: 900;
  font-size: 13px;
}

.gvst-popular-cats a:last-child { border-bottom: 0; }

.gvst-popular-cats b {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 9px;
  background: #f0e9ff;
  margin-right: 8px;
  font-size: 14px;
}

.gvst-popular-cats em {
  font-style: normal;
  min-width: 40px;
  text-align: center;
  padding: 5px 8px;
  border-radius: 999px;
  background: #f4f2f8;
  color: #272139;
}

.gvst-newsletter input {
  width: 100%;
  height: 42px;
  border: 1px solid var(--gvst-border);
  border-radius: 8px;
  padding: 0 12px;
  margin-bottom: 9px;
  outline: 0;
  background: #fff;
  color: var(--gvst-text);
}

.gvst-newsletter button {
  width: 100%;
  height: 42px;
}

/* Trending today */
.gvst-today-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 3px;
}

.gvst-today-card {
  position: relative;
  min-height: 88px;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border-radius: 12px;
  padding: 11px 11px 11px 22px;
  scroll-snap-align: start;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.gvst-today-rank {
  position: absolute;
  top: 12px;
  left: 8px;
  z-index: 2;
  width: 22px;
  height: 22px;
  font-size: 11px;
}

.gvst-today-img {
  height: 62px;
  border-radius: 9px;
  overflow: hidden;
  background: #f1edfb;
}

.gvst-today-card h3 {
  margin: 0 0 5px;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 1000;
}

/* Placeholder */
.gvst-placeholder {
  width: 100%;
  height: 100%;
  min-height: 70px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  background: radial-gradient(circle at 20% 20%, #8b5cf6, #1f143f 70%);
}

.gvst-placeholder span { display: block; font-size: 36px; line-height: 1; }
.gvst-placeholder strong { display: block; margin-top: 6px; font-size: 16px; }
.gvst-placeholder-card span { font-size: 30px; }
.gvst-placeholder-card strong { font-size: 12px; }
.gvst-placeholder-mini span { font-size: 20px; }
.gvst-placeholder-mini strong { display: none; }

.gvst-empty-section {
  padding: 18px;
  border-radius: 12px;
  border: 1px dashed var(--gvst-border);
  color: var(--gvst-muted);
  background: var(--gvst-card);
}

/* Footer */
.gvst-footer {
  position: relative;
  margin-top: 28px;
  color: #fff;
  background: radial-gradient(circle at 12% 18%, #24124b, #0d061d 68%);
  overflow: hidden;
}

.gvst-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 5%, rgba(109,40,217,.16), transparent 32%);
  pointer-events: none;
}

.gvst-footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 1.15fr .85fr 1.25fr;
  gap: 42px;
  padding: 36px 0 32px;
}

.gvst-logo-footer { color: #fff; font-size: 26px; }

.gvst-footer-brand p {
  margin: 18px 0;
  color: rgba(255,255,255,.78);
  line-height: 1.65;
}

.gvst-footer h3 {
  margin: 0 0 17px;
  font-size: 18px;
  color: #fff;
}

.gvst-footer a { color: rgba(255,255,255,.88); }

.gvst-footer-links a {
  display: block;
  padding: 5px 0;
  color: rgba(255,255,255,.77);
  transition: color .2s ease, padding-left .2s ease;
}

.gvst-footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.gvst-footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.gvst-footer-popular .gvst-mini-post { margin-bottom: 14px; }
.gvst-footer-popular .gvst-mini-image { background: rgba(255,255,255,.12); }
.gvst-footer-popular h4 a,
.gvst-footer-popular span { color: rgba(255,255,255,.88); }

.gvst-footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 15px 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}

.gvst-backtop {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 998;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gvst-purple), var(--gvst-purple-2));
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 12px 25px rgba(109,40,217,.35);
}

/* Dark mode */
body.gvst-dark,
.gvst-wrap.gvst-dark {
  --gvst-bg: #0d071b;
  --gvst-card: #171025;
  --gvst-text: #f7f2ff;
  --gvst-muted: #b8b0c8;
  --gvst-border: #2a2140;
  --gvst-soft: #25183d;
  --gvst-shadow: 0 12px 30px rgba(0,0,0,.24);
  --gvst-shadow-hover: 0 18px 45px rgba(0,0,0,.35);
}

body.gvst-dark .gvst-header,
.gvst-wrap.gvst-dark .gvst-header,
body.gvst-dark .gvst-nav,
.gvst-wrap.gvst-dark .gvst-nav,
body.gvst-dark .gvst-search,
.gvst-wrap.gvst-dark .gvst-search,
body.gvst-dark .gvst-dropdown,
.gvst-wrap.gvst-dark .gvst-dropdown,
body.gvst-dark .gvst-empty-section,
.gvst-wrap.gvst-dark .gvst-empty-section,
body.gvst-dark .gvst-newsletter input,
.gvst-wrap.gvst-dark .gvst-newsletter input {
  background: var(--gvst-card);
}

body.gvst-dark .gvst-section-head a,
.gvst-wrap.gvst-dark .gvst-section-head a { color: #eee8ff; }
body.gvst-dark .gvst-popular-cats em,
.gvst-wrap.gvst-dark .gvst-popular-cats em { background: #25183d; color: #eee8ff; }

/* Responsive */
@media (max-width: 1180px) {
  .gvst-topbar { grid-template-columns: 240px minmax(220px, 1fr) auto; gap: 16px; }
  .gvst-logo { font-size: 25px; }
  .gvst-nav-inner { overflow-x: auto; justify-content: flex-start; scrollbar-width: none; }
  .gvst-nav-inner::-webkit-scrollbar { display: none; }
  .gvst-layout { grid-template-columns: minmax(0, 1fr) 300px; gap: 22px; }
  .gvst-featured-area { grid-template-columns: minmax(0, 1fr) 230px; }
  .gvst-category-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .gvst-topbar {
    min-height: auto;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 13px 0;
  }
  .gvst-search {
    grid-column: 1 / -1;
    order: 3;
  }
  .gvst-actions { gap: 7px; }
  .gvst-bell { display: none; }
  .gvst-menu-toggle { display: inline-grid; }
  .gvst-nav { display: none; }
  .gvst-header.is-menu-open .gvst-nav { display: block; }
  .gvst-nav-inner {
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 10px 0 14px;
    overflow: visible;
  }
  .gvst-nav-item { height: auto; display: block; }
  .gvst-nav-link {
    width: 100%;
    height: auto;
    min-height: 42px;
    justify-content: space-between;
    padding: 11px 12px;
    background: var(--gvst-bg);
  }
  .gvst-nav-link::after { display: none; }
  .gvst-dropdown { display: none !important; }
  .gvst-layout { grid-template-columns: 1fr; }
  .gvst-sidebar { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gvst-featured-area { grid-template-columns: 1fr; }
  .gvst-featured-side { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gvst-post-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gvst-video-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gvst-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .admin-bar .gvst-header { top: 0; }
  .gvst-container { width: min(100% - 22px, var(--gvst-container)); }
  .gvst-main { padding-top: 14px; }
  .gvst-logo { font-size: 24px; }
  .gvst-logo-mark { width: 42px; height: 42px; flex-basis: 42px; font-size: 21px; }
  .gvst-follow { padding: 10px 11px; font-size: 0; }
  .gvst-follow::after { content: "Login"; font-size: 12px; }
  .gvst-icon-btn { width: 36px; height: 36px; }
  .gvst-trending-chips { align-items: flex-start; flex-direction: column; gap: 11px; margin-bottom: 14px; }
  .gvst-chip-row {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 3px;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }
  .gvst-chip-row::-webkit-scrollbar { display: none; }
  .gvst-chip-row a { flex: 0 0 auto; scroll-snap-align: start; }
  .gvst-hero-slider,
  .gvst-hero-track,
  .gvst-hero-slide { min-height: 300px; }
  .gvst-hero-overlay { background: linear-gradient(180deg, rgba(5,2,15,.08), rgba(5,2,15,.9)); }
  .gvst-hero-copy {
    left: 18px;
    right: 18px;
    bottom: 36px;
    top: auto;
    transform: none;
    width: auto;
  }
  .gvst-hero-copy h1 { font-size: 27px; }
  .gvst-hero-copy p { font-size: 14px; margin-bottom: 15px; }
  .gvst-slider-btn { width: 36px; height: 36px; font-size: 27px; }
  .gvst-featured-side { grid-template-columns: 1fr; }
  .gvst-side-feature { min-height: 160px; }
  .gvst-category-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
  .gvst-category-tile { min-height: 82px; padding: 11px 5px; }
  .gvst-category-tile span { font-size: 30px; margin-bottom: 7px; }
  .gvst-category-tile strong { font-size: 11px; }
  .gvst-sidebar { grid-template-columns: 1fr; }
  .gvst-section { margin: 24px 0 27px; }
  .gvst-section-head h2 { font-size: 19px; }
  .gvst-post-grid.gvst-swipe-row,
  .gvst-video-row.gvst-swipe-row,
  .gvst-story-row,
  .gvst-today-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(170px, 78%);
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 1px 2px 4px;
  }
  .gvst-video-row.gvst-swipe-row { grid-auto-columns: minmax(240px, 82%); }
  .gvst-story-row { grid-auto-columns: minmax(145px, 45%); }
  .gvst-today-row { grid-auto-columns: minmax(230px, 82%); }
  .gvst-post-card,
  .gvst-video-card,
  .gvst-story-card,
  .gvst-today-card { scroll-snap-align: start; }
  .gvst-card-image { height: 130px; }
  .gvst-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .gvst-footer-columns { grid-template-columns: 1fr 1fr; }
  .gvst-backtop { right: 15px; bottom: 15px; }
}

@media (max-width: 460px) {
  .gvst-container { width: min(100% - 18px, var(--gvst-container)); }
  .gvst-topbar { grid-template-columns: minmax(0, 1fr) auto; }
  .gvst-logo { font-size: 21px; }
  .gvst-logo-mark { width: 38px; height: 38px; flex-basis: 38px; font-size: 19px; border-width: 3px; }
  .gvst-actions { gap: 4px; }
  .gvst-icon-btn, .gvst-menu-toggle { width: 34px; height: 34px; }
  .gvst-nav-inner { grid-template-columns: 1fr; }
  .gvst-search { height: 42px; grid-template-columns: 33px minmax(0, 1fr) 43px; }
  .gvst-search button { height: 42px; width: 43px; }
  .gvst-search input { font-size: 13px; }
  .gvst-hero-slider,
  .gvst-hero-track,
  .gvst-hero-slide { min-height: 290px; }
  .gvst-hero-copy h1 { font-size: 24px; }
  .gvst-hero-copy p { display: none; }
  .gvst-slider-prev { left: 10px; }
  .gvst-slider-next { right: 10px; }
  .gvst-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gvst-post-grid.gvst-swipe-row { grid-auto-columns: minmax(165px, 76%); }
  .gvst-story-row { grid-auto-columns: minmax(140px, 48%); }
  .gvst-video-row.gvst-swipe-row { grid-auto-columns: minmax(225px, 86%); }
  .gvst-widget { padding: 17px; }
  .gvst-footer-columns { grid-template-columns: 1fr; }
}


/* =====================================================
   Gyanivirus v4 homepage overrides - screenshot layout
   ===================================================== */
:root {
  --gvst-purple: #6423db;
  --gvst-purple-2: #8b35ff;
  --gvst-bg: #fbfbfe;
  --gvst-card: #ffffff;
  --gvst-text: #07040f;
  --gvst-muted: #6f7282;
  --gvst-border: #e9e6f2;
  --gvst-shadow: 0 8px 24px rgba(28, 18, 55, .07);
  --gvst-shadow-hover: 0 16px 36px rgba(100, 35, 219, .15);
  --gvst-radius: 14px;
  --gvst-container: 1270px;
}
html, body { max-width: 100%; overflow-x: hidden !important; }
.gvst-wrap { overflow-x: clip !important; background: var(--gvst-bg); }
.gvst-container { width: min(var(--gvst-container), calc(100% - 48px)); }
.gvst-header-v4 { background: rgba(255,255,255,.96); box-shadow: 0 4px 22px rgba(20, 12, 45, .04); }
.gvst-header-v4 .gvst-topbar { min-height: 76px; grid-template-columns: 265px minmax(280px, 1fr) auto; gap: 26px; }
.gvst-logo { align-items: center; gap: 10px; letter-spacing: -.8px; }
.gvst-logo-text { display: grid; gap: 3px; min-width: 0; }
.gvst-logo-word { font-size: 28px; line-height: .95; }
.gvst-logo-text small { display: block; color: #494158; font-size: 10px; font-weight: 800; letter-spacing: .1px; white-space: nowrap; }
.gvst-logo-mark { width: 50px; height: 50px; flex-basis: 50px; font-size: 24px; border-width: 3px; }
.gvst-search { height: 48px; border-radius: 8px; box-shadow: none; grid-template-columns: 42px minmax(0, 1fr) 52px; }
.gvst-search button { height: 48px; width: 52px; border-radius: 0 8px 8px 0; }
.gvst-actions { gap: 15px; }
.gvst-icon-btn { font-size: 20px; }
.gvst-follow { min-height: 44px; border-radius: 8px; padding: 11px 18px; }
.gvst-nav { border-top: 0; border-bottom: 1px solid var(--gvst-border); }
.gvst-nav-inner { height: 52px; justify-content: flex-start; gap: 28px; overflow: visible; }
.gvst-nav-link { padding: 0; border-radius: 0; position: relative; font-size: 14px; font-weight: 900; }
.gvst-nav-link.is-active { color: var(--gvst-purple); }
.gvst-nav-link::after { left: 0; right: 0; bottom: -1px; height: 4px; border-radius: 999px 999px 0 0; }
.gvst-nav-link.is-active::after { transform: scaleX(1); }
.gvst-nav-item:hover .gvst-nav-link { background: transparent; transform: translateY(-1px); }
.gvst-dropdown { z-index: 1002; }
.gvst-main.gvst-home-v4 { padding: 14px 0 0; }
.gvst-home-v4 .gvst-layout { grid-template-columns: minmax(0, 1fr) 315px; gap: 28px; }
.gvst-home-v4 .gvst-content-col { min-width: 0; }
.gvst-featured-area { grid-template-columns: minmax(0, 2.15fr) minmax(230px, .95fr); gap: 14px; }
.gvst-hero-slider, .gvst-hero-track, .gvst-hero-slide { min-height: 360px; }
.gvst-hero-slider { border-radius: 13px; box-shadow: none; }
.gvst-hero-overlay { background: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.48) 43%, rgba(0,0,0,.16)); }
.gvst-hero-copy { left: 36px; right: auto; width: min(430px, 55%); top: 50%; transform: translateY(-50%); }
.gvst-hero-copy h1 { font-size: clamp(30px, 3.4vw, 40px); line-height: 1.15; margin-bottom: 14px; }
.gvst-hero-copy p { font-size: 15px; max-width: 390px; margin-bottom: 18px; }
.gvst-hero-copy .gvst-badge::before { content: "⚡ "; }
.gvst-readmore { min-height: 44px; border-radius: 7px; padding: 12px 21px; }
.gvst-readmore:not(.small)::after { content: " →"; margin-left: 6px; }
.gvst-readmore.small { min-height: 34px; padding: 9px 14px; font-size: 12px; }
.gvst-slider-btn { width: 36px; height: 36px; font-size: 25px; background: rgba(255,255,255,.65); }
.gvst-slider-prev { left: 12px; }
.gvst-slider-next { right: 12px; }
.gvst-slider-dots { bottom: 18px; }
.gvst-slider-dots button { width: 8px; height: 8px; background: rgba(255,255,255,.75); }
.gvst-slider-dots button.is-active { width: 22px; background: var(--gvst-purple); }
.gvst-featured-side { gap: 14px; }
.gvst-side-feature { min-height: 173px; border-radius: 12px; box-shadow: none; }
.gvst-side-feature img, .gvst-side-feature .gvst-placeholder { min-height: 173px; }
.gvst-side-feature .gvst-hero-overlay { background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.82)); }
.gvst-side-feature h3 { bottom: 33px; font-size: 17px; left: 16px; right: 12px; }
.gvst-side-feature em { bottom: 13px; left: 16px; }
.gvst-badge, .gvst-card-badge { border-radius: 6px; font-size: 10px; padding: 6px 10px; }
.gvst-badge.small { top: 14px; left: 14px; }
.gvst-category-section { margin-top: 24px; }
.gvst-section-head-compact { margin-bottom: 12px; }
.gvst-category-grid { grid-template-columns: repeat(9, minmax(0, 1fr)); gap: 14px; margin: 0; }
.gvst-category-tile { min-height: 86px; border-radius: 10px; box-shadow: 0 6px 18px rgba(28,18,55,.05); background: #fff; }
.gvst-category-tile:hover { transform: translateY(-5px) scale(1.01); }
.gvst-category-tile span { font-size: 31px; margin-bottom: 7px; }
.gvst-category-tile strong { font-size: 12px; }
.gvst-section { margin: 25px 0 30px; }
.gvst-section-head { margin-bottom: 13px; }
.gvst-section-head h2 { font-size: 20px; color: var(--gvst-text); letter-spacing: -.2px; }
.gvst-section-head h2 span { color: var(--gvst-purple); }
.gvst-section-head a { font-size: 12px; color: #504a61; }
.gvst-story-row { grid-auto-columns: minmax(142px, 1fr); gap: 14px; }
.gvst-story-card { min-height: 206px; border-radius: 9px; box-shadow: none; }
.gvst-story-card a { min-height: 206px; }
.gvst-story-card h3 { font-size: 13px; bottom: 12px; }
.gvst-story-views { bottom: 55px; background: rgba(0,0,0,.35); padding: 2px 6px; border-radius: 999px; }
.gvst-video-row { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.gvst-video-card { border: 0; box-shadow: none; background: transparent; border-radius: 0; overflow: visible; padding-bottom: 0; }
.gvst-video-card:hover { transform: translateY(-3px); box-shadow: none; }
.gvst-video-image { height: 116px; border-radius: 8px; }
.gvst-video-card h3 { font-size: 14px; padding: 0; margin: 10px 0 6px; }
.gvst-video-card .gvst-date { padding: 0; font-size: 11px; }
.gvst-play { width: 36px; height: 36px; font-size: 14px; }
.gvst-post-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.gvst-post-card { border-radius: 10px; box-shadow: none; border-color: transparent; background: transparent; }
.gvst-post-card:hover { background: #fff; border-color: var(--gvst-border); }
.gvst-card-image { height: 120px; border-radius: 8px; }
.gvst-card-body { padding: 9px 0 0; }
.gvst-post-card:hover .gvst-card-body { padding-left: 8px; padding-right: 8px; padding-bottom: 8px; }
.gvst-card-body h3 { font-size: 13px; line-height: 1.32; }
.gvst-card-meta { font-size: 10.5px; }
.gvst-sidebar { gap: 18px; }
.gvst-widget { border-radius: 13px; padding: 20px; box-shadow: 0 8px 26px rgba(28, 18, 55, .06); }
.gvst-widget-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 14px; }
.gvst-widget-head h3, .gvst-widget h3 { margin: 0; font-size: 18px; }
.gvst-widget-head a { color: #5c556b; font-size: 12px; font-weight: 900; }
.gvst-trending-list .gvst-ranked-post { grid-template-columns: 28px minmax(0, 1fr); gap: 10px; margin-bottom: 16px; }
.gvst-rank { width: 24px; height: 24px; font-size: 12px; }
.gvst-mini-post { grid-template-columns: 72px minmax(0, 1fr); gap: 10px; }
.gvst-mini-image { height: 58px; border-radius: 8px; }
.gvst-mini-post h4 { font-size: 12.5px; line-height: 1.32; }
.gvst-mini-post span { font-size: 10.5px; }
.gvst-popular-videos { padding-bottom: 16px; }
.gvst-video-mini { display: grid; grid-template-columns: 106px minmax(0, 1fr); gap: 11px; align-items: center; margin-bottom: 15px; }
.gvst-video-mini:last-child { margin-bottom: 0; }
.gvst-video-mini-img { position: relative; height: 60px; overflow: hidden; border-radius: 8px; background: #12091e; }
.gvst-video-mini-img img, .gvst-video-mini-img .gvst-placeholder { width: 100%; height: 100%; object-fit: cover; display: block; }
.gvst-video-mini-img span { position: absolute; left: 6px; bottom: 5px; width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.95); color: var(--gvst-purple); font-size: 9px; }
.gvst-video-mini-img em { position: absolute; right: 5px; bottom: 5px; border-radius: 4px; background: rgba(0,0,0,.76); color: #fff; padding: 2px 4px; font-size: 9px; font-style: normal; font-weight: 900; }
.gvst-video-mini h4 { margin: 0 0 6px; font-size: 12.5px; line-height: 1.32; font-weight: 1000; }
.gvst-video-mini small { color: var(--gvst-muted); font-size: 10.5px; }
.gvst-newsletter-v4 { position: relative; overflow: hidden; background: linear-gradient(135deg, #6517d8, #9b2cff) !important; color: #fff; border: 0; padding: 23px 21px; }
.gvst-newsletter-v4::before { content: ""; position: absolute; right: -38px; top: -36px; width: 138px; height: 138px; background: rgba(255,255,255,.13); border-radius: 50%; }
.gvst-newsletter-icon { position: absolute; right: 23px; top: 22px; font-size: 38px; opacity: .95; transform: rotate(-20deg); }
.gvst-newsletter-v4 h3 { color: #fff; font-size: 19px; margin: 0 0 10px; }
.gvst-newsletter-v4 p { color: rgba(255,255,255,.9); margin: 0 0 18px; max-width: 230px; }
.gvst-newsletter-v4 input { height: 44px; border: 0; border-radius: 7px; background: #fff !important; color: #111; }
.gvst-newsletter-v4 button { height: 44px; border-radius: 7px; background: #070b18 !important; box-shadow: none; }
.gvst-follow-box h3::before { content: "↪ "; }
.gvst-social-icons { gap: 13px; }
.gvst-social { width: 38px; height: 38px; border-radius: 8px; }
.gvst-spotlight-wrap { display: grid; grid-template-columns: minmax(260px, .75fr) minmax(0, 1fr); gap: 16px; align-items: stretch; }
.gvst-spotlight-feature { display: grid; grid-template-columns: 150px minmax(0, 1fr); gap: 16px; align-items: center; }
.gvst-spotlight-img { height: 148px; border-radius: 10px; overflow: hidden; background: #eee8fb; }
.gvst-spotlight-img img, .gvst-spotlight-img .gvst-placeholder { width: 100%; height: 100%; object-fit: cover; display: block; }
.gvst-spotlight-copy h3 { margin: 0 0 8px; font-size: 16px; color: var(--gvst-purple); }
.gvst-spotlight-copy p { margin: 0 0 12px; color: #343040; font-size: 13px; line-height: 1.55; }
.gvst-celeb-row { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(92px, 1fr); gap: 12px; overflow-x: auto; scrollbar-width: none; }
.gvst-celeb-row::-webkit-scrollbar, .gvst-finance-row::-webkit-scrollbar { display: none; }
.gvst-celeb-chip { min-width: 92px; text-align: center; scroll-snap-align: start; }
.gvst-celeb-chip img, .gvst-celeb-chip .gvst-placeholder { width: 92px; height: 92px; object-fit: cover; border-radius: 10px; display: block; background: #f1edfb; }
.gvst-celeb-chip strong { display: block; margin-top: 8px; font-size: 12px; line-height: 1.2; }
.gvst-finance-row { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(175px, 1fr); gap: 14px; overflow-x: auto; scrollbar-width: none; border-top: 1px solid var(--gvst-border); padding-top: 12px; }
.gvst-finance-card { display: grid; grid-template-columns: 68px minmax(0, 1fr); gap: 10px; align-items: center; min-width: 0; scroll-snap-align: start; }
.gvst-finance-img { height: 58px; border-radius: 8px; overflow: hidden; background: #f1edfb; }
.gvst-finance-img img, .gvst-finance-img .gvst-placeholder { width: 100%; height: 100%; object-fit: cover; display: block; }
.gvst-finance-card h3 { margin: 0 0 5px; font-size: 12.5px; line-height: 1.28; }
.gvst-finance-card span { color: var(--gvst-muted); font-size: 10.5px; }
.gvst-footer { margin-top: 22px; background: radial-gradient(circle at 12% 10%, #26144b, #050a13 72%); }
.gvst-footer-grid { grid-template-columns: 1.25fr .7fr 1fr 1.25fr; gap: 40px; padding: 34px 0 28px; }
.gvst-footer-bottom { text-align: center; padding: 12px 0; }
.gvst-backtop { width: 42px; height: 42px; right: 24px; bottom: 24px; }
body.gvst-dark .gvst-newsletter-v4, .gvst-wrap.gvst-dark .gvst-newsletter-v4 { background: linear-gradient(135deg, #6517d8, #9b2cff) !important; }
body.gvst-dark .gvst-spotlight-copy p, .gvst-wrap.gvst-dark .gvst-spotlight-copy p { color: var(--gvst-muted); }

@media (max-width: 1240px) {
  .gvst-container { width: min(var(--gvst-container), calc(100% - 34px)); }
  .gvst-header-v4 .gvst-topbar { grid-template-columns: 238px minmax(250px, 1fr) auto; gap: 18px; }
  .gvst-nav-inner { gap: 20px; overflow-x: auto; scrollbar-width: none; }
  .gvst-nav-inner::-webkit-scrollbar { display: none; }
  .gvst-home-v4 .gvst-layout { grid-template-columns: minmax(0, 1fr) 300px; gap: 22px; }
  .gvst-featured-area { grid-template-columns: minmax(0, 1fr); }
  .gvst-featured-side { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gvst-category-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .gvst-header-v4 .gvst-topbar { grid-template-columns: minmax(0,1fr) auto; padding: 12px 0; gap: 12px; }
  .gvst-logo-word { font-size: 25px; }
  .gvst-search { grid-column: 1 / -1; order: 3; }
  .gvst-menu-toggle { display: inline-grid; }
  .gvst-nav { display: none; }
  .gvst-header.is-menu-open .gvst-nav { display: block; }
  .gvst-nav-inner { height: auto; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px; padding: 10px 0 14px; overflow: visible; }
  .gvst-nav-item { height: auto; display: block; }
  .gvst-nav-link { width: 100%; min-height: 42px; padding: 11px 13px; border-radius: 9px; background: var(--gvst-bg); justify-content: space-between; }
  .gvst-nav-link::after { display: none; }
  .gvst-dropdown { display: none !important; }
  .gvst-home-v4 .gvst-layout { grid-template-columns: 1fr; }
  .gvst-sidebar { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gvst-spotlight-wrap { grid-template-columns: 1fr; }
  .gvst-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .gvst-container { width: min(100% - 22px, var(--gvst-container)); }
  .gvst-main.gvst-home-v4 { padding-top: 10px; }
  .gvst-logo-mark { width: 42px; height: 42px; flex-basis: 42px; font-size: 20px; }
  .gvst-logo-word { font-size: 23px; }
  .gvst-logo-text small { font-size: 9px; }
  .gvst-actions { gap: 6px; }
  .gvst-follow { font-size: 0; min-width: 44px; padding: 0 11px; }
  .gvst-follow::after { content: "Login"; font-size: 12px; }
  .gvst-hero-slider, .gvst-hero-track, .gvst-hero-slide { min-height: 320px; }
  .gvst-hero-overlay { background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.9)); }
  .gvst-hero-copy { left: 18px; right: 18px; bottom: 34px; top: auto; transform: none; width: auto; }
  .gvst-hero-copy h1 { font-size: 26px; }
  .gvst-hero-copy p { font-size: 14px; margin-bottom: 14px; }
  .gvst-featured-side { grid-template-columns: 1fr; }
  .gvst-side-feature { min-height: 168px; }
  .gvst-category-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; }
  .gvst-category-tile { min-height: 78px; }
  .gvst-category-tile span { font-size: 28px; }
  .gvst-sidebar { grid-template-columns: 1fr; }
  .gvst-post-grid.gvst-swipe-row,
  .gvst-video-row.gvst-swipe-row,
  .gvst-story-row,
  .gvst-celeb-row,
  .gvst-finance-row {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 1px 2px 6px;
  }
  .gvst-post-grid.gvst-swipe-row { grid-auto-columns: minmax(170px, 72%); }
  .gvst-video-row.gvst-swipe-row { grid-auto-columns: minmax(232px, 82%); }
  .gvst-story-row { grid-auto-columns: minmax(142px, 48%); }
  .gvst-celeb-row { grid-auto-columns: 96px; }
  .gvst-finance-row { grid-auto-columns: minmax(210px, 80%); }
  .gvst-card-image { height: 126px; }
  .gvst-spotlight-feature { grid-template-columns: 120px minmax(0,1fr); gap: 12px; }
  .gvst-spotlight-img { height: 134px; }
  .gvst-footer-grid { grid-template-columns: 1fr; gap: 26px; }
}
@media (max-width: 460px) {
  .gvst-container { width: min(100% - 18px, var(--gvst-container)); }
  .gvst-header-v4 .gvst-topbar { gap: 10px; }
  .gvst-logo-word { font-size: 20px; }
  .gvst-logo-mark { width: 38px; height: 38px; flex-basis: 38px; border-width: 2px; font-size: 18px; }
  .gvst-actions { gap: 3px; }
  .gvst-icon-btn, .gvst-menu-toggle { width: 34px; height: 34px; }
  .gvst-search { height: 42px; grid-template-columns: 32px minmax(0,1fr) 43px; }
  .gvst-search button { height: 42px; width: 43px; }
  .gvst-nav-inner { grid-template-columns: 1fr; }
  .gvst-hero-slider, .gvst-hero-track, .gvst-hero-slide { min-height: 300px; }
  .gvst-hero-copy h1 { font-size: 23px; }
  .gvst-hero-copy p { display: none; }
  .gvst-slider-dots { bottom: 12px; }
  .gvst-category-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gvst-post-grid.gvst-swipe-row { grid-auto-columns: minmax(165px, 78%); }
  .gvst-story-row { grid-auto-columns: minmax(136px, 48%); }
  .gvst-video-row.gvst-swipe-row { grid-auto-columns: minmax(218px, 86%); }
  .gvst-spotlight-feature { grid-template-columns: 1fr; }
  .gvst-spotlight-img { height: 190px; }
  .gvst-footer-columns { grid-template-columns: 1fr; }
}

/* Professional mobile bottom navigation */
.gvst-mobile-bottom-nav {
  display: none;
}

.gvst-mobile-nav-item {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  color: #625a76;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}

@media (max-width: 760px) {
  body.gvst-has-bottom-nav {
    padding-bottom: calc(78px + env(safe-area-inset-bottom, 0px));
  }

  .gvst-wrap {
    overflow-x: clip;
  }

  .gvst-mobile-bottom-nav {
    position: fixed;
    left: 50%;
    bottom: max(10px, env(safe-area-inset-bottom));
    transform: translateX(-50%);
    z-index: 1002;
    width: min(94vw, 430px);
    height: 64px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
    align-items: center;
    padding: 7px;
    border: 1px solid rgba(226, 219, 243, .92);
    border-radius: 22px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 48px rgba(31, 18, 75, .22), 0 2px 8px rgba(31, 18, 75, .08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .gvst-mobile-nav-item {
    min-width: 0;
    height: 50px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: #5d566f;
    font-size: 10.5px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.1px;
    white-space: nowrap;
    transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .gvst-mobile-nav-icon {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    font-size: 16px;
    line-height: 1;
    transition: transform .18s ease, background .18s ease;
  }

  .gvst-mobile-nav-item:active {
    transform: scale(.96);
  }

  .gvst-mobile-nav-item:hover,
  .gvst-mobile-nav-item:focus-visible {
    color: var(--gvst-purple);
    background: rgba(109, 40, 217, .08);
    outline: none;
  }

  .gvst-mobile-nav-item.is-active {
    color: #fff;
    background: linear-gradient(135deg, var(--gvst-purple), var(--gvst-purple-2));
    box-shadow: 0 10px 25px rgba(109, 40, 217, .28);
  }

  .gvst-mobile-nav-item.is-active .gvst-mobile-nav-icon {
    background: rgba(255, 255, 255, .18);
    transform: translateY(-1px);
  }

  .gvst-footer {
    padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px));
  }

  .gvst-backtop {
    right: 16px !important;
    bottom: calc(86px + env(safe-area-inset-bottom, 0px)) !important;
    width: 40px !important;
    height: 40px !important;
  }

  #gvst-trending-now,
  #gvst-video-gallery,
  #gvst-latest-articles,
  #gvst-trending-today {
    scroll-margin-top: 92px;
  }
}

@media (max-width: 380px) {
  .gvst-mobile-bottom-nav {
    width: calc(100vw - 14px);
    height: 61px;
    padding: 6px;
    border-radius: 20px;
  }

  .gvst-mobile-nav-item {
    height: 48px;
    font-size: 9.5px;
  }

  .gvst-mobile-nav-icon {
    font-size: 15px;
    width: 22px;
    height: 22px;
  }
}

body.gvst-dark .gvst-mobile-bottom-nav,
.gvst-wrap.gvst-dark .gvst-mobile-bottom-nav {
  background: rgba(18, 15, 32, .94);
  border-color: rgba(139, 92, 246, .22);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .48);
}

body.gvst-dark .gvst-mobile-nav-item,
.gvst-wrap.gvst-dark .gvst-mobile-nav-item {
  color: #c9c1df;
}

body.gvst-dark .gvst-mobile-nav-item:hover,
body.gvst-dark .gvst-mobile-nav-item:focus-visible,
.gvst-wrap.gvst-dark .gvst-mobile-nav-item:hover,
.gvst-wrap.gvst-dark .gvst-mobile-nav-item:focus-visible {
  color: #fff;
  background: rgba(139, 92, 246, .14);
}

body.gvst-dark .gvst-mobile-nav-item.is-active,
.gvst-wrap.gvst-dark .gvst-mobile-nav-item.is-active {
  color: #fff;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
}

/* V5 requested update: single-row header, search icon only, tighter cards, footer without popular posts */
.gvst-header-v5 {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--gvst-border);
  box-shadow: 0 8px 26px rgba(31, 18, 75, .04);
}

.gvst-header-v5 .gvst-header-row {
  position: relative;
  min-height: 70px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
}

.gvst-header-v5 .gvst-logo { font-size: 26px; }
.gvst-header-v5 .gvst-logo-mark {
  width: 42px;
  height: 42px;
  flex-basis: 42px;
  font-size: 21px;
  border-width: 3px;
}

.gvst-header-v5 .gvst-main-nav {
  min-width: 0;
  background: transparent;
  border: 0;
}

.gvst-header-v5 .gvst-nav-inner {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.8vw, 26px);
  overflow: visible;
}

.gvst-header-v5 .gvst-nav-link {
  height: 70px;
  padding: 0;
  border-radius: 0;
  position: relative;
  font-size: 13.5px;
  font-weight: 900;
}

.gvst-header-v5 .gvst-nav-link::after {
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
}

.gvst-header-v5 .gvst-nav-item:hover .gvst-nav-link,
.gvst-header-v5 .gvst-nav-item:focus-within .gvst-nav-link {
  background: transparent;
  color: var(--gvst-purple);
  transform: translateY(-1px);
}

.gvst-header-v5 .gvst-actions {
  display: inline-flex;
  justify-content: flex-end;
  gap: 8px;
}

.gvst-header-v5 .gvst-search-toggle,
.gvst-header-v5 .gvst-menu-toggle {
  width: 42px;
  height: 42px;
  background: #fff;
  border: 1px solid var(--gvst-border);
  box-shadow: 0 7px 18px rgba(31,18,75,.06);
}

.gvst-header-v5 .gvst-search-toggle:hover,
.gvst-header-v5 .gvst-menu-toggle:hover {
  background: var(--gvst-soft);
}

.gvst-header-v5 .gvst-search-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 1003;
  width: min(520px, 100%);
  height: 48px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(.98);
  transform-origin: top right;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  box-shadow: 0 18px 50px rgba(31,18,75,.16);
}

.gvst-header-v5.is-search-open .gvst-search-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.gvst-header-v5 .gvst-search-panel button,
.gvst-header-v5 .gvst-search-panel { border-radius: 12px; }
.gvst-header-v5 .gvst-search-panel button { height: 48px; }

/* Professional card wrapping and category accents */
.gvst-post-card,
.gvst-video-card,
.gvst-today-card,
.gvst-story-card,
.gvst-celeb-chip,
.gvst-finance-card {
  position: relative;
}

.gvst-post-card,
.gvst-video-card {
  background: linear-gradient(180deg, #fff, #fff 65%, #fbf9ff) !important;
  border: 1px solid var(--gvst-border) !important;
  border-radius: 14px !important;
  box-shadow: 0 8px 24px rgba(31,18,75,.07) !important;
  overflow: hidden !important;
  padding-bottom: 0 !important;
}

.gvst-post-card::before,
.gvst-video-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  z-index: 4;
  background: linear-gradient(90deg, var(--gvst-purple), var(--gvst-purple-2));
}

.gvst-post-card:hover,
.gvst-video-card:hover {
  background: #fff !important;
  border-color: #d8c7fb !important;
  box-shadow: 0 16px 38px rgba(75,40,150,.14) !important;
}

.gvst-post-card .gvst-card-image,
.gvst-video-card .gvst-video-image {
  border-radius: 0 !important;
}

.gvst-post-card .gvst-card-body,
.gvst-video-card h3,
.gvst-video-card .gvst-date {
  padding-left: 12px !important;
  padding-right: 12px !important;
}

.gvst-post-card .gvst-card-body { padding-bottom: 12px !important; }
.gvst-video-card .gvst-date { padding-bottom: 12px !important; }

.gvst-post-style-ai::before { background: linear-gradient(90deg, #6d28d9, #22d3ee); }
.gvst-post-style-celebrity::before,
.gvst-post-style-celebrities::before { background: linear-gradient(90deg, #f59e0b, #8b5cf6); }
.gvst-post-style-entertainment::before { background: linear-gradient(90deg, #ef4444, #7c3aed); }
.gvst-post-style-tech::before { background: linear-gradient(90deg, #2563eb, #8b5cf6); }
.gvst-post-style-how-to::before { background: linear-gradient(90deg, #facc15, #6d28d9); }
.gvst-post-style-finance::before { background: linear-gradient(90deg, #16a34a, #65a30d); }
.gvst-post-style-sarkari-yojana::before { background: linear-gradient(90deg, #0ea5e9, #16a34a); }
.gvst-post-style-social-media::before { background: linear-gradient(90deg, #0ea5e9, #a855f7); }
.gvst-post-style-online-earning::before { background: linear-gradient(90deg, #a16207, #22c55e); }

.gvst-video-card h3 { margin-top: 10px !important; }

/* Max 2 lines title clamp for article cards and Web Stories */
.gvst-card-body h3 a,
.gvst-video-card h3 a,
.gvst-story-card h3,
.gvst-today-card h3,
.gvst-today-card h3 a,
.gvst-finance-card h3,
.gvst-finance-card h3 a,
.gvst-mini-post h4 a,
.gvst-side-feature h3,
.gvst-spotlight-copy h3 a,
.gvst-celeb-chip strong {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gvst-card-body h3,
.gvst-video-card h3,
.gvst-story-card h3,
.gvst-today-card h3,
.gvst-finance-card h3,
.gvst-mini-post h4,
.gvst-spotlight-copy h3 {
  min-height: auto;
  max-height: calc(1.34em * 2);
  overflow: hidden;
}

.gvst-story-card h3 { max-height: calc(1.25em * 2); }

/* Footer now has only brand + quick links + categories */
.gvst-footer-grid {
  grid-template-columns: 1.45fr .9fr 1.25fr !important;
  gap: 48px;
}

.gvst-footer-popular { display: none !important; }

@media (max-width: 1120px) {
  .gvst-header-v5 .gvst-header-row { gap: 14px; }
  .gvst-header-v5 .gvst-nav-inner { justify-content: flex-start; gap: 16px; overflow-x: auto; scrollbar-width: none; }
  .gvst-header-v5 .gvst-nav-inner::-webkit-scrollbar { display: none; }
  .gvst-header-v5 .gvst-nav-link { font-size: 13px; }
}

@media (max-width: 980px) {
  .gvst-header-v5 .gvst-header-row {
    min-height: 62px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .gvst-header-v5 .gvst-logo { font-size: 23px; }
  .gvst-header-v5 .gvst-logo-mark { width: 38px; height: 38px; flex-basis: 38px; font-size: 18px; }
  .gvst-header-v5 .gvst-menu-toggle { display: inline-grid; }

  .gvst-header-v5 .gvst-main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 1002;
    padding: 10px 0 12px;
    background: rgba(255,255,255,.98);
    border-top: 1px solid var(--gvst-border);
    border-bottom: 1px solid var(--gvst-border);
    box-shadow: 0 18px 40px rgba(31,18,75,.12);
  }

  .gvst-header-v5.is-menu-open .gvst-main-nav { display: block; }

  .gvst-header-v5 .gvst-nav-inner {
    height: auto;
    width: min(var(--gvst-container), calc(100% - 22px));
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
  }

  .gvst-header-v5 .gvst-nav-link {
    height: 42px;
    justify-content: space-between;
    padding: 0 12px;
    border-radius: 11px;
    background: var(--gvst-bg);
  }

  .gvst-header-v5 .gvst-nav-link::after,
  .gvst-header-v5 .gvst-dropdown { display: none !important; }

  .gvst-header-v5 .gvst-search-panel {
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    width: 100%;
  }

  .gvst-footer-grid { grid-template-columns: 1fr 1fr !important; gap: 30px; }
  .gvst-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .gvst-header-v5 .gvst-header-row { min-height: 58px; }
  .gvst-header-v5 .gvst-logo-word { font-size: 21px; }
  .gvst-header-v5 .gvst-search-toggle,
  .gvst-header-v5 .gvst-menu-toggle { width: 37px; height: 37px; }
  .gvst-post-card,
  .gvst-video-card { border-radius: 13px !important; }
  .gvst-footer-grid { grid-template-columns: 1fr !important; gap: 26px; }
}

@media (max-width: 430px) {
  .gvst-header-v5 .gvst-logo-mark { width: 34px; height: 34px; flex-basis: 34px; font-size: 16px; }
  .gvst-header-v5 .gvst-logo-word { font-size: 19px; }
  .gvst-header-v5 .gvst-nav-inner { grid-template-columns: 1fr; }
  .gvst-header-v5 .gvst-search-panel { height: 44px; grid-template-columns: 34px minmax(0,1fr) 44px; }
  .gvst-header-v5 .gvst-search-panel button { height: 44px; width: 44px; }
}
