* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: #f4f6fb;
  color: #111827;
}

a {
  text-decoration: none;
}

.gv-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 18px;
}

.gv-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 12px 40px rgba(15,23,42,.06);
}

.gv-topbar {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
}

.gv-topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.gv-trending {
  display: flex;
  align-items: center;
  gap: 14px;
  overflow-x: auto;
  white-space: nowrap;
}

.gv-trending span {
  background: #facc15;
  color: #111827;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.gv-trending a,
.gv-date {
  color: #e5e7eb;
  font-size: 13px;
  font-weight: 600;
}

.gv-main-inner {
  height: 78px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.gv-logo,
.gv-mobile-logo {
  color: #0f172a;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
}

.gv-logo span,
.gv-mobile-logo span {
  color: #2563eb;
}

.gv-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 22px;
}

.gv-nav a {
  color: #1f2937;
  font-size: 14px;
  font-weight: 800;
  position: relative;
}

.gv-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  border-radius: 999px;
  transition: .25s ease;
}

.gv-nav a:hover {
  color: #2563eb;
}

.gv-nav a:hover::after {
  width: 100%;
}

.gv-search {
  width: 220px;
  height: 42px;
  display: flex;
  align-items: center;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
}

.gv-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0 0 0 16px;
  font-size: 14px;
}

.gv-search button {
  border: 0;
  background: #2563eb;
  color: #fff;
  width: 44px;
  height: 42px;
  cursor: pointer;
}

.gv-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: #f1f5f9;
  border-radius: 12px;
  cursor: pointer;
  padding: 10px;
}

.gv-menu-btn span {
  display: block;
  height: 2px;
  background: #0f172a;
  margin: 5px 0;
  border-radius: 10px;
}

.gv-tags {
  border-top: 1px solid rgba(15,23,42,.06);
}

.gv-tags-inner {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-top: 11px;
  padding-bottom: 12px;
  white-space: nowrap;
}

.gv-tags a {
  color: #1d4ed8;
  background: linear-gradient(135deg, #eef2ff, #eff6ff);
  border: 1px solid #dbeafe;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.gv-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, .65);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: .3s ease;
}

.gv-mobile-menu {
  position: fixed;
  top: 0;
  left: -360px;
  width: 330px;
  max-width: 88%;
  height: 100vh;
  background: #ffffff;
  z-index: 1600;
  padding: 20px;
  transition: .3s ease;
  box-shadow: 18px 0 50px rgba(0,0,0,.22);
}

.gv-mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.gv-mobile-logo {
  font-size: 23px;
}

.gv-close-btn {
  border: 0;
  background: #f1f5f9;
  color: #0f172a;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.gv-mobile-search {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}

.gv-mobile-search input {
  flex: 1;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  border-radius: 12px;
  padding: 13px;
  outline: 0;
}

.gv-mobile-search button {
  border: 0;
  background: #2563eb;
  color: #fff;
  border-radius: 12px;
  padding: 0 16px;
  font-weight: 800;
}

.gv-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gv-mobile-nav a {
  color: #111827;
  background: #f8fafc;
  border: 1px solid #eef2f7;
  padding: 15px 14px;
  border-radius: 14px;
  font-weight: 800;
}

.gv-mobile-nav a:hover {
  background: #eff6ff;
  color: #2563eb;
}

.gv-overlay.active {
  opacity: 1;
  visibility: visible;
}

.gv-mobile-menu.active {
  left: 0;
}

body.gv-menu-active {
  overflow: hidden;
}

.gv-hero {
  padding: 90px 20px;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(37,99,235,.18), transparent 30%),
    radial-gradient(circle at top right, rgba(124,58,237,.16), transparent 30%),
    #f8fafc;
}

.gv-hero-label {
  display: inline-block;
  color: #2563eb;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 18px;
}

.gv-hero h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 72px);
  letter-spacing: -2px;
  color: #0f172a;
}

.gv-hero p {
  max-width: 680px;
  margin: 18px auto 0;
  color: #475569;
  font-size: 18px;
  line-height: 1.7;
}

@media (max-width: 1050px) {
  .gv-nav,
  .gv-search {
    display: none;
  }

  .gv-menu-btn {
    display: block;
  }

  .gv-main-inner {
    height: 68px;
    justify-content: space-between;
  }

  .gv-logo {
    font-size: 24px;
  }
}

@media (max-width: 520px) {
  .gv-date {
    display: none;
  }

  .gv-topbar-inner {
    min-height: 34px;
  }

  .gv-main-inner {
    height: 62px;
  }

  .gv-logo {
    font-size: 21px;
  }

  .gv-tags-inner {
    padding-top: 9px;
    padding-bottom: 10px;
  }

  .gv-hero {
    padding: 65px 16px;
  }

  .gv-hero p {
    font-size: 16px;
  }
}


