/* Game grid & cards */
.game-grid, .grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px,1fr));
  gap: 14px; margin-bottom: 28px;
}
.compact-grid { grid-template-columns: repeat(auto-fill, minmax(150px,1fr)); }

.game-card, .grid .card {
  background: var(--surface);
  border-radius: 14px; overflow: hidden;
  cursor: pointer; transition: all var(--transition);
  border: 1.5px solid var(--border);
  position: relative; box-shadow: none;
}
.game-card:hover, .grid .card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(92,110,248,.28);
}
.game-thumb, .grid .card-image {
  width: 100%; aspect-ratio: 4/3; position: relative; overflow: hidden;
}
.game-thumb-img, .grid .card-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .3s;
}
.game-card:hover .game-thumb-img,
.grid .card:hover .card-image img { transform: scale(1.07); }

.game-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,rgba(26,29,59,.7),transparent);
  opacity: 0; transition: opacity var(--transition);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 10px;
}
.game-card:hover .game-overlay { opacity: 1; }
.play-btn {
  background: #fff; color: var(--accent);
  border: none; border-radius: 40px; padding: 6px 18px;
  font-family: 'Outfit', sans-serif; font-size: 12.5px; font-weight: 800;
  cursor: pointer; display: flex; align-items: center; gap: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,.2); text-decoration: none;
}
.game-tag { position:absolute;top:8px;left:8px;background:var(--accent2);color:#fff;font-size:9.5px;font-weight:800;padding:2px 7px;border-radius:20px;text-transform:uppercase;letter-spacing:.5px }
.game-tag.new { background:var(--accent4) }
.game-tag.hot { background:var(--accent5) }
.game-tag.top { background:var(--accent) }
.game-fav {
  position:absolute;top:8px;right:8px;width:34px;height:34px;
  background:rgba(255,255,255,.94);border:1px solid rgba(255,94,126,.14);
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  font-size:16px;opacity:0;transition:opacity var(--transition), transform .18s ease, box-shadow .18s ease, background .18s ease;
  cursor:pointer;text-decoration:none;color:#ff5e7e;z-index:8;user-select:none;
  box-shadow:0 8px 22px rgba(17,24,39,.10);
}
.game-card:hover .game-fav { opacity:1 }
.game-fav:hover { transform:translateY(-1px) scale(1.04); box-shadow:0 10px 24px rgba(255,94,126,.18) }
.game-fav.is-active,
.game-fav[aria-pressed="true"],
.game-fav[data-active="1"] {
  opacity:1;color:#fff;background:linear-gradient(135deg,#ff6b8a,#ff4d6d);border-color:transparent;
}
.game-fav.is-puffing { animation: gsFavHeartPop .45s ease; }
.game-fav .gs-fav-puffs {
  position:absolute;inset:50% auto auto 50%;width:0;height:0;pointer-events:none;z-index:-1;
}
.game-fav .gs-fav-puff {
  position:absolute;left:0;top:0;width:18px;height:18px;border-radius:999px;
  background:radial-gradient(circle, rgba(255,135,160,.55) 0%, rgba(255,106,138,.28) 45%, rgba(255,106,138,0) 72%);
  opacity:0;transform:translate(-50%,-50%) scale(.2);
  animation: gsFavPuff .65s ease-out forwards;
}
.game-fav .gs-fav-puff:nth-child(1) { --tx:-26px; --ty:-18px; animation-delay:0s; }
.game-fav .gs-fav-puff:nth-child(2) { --tx:24px; --ty:-20px; animation-delay:.03s; }
.game-fav .gs-fav-puff:nth-child(3) { --tx:-22px; --ty:18px; animation-delay:.06s; }
.game-fav .gs-fav-puff:nth-child(4) { --tx:26px; --ty:16px; animation-delay:.09s; }
@keyframes gsFavHeartPop {
  0% { transform:scale(1); }
  35% { transform:scale(1.18); }
  100% { transform:scale(1); }
}
@keyframes gsFavPuff {
  0% { opacity:.85; transform:translate(-50%,-50%) scale(.25); }
  100% { opacity:0; transform:translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) scale(1.7); }
}
@media (hover:none), (pointer:coarse) {
  .game-fav { opacity:1; }
}
.game-info, .grid .card-content { padding: 9px 11px 11px; }
.game-name, .grid .card-content .title { font-size:13px;font-weight:700;color:var(--text);margin-bottom:4px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;line-height:1.35 }
.grid .card-content .title a { color: inherit; }
.game-meta, .gs-meta { display:flex;align-items:center;justify-content:space-between;gap:6px;flex-wrap:wrap }
.game-genre, .gs-meta .tag { font-size:11px;color:var(--text3);font-weight:600;background:var(--surface2);border:1px solid var(--border);padding:.4rem .7rem;border-radius:999px }
.game-rating { display:flex;align-items:center;gap:3px;font-size:11px;font-weight:700;color:var(--accent5) }