.gv-hero-news {
  background: #f6f8fc;
  padding: 34px 0 46px;
}

.gv-hero-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1.35fr .9fr;
  gap: 24px;
}

.gv-hero-main {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 28px;
  background: #111827;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .16);
}

.gv-hero-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, .08) 0%,
    rgba(15, 23, 42, .35) 42%,
    rgba(15, 23, 42, .92) 100%
  );
  z-index: 1;
}

.gv-hero-image-link {
  display: block;
  width: 100%;
  height: 100%;
}

.gv-hero-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform .45s ease;
}

.gv-hero-main:hover img {
  transform: scale(1.06);
}

.gv-hero-content {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 2;
}

.gv-category {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .2px;
  margin-bottom: 14px;
}

.gv-category.small {
  padding: 6px 10px;
  font-size: 11px;
  margin-bottom: 8px;
}

.gv-hero-content h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: -1.6px;
}

.gv-hero-content h1 a {
  color: #fff;
  text-decoration: none;
}

.gv-hero-content p {
  max-width: 650px;
  color: #e5e7eb;
  font-size: 17px;
  line-height: 1.65;
  margin: 16px 0 0;
}

.gv-meta {
  display: flex;
  gap: 9px;
  align-items: center;
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 700;
  margin-top: 18px;
}

.gv-hero-side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.gv-side-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 16px;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 22px;
  padding: 12px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, .07);
  transition: transform .25s ease, box-shadow .25s ease;
}

.gv-side-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, .11);
}

.gv-side-card img {
  width: 170px;
  height: 108px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.gv-side-card h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.28;
  letter-spacing: -.3px;
}

.gv-side-card h2 a {
  color: #0f172a;
  text-decoration: none;
}

.gv-side-card h2 a:hover {
  color: #2563eb;
}

@media (max-width: 980px) {
  .gv-hero-container {
    grid-template-columns: 1fr;
  }

  .gv-hero-main,
  .gv-hero-main img {
    min-height: auto;
    height: 460px;
  }

  .gv-hero-side {
    grid-template-columns: 1fr 1fr;
  }

  .gv-side-card {
    grid-template-columns: 130px 1fr;
  }

  .gv-side-card img {
    width: 130px;
    height: 96px;
  }
}

@media (max-width: 640px) {
  .gv-hero-news {
    padding: 22px 0 34px;
  }

  .gv-hero-container {
    padding: 0 14px;
    gap: 18px;
  }

  .gv-hero-main {
    border-radius: 22px;
  }

  .gv-hero-main,
  .gv-hero-main img {
    height: 430px;
  }

  .gv-hero-content {
    left: 20px;
    right: 20px;
    bottom: 22px;
  }

  .gv-hero-content h1 {
    font-size: 30px;
    letter-spacing: -1px;
  }

  .gv-hero-content p {
    font-size: 15px;
  }

  .gv-hero-side {
    grid-template-columns: 1fr;
  }

  .gv-side-card {
    grid-template-columns: 118px 1fr;
    border-radius: 18px;
  }

  .gv-side-card img {
    width: 118px;
    height: 88px;
    border-radius: 14px;
  }

  .gv-side-card h2 {
    font-size: 16px;
  }
}

@media (max-width: 390px) {
  .gv-hero-main,
  .gv-hero-main img {
    height: 390px;
  }

  .gv-hero-content h1 {
    font-size: 27px;
  }

  .gv-side-card {
    grid-template-columns: 104px 1fr;
    gap: 12px;
  }

  .gv-side-card img {
    width: 104px;
    height: 82px;
  }
}


.gv-popular-today {
  background: #f6f8fc;
  padding: 20px 0 54px;
}

.gv-popular-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 18px;
}

.gv-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.gv-section-label {
  display: inline-flex;
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #dbeafe;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 8px;
}

.gv-section-head h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -1.2px;
}

.gv-view-all {
  color: #2563eb;
  background: #fff;
  border: 1px solid #dbeafe;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}

.gv-popular-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 18px;
}

.gv-popular-card {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  border-radius: 24px;
  background: #0f172a;
  box-shadow: 0 16px 38px rgba(15, 23, 42, .12);
}

.gv-popular-large {
  grid-row: span 2;
  min-height: 510px;
}

.gv-popular-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, .04) 0%,
    rgba(15, 23, 42, .36) 48%,
    rgba(15, 23, 42, .94) 100%
  );
  z-index: 1;
}

.gv-popular-card img {
  width: 100%;
  height: 100%;
  min-height: 245px;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.gv-popular-large img {
  min-height: 510px;
}

.gv-popular-card:hover img {
  transform: scale(1.06);
}

.gv-popular-content {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
}

.gv-popular-content span {
  display: inline-flex;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 10px;
}

.gv-popular-content h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -.4px;
}

.gv-popular-large .gv-popular-content h3 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -1.2px;
}

.gv-popular-content h3 a {
  color: #fff;
  text-decoration: none;
}

.gv-popular-content p {
  color: #e5e7eb;
  font-size: 15px;
  line-height: 1.6;
  margin: 12px 0 0;
  max-width: 520px;
}

@media (max-width: 980px) {
  .gv-popular-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gv-popular-large {
    grid-column: span 2;
    min-height: 430px;
  }

  .gv-popular-large img {
    min-height: 430px;
  }
}

@media (max-width: 640px) {
  .gv-popular-today {
    padding: 10px 0 38px;
  }

  .gv-section-head {
    align-items: flex-start;
    margin-bottom: 16px;
  }

  .gv-view-all {
    padding: 9px 13px;
    font-size: 13px;
  }

  .gv-popular-grid {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
  }

  .gv-popular-card,
  .gv-popular-large {
    flex: 0 0 82%;
    min-height: 360px;
    scroll-snap-align: start;
    border-radius: 22px;
  }

  .gv-popular-card img,
  .gv-popular-large img {
    min-height: 360px;
  }

  .gv-popular-large .gv-popular-content h3,
  .gv-popular-content h3 {
    font-size: 23px;
    line-height: 1.15;
  }

  .gv-popular-content p {
    display: none;
  }
}

@media (max-width: 420px) {
  .gv-popular-card,
  .gv-popular-large {
    flex-basis: 88%;
    min-height: 330px;
  }

  .gv-popular-card img,
  .gv-popular-large img {
    min-height: 330px;
  }

  .gv-popular-content {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
}

.gv-latest-news {
  background: #ffffff;
  padding: 56px 0 70px;
}

.gv-latest-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 18px;
}

.gv-latest-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.gv-latest-label {
  display: inline-flex;
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 8px;
}

.gv-latest-head h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -1.3px;
}

.gv-latest-more {
  color: #0f172a;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.gv-latest-more:hover {
  color: #2563eb;
  border-color: #bfdbfe;
  background: #eff6ff;
}

.gv-latest-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
}

.gv-latest-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.gv-news-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.gv-news-card:hover {
  transform: translateY(-4px);
  border-color: #bfdbfe;
  box-shadow: 0 22px 50px rgba(15, 23, 42, .12);
}

.gv-news-image {
  display: block;
  overflow: hidden;
  background: #0f172a;
}

.gv-news-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.gv-news-card:hover .gv-news-image img {
  transform: scale(1.06);
}

.gv-news-content {
  padding: 18px 18px 20px;
}

.gv-news-category {
  display: inline-flex;
  color: #2563eb;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
  margin-bottom: 10px;
}

.gv-news-content h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.22;
  letter-spacing: -.5px;
}

.gv-news-content h3 a {
  color: #0f172a;
  text-decoration: none;
}

.gv-news-content h3 a:hover {
  color: #2563eb;
}

.gv-news-content p {
  margin: 10px 0 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.65;
}

.gv-news-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 800;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
}

.gv-latest-sidebar {
  position: sticky;
  top: 135px;
  display: grid;
  gap: 20px;
}

.gv-sidebar-box {
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, .06);
}

.gv-sidebar-box h3 {
  margin: 0 0 16px;
  color: #0f172a;
  font-size: 20px;
  letter-spacing: -.5px;
}

.gv-topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gv-topic-list a {
  color: #1d4ed8;
  background: #fff;
  border: 1px solid #dbeafe;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.gv-topic-list a:hover {
  background: #eff6ff;
}

.gv-editor-card {
  margin-bottom: 16px;
}

.gv-editor-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  margin-bottom: 12px;
}

.gv-editor-card h4 {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
}

.gv-editor-card h4 a {
  color: #0f172a;
  text-decoration: none;
}

.gv-editor-mini {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid #e2e8f0;
}

.gv-editor-mini span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: #0f172a;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.gv-editor-mini a {
  color: #0f172a;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 800;
  text-decoration: none;
}

.gv-editor-mini a:hover {
  color: #2563eb;
}

@media (max-width: 1020px) {
  .gv-latest-layout {
    grid-template-columns: 1fr;
  }

  .gv-latest-sidebar {
    position: static;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .gv-latest-news {
    padding: 42px 0 52px;
  }

  .gv-latest-head {
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .gv-latest-more {
    padding: 9px 13px;
    font-size: 13px;
  }

  .gv-latest-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gv-news-content h3 {
    font-size: 20px;
  }

  .gv-latest-sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .gv-latest-container {
    padding: 0 14px;
  }

  .gv-latest-head {
    flex-direction: column;
    gap: 12px;
  }

  .gv-news-card,
  .gv-sidebar-box {
    border-radius: 20px;
  }

  .gv-news-content {
    padding: 16px;
  }

  .gv-news-meta {
    flex-direction: column;
    gap: 5px;
  }
}

.gv-tech-ai {
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, .12), transparent 32%),
    radial-gradient(circle at top right, rgba(124, 58, 237, .10), transparent 32%),
    #f8fafc;
  padding: 64px 0 76px;
}