.grid .buttons, .game-card .buttons { margin-top: 10px; }
.grid .button, .gs-page-wrap .button { border-radius:999px;font-weight:800;padding-inline:1rem;border:1.5px solid var(--border);box-shadow:none }
.button.is-primary {  width: 100%; background:linear-gradient(135deg,var(--accent),#7c8ff8);border-color:transparent }
.button.is-light   { background:var(--surface);color:var(--text2) }
.gs-fav-btn.is-active,
.gs-fav-btn[aria-pressed="true"] { color:var(--danger);border-color:rgba(239,71,111,.24);background:rgba(239,71,111,.08) }
</style>
 <style>
/* =========================
CATEGORY HERO
========================= */

.category-hero{
background:#f3f6fb;
border:1px solid #dfe7f3;
}

.hero-left{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.hero-head{
  display:flex;
  align-items:center;
  gap:18px;
}

.hero-icon{
  width:78px;
  height:78px;
  border-radius:24px;
  background:linear-gradient(135deg,#6d72ff,#8b5cf6);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:36px;
}

.hero-title{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.hero-title h1{
  font-size:28px;
  line-height:1;
 margin:0;
  color:#1f2937;
  
}

.hero-title span{
  font-size:15px;
  color:#6b7280;
  background:#f3f4f8;
  border:1px solid #333333;
  padding:8px 14px;
  border-radius:999px;
}

.hero-desc{
  font-size:18px;
  line-height:1.8;
  color:#6b7280;
}

.hero-left .tags{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.hero-left .tag{
  height:48px;
  padding:0 22px;
  border-radius:16px;
  background:#fff;
  border:1px solid #e7eaf3;
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  color:#1f2937;
  text-decoration:none;
  transition:.2s;
}

.hero-left .tag:hover{
  transform:translateY(-2px);
  border-color:#d6daf0;
}

  .home-intro-stats .home-stat-card {
    min-height: auto;
    padding: 12px 8px;
    justify-content: center;
  }
/* =========================
ADS CARD
========================= */

.ads-card{
  border:1px solid #efe6ff;
  border-radius:24px;
  background:linear-gradient(135deg,#fff,#faf7ff);
  overflow:hidden;
  position:relative;
}

.ads-content{
  width:100%;
  max-height:280px;
  overflow:hidden;
}


/* =========================
RESPONSIVE
========================= */

@media(max-width:1100px){

  .category-hero{
    grid-template-columns:1fr;
  }


}

@media(max-width:768px){

  .category-hero{
    padding:12px 14px;
    border-radius:18px;
    gap:10px;
  }

  .hero-left{
    gap:10px;
  }

  .hero-head{
    gap:10px;
    align-items:center;
  }

  .hero-icon{
    width:52px;
    height:52px;
    border-radius:16px;
    font-size:24px;
    flex:0 0 52px;
  }

  .hero-title{
    gap:8px;
  }

  .hero-title h1{
    font-size:24px;
  }

  .hero-title span{
    font-size:12px;
    padding:4px 9px;
  }

  .hero-desc{
    font-size:14px;
    line-height:1.55;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
  }

  .home-intro-stats,
  .ads-card{
    display:none;
  }
}

/* =========================================================
   GameIsland Tag Hero - Adaptive A/B/C Version
   A: 4款以上 2x2拼貼 / B: 2~3款堆疊 / C: 0~1款預設圖示
========================================================= */

.gi-tag-hero {
  --tag-main: #5c63ff;
  --tag-main-2: #8b5cf6;
  --tag-soft: rgba(92,110,248,.16);
  --tag-soft-2: rgba(139,92,246,.18);
  --tag-dark: #071238;
  --tag-muted: #26324f;

  position: relative;
  overflow: hidden;

  width: 100%;
  min-height: 300px;
  margin: 12px 0 18px;
  padding: 24px 68px 24px 80px;

  display: grid;
  grid-template-columns: 270px minmax(0, 1fr) 285px;
  align-items: center;
  gap: 32px;

  border-radius: 22px;
  border: 1px solid rgba(92,110,248,.14);

  background:
    radial-gradient(520px 260px at 0% 15%, rgba(88,174,255,.24), transparent 64%),
    radial-gradient(420px 260px at 100% 50%, rgba(147,83,255,.34), transparent 64%),
    linear-gradient(115deg, #dff0ff 0%, #f5f8ff 45%, #ece7ff 72%, #b985ff 100%);

  box-shadow:
    0 14px 38px rgba(15,23,42,.08),
    inset 0 1px 0 rgba(255,255,255,.9);
}

/* 左側白色弧線 */
.gi-tag-hero::before {
  content: "";
  position: absolute;
  left: -78px;
  top: -82px;
  width: 330px;
  height: 430px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.72);
  transform: rotate(-12deg);
  pointer-events: none;
}

/* 右側紫色幾何光塊 */
.gi-tag-hero::after {
  content: "";
  position: absolute;
  right: -88px;
  top: -76px;
  width: 355px;
  height: 410px;
  transform: rotate(34deg);
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,0) 42%),
    linear-gradient(135deg, rgba(255,255,255,0) 42%, rgba(255,255,255,.28) 43%, rgba(255,255,255,0) 44%),
    linear-gradient(45deg, rgba(255,255,255,0) 48%, rgba(255,255,255,.22) 49%, rgba(255,255,255,0) 50%);
  opacity: .95;
  pointer-events: none;
}

.gi-tag-dot-left,
.gi-tag-dot-right,
.gi-tag-mark {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.gi-tag-dot-left {
  left: 0;
  top: 76px;
  width: 118px;
  height: 118px;
  opacity: .65;
  background-image: radial-gradient(circle, rgba(255,255,255,.85) 1.7px, transparent 1.8px);
  background-size: 12px 12px;
}

.gi-tag-dot-right {
  right: 34px;
  bottom: 42px;
  width: 92px;
  height: 92px;
  opacity: .75;
  background-image: radial-gradient(circle, rgba(255,255,255,.92) 1.6px, transparent 1.8px);
  background-size: 11px 11px;
}

/* 標籤浮水印 */
.gi-tag-mark {
  left: 64%;
  top: 58%;
  width: 128px;
  height: 128px;
  transform: translate(-50%, -50%) rotate(-42deg);
  opacity: .46;
  border-radius: 26px 26px 26px 8px;
  border: 8px solid rgba(255,255,255,.48);
}

.gi-tag-mark::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 15px;
  height: 15px;
  border-radius: 999px;
  border: 5px solid rgba(255,255,255,.48);
}

/* A 狀態：4款以上 2x2拼貼 */
.gi-tag-art {
  position: relative;
  z-index: 3;
}

.gi-tag-art--collage {
  width: 270px;
  aspect-ratio: 1 / 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 6px;

  overflow: hidden;
  padding: 8px;

  border-radius: 24px;
  background: rgba(255,255,255,.78);

  box-shadow:
    0 22px 46px rgba(15,23,42,.18),
    0 0 0 4px rgba(255,255,255,.92),
    inset 0 1px 0 rgba(255,255,255,.55);
}

.gi-tag-art-item {
  position: relative;
  overflow: hidden;
  display: block;
  min-width: 0;
  border-radius: 14px;
  background: #111827;
}

.gi-tag-art-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .24s ease;
}

.gi-tag-art-item:hover img {
  transform: scale(1.06);
}

/* B 狀態：2~3款堆疊卡片 */
.gi-tag-hero--stack .gi-tag-art {
  width: 270px;
  height: 270px;
}

.gi-tag-stack-card {
  position: absolute;
  width: 190px;
  height: 235px;
  overflow: hidden;
  border-radius: 22px;
  background: #111827;

  box-shadow:
    0 18px 36px rgba(15,23,42,.20),
    0 0 0 4px rgba(255,255,255,.92);
}

.gi-tag-stack-card:nth-child(1) {
  left: 6px;
  top: 18px;
  z-index: 3;
  transform: rotate(-5deg);
}

.gi-tag-stack-card:nth-child(2) {
  left: 54px;
  top: 8px;
  z-index: 2;
  transform: rotate(3deg);
}

.gi-tag-stack-card:nth-child(3) {
  left: 94px;
  top: 30px;
  z-index: 1;
  transform: rotate(8deg);
}

.gi-tag-stack-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* C 狀態：0~1款預設圖示 */
.gi-tag-hero--icon .gi-tag-art {
  width: 270px;
  aspect-ratio: 1 / 1;
  border-radius: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.65), transparent 36%),
    linear-gradient(135deg, rgba(92,99,255,.22), rgba(139,92,246,.32));

  border: 1px solid rgba(255,255,255,.65);

  box-shadow:
    0 22px 46px rgba(91,80,220,.18),
    0 0 0 4px rgba(255,255,255,.76),
    inset 0 1px 0 rgba(255,255,255,.88);
}

.gi-tag-default-symbol {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 142px;
  line-height: 1;
  font-weight: 950;
  text-shadow:
    0 12px 28px rgba(80,70,220,.22),
    0 1px 0 rgba(255,255,255,.48);
}

.gi-tag-default-deco {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff, rgba(255,255,255,.48));
  box-shadow: 0 10px 26px rgba(91,80,220,.16);
}

.gi-tag-default-deco.d1 { left: 48px; top: 44px; background: linear-gradient(135deg,#ff6b8a,#f59e0b); }
.gi-tag-default-deco.d2 { right: 48px; top: 54px; background: linear-gradient(135deg,#38bdf8,#5c63ff); }
.gi-tag-default-deco.d3 { left: 44px; bottom: 52px; background: linear-gradient(135deg,#facc15,#f97316); }
.gi-tag-default-deco.d4 { right: 56px; bottom: 44px; background: linear-gradient(135deg,#22c55e,#10b981); }

/* 中間文字 */
.gi-tag-copy {
  position: relative;
  z-index: 3;
  min-width: 0;
}

.gi-tag-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
  color: var(--tag-main);
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.01em;
}

.gi-tag-kicker svg,
.gi-tag-kicker i {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  stroke-width: 2.6;
}

.gi-tag-title {
  margin: 0 0 20px;
  color: var(--tag-dark);
  font-size: clamp(44px, 4.4vw, 64px);
  line-height: .98;
  font-weight: 950;
  letter-spacing: -.08em;
  text-shadow: 0 1px 0 rgba(255,255,255,.5);
}

.gi-tag-desc {
  max-width: 650px;
  margin: 0 0 22px;
  color: #15213f;
  font-size: 16px;
  line-height: 1.88;
  font-weight: 750;
  letter-spacing: .01em;
}

.gi-tag-meta {
  display: grid;
  gap: 12px;
}

.gi-tag-meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: #111827;
  font-size: 15px;
  font-weight: 850;
}

.gi-tag-meta-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 125px;
  color: #101935;
  font-weight: 900;
}

.gi-tag-meta-label svg {
  width: 18px;
  height: 18px;
  color: var(--tag-main);
  stroke-width: 2.5;
}

.gi-tag-meta-row a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;

  border-radius: 999px;
  border: 1px solid rgba(104,99,255,.18);
  background: rgba(255,255,255,.72);

  color: var(--tag-main);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;

  box-shadow:
    0 7px 15px rgba(67,56,202,.09),
    inset 0 1px 0 rgba(255,255,255,.86);
}

.gi-tag-meta-row a:hover {
  background: #fff;
  transform: translateY(-1px);
}

/* 右側統計卡 */
.gi-tag-stat {
  position: relative;
  z-index: 3;
  align-self: center;

  width: 285px;
  min-height: 260px;
  padding: 25px 17px 17px;

  border-radius: 18px;
  border: 1.5px solid rgba(255,255,255,.72);
  background: rgba(255,255,255,.34);

  box-shadow:
    0 18px 42px rgba(91,80,220,.13),
    inset 0 1px 0 rgba(255,255,255,.85);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.gi-tag-stat-number {
  display: block;
  text-align: center;
  margin: 0;
  color: transparent;
  font-size: 72px;
  line-height: .92;
  font-weight: 950;
  letter-spacing: -.045em;
  background: linear-gradient(180deg, #736bff 0%, #4b4df4 54%, #5c63ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 14px 22px rgba(80,70,220,.16);
}

.gi-tag-stat-title {
  display: block;
  text-align: center;
  margin: 9px 0 14px;
  color: #101935;
  font-size: 19px;
  line-height: 1.1;
  font-weight: 900;
}

.gi-tag-feature-list {
  display: grid;
  gap: 9px;
}

.gi-tag-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 43px;
  padding: 0 14px;
  border-radius: 9px;
  border: 1px solid rgba(91,80,220,.10);
  background: rgba(255,255,255,.72);
  color: #17213d;
  font-size: 15px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.78);
}

.gi-tag-feature .emoji {
  width: 22px;
  text-align: center;
  font-size: 18px;
  flex: 0 0 22px;
}

/* 主題色，可依標籤類型微調 */
.tag-theme-default,
.tag-theme-craft {
  --tag-main: #5c63ff;
  --tag-main-2: #8b5cf6;
  --tag-soft: rgba(92,110,248,.16);
  --tag-soft-2: rgba(139,92,246,.18);
}

/* =========================================================
   RWD
========================================================= */

@media (max-width: 1280px) {
  .gi-tag-hero {
    grid-template-columns: 245px minmax(0, 1fr) 265px;
    gap: 26px;
    padding-inline: 54px;
  }

  .gi-tag-art--collage,
  .gi-tag-hero--icon .gi-tag-art,
  .gi-tag-hero--stack .gi-tag-art {
    width: 245px;
  }

  .gi-tag-hero--stack .gi-tag-art {
    height: 245px;
  }

  .gi-tag-stack-card {
    width: 174px;
    height: 215px;
  }

  .gi-tag-stat {
    width: 265px;
  }

  .gi-tag-title {
    font-size: clamp(40px, 4.4vw, 56px);
  }
}

@media (max-width: 1100px) {
  .gi-tag-hero {
    min-height: 0;
    grid-template-columns: 190px minmax(0, 1fr);
    grid-template-areas:
      "art copy"
      "stat stat";
    gap: 22px 24px;
    padding: 24px;
  }

  .gi-tag-art {
    grid-area: art;
  }

  .gi-tag-art--collage,
  .gi-tag-hero--icon .gi-tag-art {
    width: 190px;
  }

  .gi-tag-hero--stack .gi-tag-art {
    width: 190px;
    height: 190px;
  }

  .gi-tag-stack-card {
    width: 135px;
    height: 165px;
    border-radius: 18px;
  }

  .gi-tag-copy {
    grid-area: copy;
  }

  .gi-tag-stat {
    grid-area: stat;
    width: 100%;
    min-height: auto;
    padding: 15px;
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
  }

  .gi-tag-stat-number {
    font-size: 46px;
  }

  .gi-tag-stat-title {
    margin: 5px 0 0;
    font-size: 15px;
  }

  .gi-tag-feature-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gi-tag-feature {
    justify-content: center;
    text-align: center;
  }

  .gi-tag-mark {
    display: none;
  }

  .gi-tag-default-symbol {
    font-size: 98px;
  }
}

@media (max-width: 720px) {
  .gi-tag-hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "art"
      "copy"
      "stat";
    padding: 16px;
    border-radius: 20px;
    gap: 16px;
  }

  .gi-tag-art--collage,
  .gi-tag-hero--icon .gi-tag-art {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 18px;
  }

  .gi-tag-hero--stack .gi-tag-art {
    width: 100%;
    height: 210px;
  }

  .gi-tag-stack-card {
    width: 42%;
    height: 190px;
  }

  .gi-tag-stack-card:nth-child(1) { left: 8%; }
  .gi-tag-stack-card:nth-child(2) { left: 30%; }
  .gi-tag-stack-card:nth-child(3) { left: 52%; }

  .gi-tag-kicker {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .gi-tag-kicker svg,
  .gi-tag-kicker i {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }

  .gi-tag-title {
    margin-bottom: 10px;
    font-size: 34px;
    letter-spacing: -.06em;
  }

  .gi-tag-desc {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .gi-tag-meta {
    gap: 10px;
  }

  .gi-tag-meta-row {
    gap: 8px;
    font-size: 13px;
  }

  .gi-tag-meta-label {
    width: 100%;
    min-width: 0;
  }

  .gi-tag-meta-row a {
    min-height: 32px;
    padding: 0 11px;
    font-size: 12.5px;
  }

  .gi-tag-stat {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
    border-radius: 16px;
  }

  .gi-tag-stat-number {
    font-size: 42px;
  }

  .gi-tag-feature-list {
    grid-template-columns: 1fr;
  }

  .gi-tag-feature {
    min-height: 38px;
    justify-content: flex-start;
    font-size: 13px;
  }

  .gi-tag-dot-left,
  .gi-tag-dot-right {
    opacity: .38;
  }

  .gi-tag-default-symbol {
    font-size: 104px;
  }
}