.gv-tech-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 18px;
}

.gv-tech-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.gv-tech-label {
  display: inline-flex;
  background: #eef2ff;
  color: #4f46e5;
  border: 1px solid #c7d2fe;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 10px;
}

.gv-tech-head h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(32px, 4vw, 46px);
  letter-spacing: -1.4px;
}

.gv-tech-head p {
  max-width: 620px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
  margin: 10px 0 0;
}

.gv-tech-more {
  flex-shrink: 0;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(37, 99, 235, .24);
}

.gv-tech-layout {
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 24px;
}

.gv-tech-featured {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 30px;
  background: #0f172a;
  box-shadow: 0 26px 60px rgba(15, 23, 42, .16);
}

.gv-tech-featured::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, .04) 0%,
    rgba(15, 23, 42, .30) 45%,
    rgba(15, 23, 42, .95) 100%
  );
  z-index: 1;
}

.gv-tech-featured img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.gv-tech-featured:hover img {
  transform: scale(1.06);
}

.gv-tech-featured-content {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 2;
}

.gv-tech-featured-content span {
  display: inline-flex;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  color: #fff;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 12px;
}

.gv-tech-featured-content h3 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.06;
  letter-spacing: -1.3px;
}

.gv-tech-featured-content h3 a {
  color: #fff;
  text-decoration: none;
}

.gv-tech-featured-content p {
  max-width: 650px;
  color: #e5e7eb;
  font-size: 16px;
  line-height: 1.7;
  margin: 14px 0 0;
}

.gv-tech-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 800;
  margin-top: 18px;
}

.gv-tech-list {
  display: grid;
  gap: 16px;
}

.gv-tech-card {
  display: grid;
  grid-template-columns: 165px 1fr;
  gap: 16px;
  align-items: center;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 24px;
  padding: 12px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.gv-tech-card:hover {
  transform: translateY(-3px);
  border-color: #bfdbfe;
  box-shadow: 0 22px 46px rgba(15, 23, 42, .12);
}

.gv-tech-card img {
  width: 165px;
  height: 116px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

.gv-tech-card span {
  display: inline-flex;
  color: #2563eb;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 9px;
}

.gv-tech-card h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.28;
  letter-spacing: -.4px;
}

.gv-tech-card h3 a {
  color: #0f172a;
  text-decoration: none;
}

.gv-tech-card h3 a:hover {
  color: #2563eb;
}

@media (max-width: 980px) {
  .gv-tech-layout {
    grid-template-columns: 1fr;
  }

  .gv-tech-featured,
  .gv-tech-featured img {
    min-height: auto;
    height: 460px;
  }

  .gv-tech-list {
    grid-template-columns: 1fr 1fr;
  }

  .gv-tech-card {
    grid-template-columns: 1fr;
  }

  .gv-tech-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 680px) {
  .gv-tech-ai {
    padding: 46px 0 56px;
  }

  .gv-tech-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 22px;
  }

  .gv-tech-more {
    padding: 10px 15px;
  }

  .gv-tech-featured,
  .gv-tech-featured img {
    height: 420px;
    border-radius: 24px;
  }

  .gv-tech-featured-content {
    left: 20px;
    right: 20px;
    bottom: 22px;
  }

  .gv-tech-featured-content h3 {
    font-size: 29px;
  }

  .gv-tech-featured-content p {
    display: none;
  }

  .gv-tech-list {
    grid-template-columns: 1fr;
  }

  .gv-tech-card {
    grid-template-columns: 120px 1fr;
    border-radius: 20px;
  }

  .gv-tech-card img {
    width: 120px;
    height: 90px;
    aspect-ratio: auto;
    border-radius: 15px;
  }

  .gv-tech-card h3 {
    font-size: 16px;
  }
}

@media (max-width: 390px) {
  .gv-tech-container {
    padding: 0 14px;
  }

  .gv-tech-featured,
  .gv-tech-featured img {
    height: 380px;
  }

  .gv-tech-featured-content h3 {
    font-size: 26px;
  }

  .gv-tech-card {
    grid-template-columns: 104px 1fr;
    gap: 12px;
  }

  .gv-tech-card img {
    width: 104px;
    height: 82px;
  }
}


.gv-entertainment {
  background: #0f172a;
  padding: 66px 0 78px;
  color: #fff;
}

.gv-ent-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 18px;
}

.gv-ent-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.gv-ent-label {
  display: inline-flex;
  background: rgba(250, 204, 21, .14);
  color: #facc15;
  border: 1px solid rgba(250, 204, 21, .35);
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 10px;
}

.gv-ent-head h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 46px);
  letter-spacing: -1.4px;
}

.gv-ent-head p {
  max-width: 640px;
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.7;
  margin: 10px 0 0;
}

.gv-ent-more {
  flex-shrink: 0;
  color: #0f172a;
  background: #facc15;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.gv-ent-layout {
  display: grid;
  grid-template-columns: 1.15fr .95fr;
  gap: 24px;
}

.gv-ent-main {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 30px;
  background: #020617;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .35);
}

.gv-ent-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(2, 6, 23, .05) 0%,
    rgba(2, 6, 23, .32) 45%,
    rgba(2, 6, 23, .96) 100%
  );
  z-index: 1;
}

.gv-ent-main img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.gv-ent-main:hover img {
  transform: scale(1.06);
}

.gv-ent-main-content {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 2;
}

.gv-ent-main-content span,
.gv-ent-card span {
  display: inline-flex;
  background: linear-gradient(135deg, #f97316, #ec4899);
  color: #fff;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 12px;
}

.gv-ent-main-content h3 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.06;
  letter-spacing: -1.3px;
}

.gv-ent-main-content h3 a,
.gv-ent-card h3 a {
  color: #fff;
  text-decoration: none;
}

.gv-ent-main-content p {
  max-width: 650px;
  color: #e5e7eb;
  font-size: 16px;
  line-height: 1.7;
  margin: 14px 0 0;
}

.gv-ent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.gv-ent-card {
  position: relative;
  min-height: 272px;
  overflow: hidden;
  border-radius: 24px;
  background: #020617;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
}

.gv-ent-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(2, 6, 23, .08) 0%,
    rgba(2, 6, 23, .44) 50%,
    rgba(2, 6, 23, .96) 100%
  );
  z-index: 1;
}

.gv-ent-card img {
  width: 100%;
  height: 272px;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.gv-ent-card:hover img {
  transform: scale(1.06);
}

.gv-ent-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
}

.gv-ent-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -.5px;
}

.gv-ent-card h3 a:hover,
.gv-ent-main-content h3 a:hover {
  color: #facc15;
}

@media (max-width: 980px) {
  .gv-ent-layout {
    grid-template-columns: 1fr;
  }

  .gv-ent-main,
  .gv-ent-main img {
    height: 460px;
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .gv-entertainment {
    padding: 48px 0 58px;
  }

  .gv-ent-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 22px;
  }

  .gv-ent-main,
  .gv-ent-main img {
    height: 420px;
    border-radius: 24px;
  }

  .gv-ent-main-content {
    left: 20px;
    right: 20px;
    bottom: 22px;
  }

  .gv-ent-main-content h3 {
    font-size: 29px;
  }

  .gv-ent-main-content p {
    display: none;
  }

  .gv-ent-grid {
    grid-template-columns: 1fr;
  }

  .gv-ent-card,
  .gv-ent-card img {
    height: 320px;
  }
}

@media (max-width: 390px) {
  .gv-ent-container {
    padding: 0 14px;
  }

  .gv-ent-main,
  .gv-ent-main img {
    height: 380px;
  }

  .gv-ent-card,
  .gv-ent-card img {
    height: 295px;
  }

  .gv-ent-main-content h3 {
    font-size: 26px;
  }
}


.gv-movies {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 66px 0 78px;
}

.gv-movies-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 18px;
}

.gv-movies-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.gv-movies-label {
  display: inline-flex;
  background: #fff7ed;
  color: #ea580c;
  border: 1px solid #fed7aa;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 10px;
}

.gv-movies-head h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(32px, 4vw, 46px);
  letter-spacing: -1.4px;
}

.gv-movies-head p {
  max-width: 640px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
  margin: 10px 0 0;
}

.gv-movies-more {
  flex-shrink: 0;
  color: #fff;
  background: linear-gradient(135deg, #f97316, #dc2626);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(249, 115, 22, .22);
}

.gv-movies-layout {
  display: grid;
  grid-template-columns: 1.15fr .95fr;
  gap: 24px;
}

.gv-movies-featured {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 30px;
  background: #0f172a;
  box-shadow: 0 26px 60px rgba(15, 23, 42, .16);
}

.gv-movies-featured::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, .04) 0%,
    rgba(15, 23, 42, .30) 45%,
    rgba(15, 23, 42, .95) 100%
  );
  z-index: 1;
}

.gv-movies-featured img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.gv-movies-featured:hover img {
  transform: scale(1.06);
}

.gv-movies-featured-content {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 2;
}

.gv-movies-featured-content span,
.gv-movies-card span {
  display: inline-flex;
  background: linear-gradient(135deg, #f97316, #dc2626);
  color: #fff;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 12px;
}

.gv-movies-featured-content h3 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.06;
  letter-spacing: -1.3px;
}

.gv-movies-featured-content h3 a {
  color: #fff;
  text-decoration: none;
}

.gv-movies-featured-content p {
  max-width: 650px;
  color: #e5e7eb;
  font-size: 16px;
  line-height: 1.7;
  margin: 14px 0 0;
}

.gv-movies-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.gv-movies-card {
  position: relative;
  min-height: 272px;
  overflow: hidden;
  border-radius: 24px;
  background: #0f172a;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .13);
}

.gv-movies-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, .08) 0%,
    rgba(15, 23, 42, .42) 48%,
    rgba(15, 23, 42, .96) 100%
  );
  z-index: 1;
}

.gv-movies-card img {
  width: 100%;
  height: 272px;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.gv-movies-card:hover img {
  transform: scale(1.06);
}

.gv-movies-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
}

.gv-movies-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -.5px;
}

.gv-movies-card h3 a {
  color: #fff;
  text-decoration: none;
}

.gv-movies-card h3 a:hover,
.gv-movies-featured-content h3 a:hover {
  color: #fed7aa;
}

@media (max-width: 980px) {
  .gv-movies-layout {
    grid-template-columns: 1fr;
  }

  .gv-movies-featured,
  .gv-movies-featured img {
    height: 460px;
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .gv-movies {
    padding: 48px 0 58px;
  }

  .gv-movies-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 22px;
  }

  .gv-movies-featured,
  .gv-movies-featured img {
    height: 420px;
    border-radius: 24px;
  }

  .gv-movies-featured-content {
    left: 20px;
    right: 20px;
    bottom: 22px;
  }

  .gv-movies-featured-content h3 {
    font-size: 29px;
  }

  .gv-movies-featured-content p {
    display: none;
  }

  .gv-movies-list {
    grid-template-columns: 1fr;
  }

  .gv-movies-card,
  .gv-movies-card img {
    height: 320px;
  }
}

@media (max-width: 390px) {
  .gv-movies-container {
    padding: 0 14px;
  }

  .gv-movies-featured,
  .gv-movies-featured img {
    height: 380px;
  }

  .gv-movies-card,
  .gv-movies-card img {
    height: 295px;
  }

  .gv-movies-featured-content h3 {
    font-size: 26px;
  }
}


.gv-anime {
  background:
    radial-gradient(circle at top left, rgba(236, 72, 153, .14), transparent 32%),
    radial-gradient(circle at top right, rgba(59, 130, 246, .14), transparent 32%),
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  padding: 66px 0 78px;
}

.gv-anime-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 18px;
}

.gv-anime-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.gv-anime-label {
  display: inline-flex;
  background: #fdf2f8;
  color: #db2777;
  border: 1px solid #fbcfe8;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 10px;
}

.gv-anime-head h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(32px, 4vw, 46px);
  letter-spacing: -1.4px;
}

.gv-anime-head p {
  max-width: 640px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
  margin: 10px 0 0;
}

.gv-anime-more {
  flex-shrink: 0;
  color: #fff;
  background: linear-gradient(135deg, #ec4899, #6366f1);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(236, 72, 153, .22);
}

.gv-anime-layout {
  display: grid;
  grid-template-columns: 1.15fr .95fr;
  gap: 24px;
}

.gv-anime-featured {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 30px;
  background: #0f172a;
  box-shadow: 0 26px 60px rgba(15, 23, 42, .16);
}

.gv-anime-featured::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, .04) 0%,
    rgba(15, 23, 42, .30) 45%,
    rgba(15, 23, 42, .95) 100%
  );
  z-index: 1;
}

.gv-anime-featured img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.gv-anime-featured:hover img {
  transform: scale(1.06);
}

.gv-anime-featured-content {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 2;
}

.gv-anime-featured-content span,
.gv-anime-card span {
  display: inline-flex;
  background: linear-gradient(135deg, #ec4899, #6366f1);
  color: #fff;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 12px;
}

.gv-anime-featured-content h3 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.06;
  letter-spacing: -1.3px;
}

.gv-anime-featured-content h3 a {
  color: #fff;
  text-decoration: none;
}

.gv-anime-featured-content p {
  max-width: 650px;
  color: #e5e7eb;
  font-size: 16px;
  line-height: 1.7;
  margin: 14px 0 0;
}

.gv-anime-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.gv-anime-card {
  position: relative;
  min-height: 272px;
  overflow: hidden;
  border-radius: 24px;
  background: #0f172a;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .13);
}

.gv-anime-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, .08) 0%,
    rgba(15, 23, 42, .42) 48%,
    rgba(15, 23, 42, .96) 100%
  );
  z-index: 1;
}

.gv-anime-card img {
  width: 100%;
  height: 272px;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.gv-anime-card:hover img {
  transform: scale(1.06);
}

.gv-anime-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
}

.gv-anime-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -.5px;
}

.gv-anime-card h3 a {
  color: #fff;
  text-decoration: none;
}

.gv-anime-card h3 a:hover,
.gv-anime-featured-content h3 a:hover {
  color: #fbcfe8;
}

@media (max-width: 980px) {
  .gv-anime-layout {
    grid-template-columns: 1fr;
  }

  .gv-anime-featured,
  .gv-anime-featured img {
    height: 460px;
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .gv-anime {
    padding: 48px 0 58px;
  }

  .gv-anime-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 22px;
  }

  .gv-anime-featured,
  .gv-anime-featured img {
    height: 420px;
    border-radius: 24px;
  }

  .gv-anime-featured-content {
    left: 20px;
    right: 20px;
    bottom: 22px;
  }

  .gv-anime-featured-content h3 {
    font-size: 29px;
  }

  .gv-anime-featured-content p {
    display: none;
  }

  .gv-anime-list {
    grid-template-columns: 1fr;
  }

  .gv-anime-card,
  .gv-anime-card img {
    height: 320px;
  }
}

@media (max-width: 390px) {
  .gv-anime-container {
    padding: 0 14px;
  }

  .gv-anime-featured,
  .gv-anime-featured img {
    height: 380px;
  }

  .gv-anime-card,
  .gv-anime-card img {
    height: 295px;
  }

  .gv-anime-featured-content h3 {
    font-size: 26px;
  }
}


.gv-viral {
  background:
    radial-gradient(circle at top left, rgba(14, 165, 233, .14), transparent 30%),
    radial-gradient(circle at top right, rgba(236, 72, 153, .14), transparent 30%),
    #f8fafc;
  padding: 66px 0 78px;
}

.gv-viral-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 18px;
}

.gv-viral-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.gv-viral-label {
  display: inline-flex;
  background: #ecfeff;
  color: #0891b2;
  border: 1px solid #a5f3fc;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 10px;
}

.gv-viral-head h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(32px, 4vw, 46px);
  letter-spacing: -1.4px;
}

.gv-viral-head p {
  max-width: 640px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
  margin: 10px 0 0;
}

.gv-viral-more {
  flex-shrink: 0;
  color: #fff;
  background: linear-gradient(135deg, #06b6d4, #ec4899);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(236, 72, 153, .22);
}

.gv-viral-layout {
  display: grid;
  grid-template-columns: 1.15fr .95fr;
  gap: 24px;
}

.gv-viral-main {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 30px;
  background: #0f172a;
  box-shadow: 0 26px 60px rgba(15, 23, 42, .16);
}

.gv-viral-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, .04) 0%,
    rgba(15, 23, 42, .30) 45%,
    rgba(15, 23, 42, .95) 100%
  );
  z-index: 1;
}

.gv-viral-main img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.gv-viral-main:hover img {
  transform: scale(1.06);
}

.gv-viral-main-content {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 2;
}

.gv-viral-main-content span,
.gv-viral-card span {
  display: inline-flex;
  background: linear-gradient(135deg, #06b6d4, #ec4899);
  color: #fff;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 12px;
}

.gv-viral-main-content h3 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.06;
  letter-spacing: -1.3px;
}

.gv-viral-main-content h3 a {
  color: #fff;
  text-decoration: none;
}

.gv-viral-main-content p {
  max-width: 650px;
  color: #e5e7eb;
  font-size: 16px;
  line-height: 1.7;
  margin: 14px 0 0;
}

.gv-viral-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.gv-viral-card {
  position: relative;
  min-height: 272px;
  overflow: hidden;
  border-radius: 24px;
  background: #0f172a;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .13);
}

.gv-viral-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, .08) 0%,
    rgba(15, 23, 42, .42) 48%,
    rgba(15, 23, 42, .96) 100%
  );
  z-index: 1;
}

.gv-viral-card img {
  width: 100%;
  height: 272px;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.gv-viral-card:hover img {
  transform: scale(1.06);
}

.gv-viral-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
}

.gv-viral-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -.5px;
}

.gv-viral-card h3 a {
  color: #fff;
  text-decoration: none;
}

.gv-viral-card h3 a:hover,
.gv-viral-main-content h3 a:hover {
  color: #a5f3fc;
}

@media (max-width: 980px) {
  .gv-viral-layout {
    grid-template-columns: 1fr;
  }

  .gv-viral-main,
  .gv-viral-main img {
    height: 460px;
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .gv-viral {
    padding: 48px 0 58px;
  }

  .gv-viral-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 22px;
  }

  .gv-viral-main,
  .gv-viral-main img {
    height: 420px;
    border-radius: 24px;
  }

  .gv-viral-main-content {
    left: 20px;
    right: 20px;
    bottom: 22px;
  }

  .gv-viral-main-content h3 {
    font-size: 29px;
  }

  .gv-viral-main-content p {
    display: none;
  }

  .gv-viral-grid {
    grid-template-columns: 1fr;
  }

  .gv-viral-card,
  .gv-viral-card img {
    height: 320px;
  }
}

@media (max-width: 390px) {
  .gv-viral-container {
    padding: 0 14px;
  }

  .gv-viral-main,
  .gv-viral-main img {
    height: 380px;
  }

  .gv-viral-card,
  .gv-viral-card img {
    height: 295px;
  }

  .gv-viral-main-content h3 {
    font-size: 26px;
  }
}


.gv-trending-tags {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 60px 0 72px;
}

.gv-tags-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 18px;
}

.gv-tags-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 28px;
}

.gv-tags-label {
  display: inline-flex;
  background: #eef2ff;
  color: #4f46e5;
  border: 1px solid #c7d2fe;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 10px;
}

.gv-tags-head h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(32px, 4vw, 46px);
  letter-spacing: -1.4px;
}

.gv-tags-head p {
  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
  margin: 10px 0 0;
}

.gv-tags-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.gv-tags-cloud a {
  color: #0f172a;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, .08);
  padding: 13px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .07);
  transition: .25s ease;
}

.gv-tags-cloud a:hover {
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(37, 99, 235, .22);
}

@media (max-width: 640px) {
  .gv-trending-tags {
    padding: 46px 0 56px;
  }

  .gv-tags-cloud {
    justify-content: flex-start;
    gap: 10px;
  }

  .gv-tags-cloud a {
    font-size: 13px;
    padding: 10px 14px;
  }
}


.gv-footer {
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, .18), transparent 32%),
    radial-gradient(circle at top right, rgba(236, 72, 153, .13), transparent 32%),
    #020617;
  color: #fff;
  padding: 68px 0 28px;
}

.gv-footer-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 18px;
}

.gv-footer-top {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr .8fr;
  gap: 36px;
  margin-bottom: 38px;
}

.gv-footer-logo {
  display: inline-block;
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -1px;
  text-decoration: none;
  margin-bottom: 14px;
}

.gv-footer-logo span {
  color: #60a5fa;
}

.gv-footer-brand p {
  max-width: 420px;
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 20px;
}

.gv-footer-social {
  display: flex;
  gap: 10px;
}

.gv-footer-social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: .25s ease;
}

.gv-footer-social a:hover {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  transform: translateY(-3px);
}

.gv-footer-col h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 16px;
  letter-spacing: -.2px;
}

.gv-footer-col a {
  display: block;
  width: fit-content;
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 12px;
  transition: .2s ease;
}

.gv-footer-col a:hover {
  color: #60a5fa;
  transform: translateX(3px);
}

.gv-footer-newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  padding: 24px;
  margin-bottom: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,.22);
}

.gv-footer-newsletter h3 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -.6px;
}

.gv-footer-newsletter p {
  margin: 8px 0 0;
  color: #cbd5e1;
  font-size: 14px;
}

.gv-newsletter-form {
  display: flex;
  width: 420px;
  max-width: 100%;
  background: #fff;
  border-radius: 999px;
  padding: 6px;
}

.gv-newsletter-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 16px;
  font-size: 14px;
  background: transparent;
}

.gv-newsletter-form button {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.gv-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 22px;
}

.gv-footer-bottom p {
  margin: 0;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 700;
}

.gv-footer-bottom div {
  display: flex;
  gap: 16px;
}

.gv-footer-bottom a {
  color: #94a3b8;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.gv-footer-bottom a:hover {
  color: #60a5fa;
}

@media (max-width: 900px) {
  .gv-footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .gv-footer-brand {
    grid-column: span 2;
  }

  .gv-footer-newsletter {
    flex-direction: column;
    align-items: flex-start;
  }

  .gv-newsletter-form {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .gv-footer {
    padding: 52px 0 24px;
  }

  .gv-footer-top {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .gv-footer-brand {
    grid-column: span 1;
  }

  .gv-footer-newsletter {
    border-radius: 22px;
    padding: 20px;
  }

  .gv-newsletter-form {
    flex-direction: column;
    border-radius: 18px;
    padding: 10px;
    gap: 10px;
  }

  .gv-newsletter-form input {
    padding: 12px;
  }

  .gv-newsletter-form button {
    width: 100%;
  }

  .gv-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}