:root{
  --bg: #ffffff;
  --text: #0b1220;
  --muted: rgba(15,23,42,.64);
  --line: rgba(15,23,42,.10);
  --line2: rgba(255,255,255,.34);

  --card: rgba(255,255,255,.78);
  --card2: rgba(255,255,255,.90);

  --shadow: 0 10px 30px rgba(15,23,42,.10);
  --shadow2: 0 18px 60px rgba(15,23,42,.14);
  --shadow3: 0 26px 90px rgba(15,23,42,.18);

  --radius: 18px;
  --radius2: 22px;

  --brand: #2563eb;
  --brand2: #7c3aed;
  --mint: #10b981;
  --amber: #f59e0b;
  --rose: #fb7185;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

.cg-bg{
  position: fixed;
  inset: 0;
  z-index: -1;
}

.cg-bg-aurora{
  position:absolute;
  filter: blur(30px);
  opacity: .55;
  border-radius: 999px;
  transform: translateZ(0);
}

.cg-bg-aurora.a1{
  width: 820px;
  height: 420px;
  left: -180px;
  top: -140px;
  background: radial-gradient(circle at 30% 30%, rgba(37,99,235,.38), transparent 60%),
              radial-gradient(circle at 70% 60%, rgba(124,58,237,.28), transparent 62%);
}

.cg-bg-aurora.a2{
  width: 820px;
  height: 520px;
  right: -220px;
  top: 60px;
  background: radial-gradient(circle at 40% 40%, rgba(16,185,129,.22), transparent 62%),
              radial-gradient(circle at 70% 70%, rgba(37,99,235,.22), transparent 62%);
}

.cg-bg-aurora.a3{
  width: 900px;
  height: 560px;
  left: 10%;
  bottom: -260px;
  background: radial-gradient(circle at 30% 30%, rgba(251,113,133,.18), transparent 62%),
              radial-gradient(circle at 70% 70%, rgba(245,158,11,.14), transparent 62%);
}

.cg-bg-noise{
  position:absolute;
  inset:0;
  background-image:
    radial-gradient(rgba(15,23,42,.06) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: .10;
}

.cg-shell{
  width: min(1220px, calc(100% - 46px));
  margin: 0 auto;
}

.cg-top{
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15,23,42,.08);
}

.cg-top-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 14px 0;
}

.cg-brand{
  display:flex;
  align-items:center;
  gap: 12px;
  text-decoration:none;
  color: inherit;
  min-width: 0;
}

.cg-brand-logo{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, rgba(37,99,235,.16), rgba(124,58,237,.12));
  border: 1px solid rgba(37,99,235,.16);
  box-shadow: 0 10px 30px rgba(37,99,235,.10);
}

.cg-brand-logo i{
  color: rgba(37,99,235,.95);
  font-size: 18px;
}

.cg-brand-text{
  display:flex;
  flex-direction:column;
  gap: 3px;
  min-width: 0;
}

.cg-brand-name{
  font-weight: 950;
  letter-spacing: -.2px;
  line-height: 1.05;
}

.cg-brand-sub{
  color: var(--muted);
  font-weight: 750;
  font-size: 12.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cg-top-actions{
  display:flex;
  align-items:center;
  gap: 12px;
}

.cg-search{
  position: relative;
  width: min(520px, 42vw);
}

.cg-search-ico{
  position:absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(100,116,139,.95);
  font-size: 14px;
}

.cg-search input{
  width: 100%;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.92);
  border-radius: 999px;
  padding: 12px 14px 12px 40px;
  outline: none;
  box-shadow: 0 8px 26px rgba(15,23,42,.08);
  font-weight: 850;
  color: rgba(15,23,42,.90);
}

.cg-search input:focus{
  border-color: rgba(37,99,235,.30);
  box-shadow: 0 0 0 5px rgba(37,99,235,.10), 0 12px 34px rgba(15,23,42,.10);
}

.cg-tabs{
  display:flex;
  align-items:center;
  gap: 8px;
}

.cg-tab{
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.86);
  border-radius: 999px;
  padding: 10px 12px;
  display:flex;
  align-items:center;
  gap: 8px;
  cursor:pointer;
  font-weight: 950;
  color: rgba(15,23,42,.86);
  box-shadow: 0 8px 26px rgba(15,23,42,.08);
  user-select:none;
}

.cg-tab i{
  color: rgba(15,23,42,.52);
}

.cg-tab.is-on{
  border-color: rgba(37,99,235,.25);
  box-shadow: 0 0 0 5px rgba(37,99,235,.10), 0 14px 40px rgba(15,23,42,.10);
  background: rgba(255,255,255,.96);
}

.cg-tab.is-on i{
  color: rgba(37,99,235,.92);
}

.cg-main{
  padding: 18px 0 34px;
}

.cg-section{
  padding: 16px 0;
}

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

.cg-section-head h2{
  margin:0;
  font-size: 22px;
  letter-spacing: -.3px;
  font-weight: 950;
}

.cg-sub{
  color: var(--muted);
  font-weight: 800;
}

.cg-hero{
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 14px;
  align-items: stretch;
}

.cg-hero-feature{
  position: relative;
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.10);
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(124,58,237,.10));
  box-shadow: var(--shadow3);
  min-height: 340px;
}

.cg-feature-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 500px at 20% 20%, rgba(37,99,235,.35), transparent 60%),
    radial-gradient(1200px 500px at 80% 40%, rgba(124,58,237,.28), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.40), rgba(255,255,255,.70));
}

.cg-feature-cover{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.02);
}

.cg-feature-cover::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.86) 0%, rgba(255,255,255,.60) 46%, rgba(255,255,255,.22) 100%),
    radial-gradient(800px 380px at 74% 34%, rgba(37,99,235,.18), transparent 60%),
    radial-gradient(800px 380px at 74% 74%, rgba(124,58,237,.14), transparent 60%);
}

.cg-feature-inner{
  position: relative;
  height: 100%;
  padding: 18px 18px 16px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap: 14px;
}

.cg-feature-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
}

.cg-feature-kicker{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 10px 30px rgba(15,23,42,.10);
  font-weight: 950;
  color: rgba(15,23,42,.78);
}

.cg-feature-kicker i{
  color: rgba(37,99,235,.92);
}

.cg-feature-badges{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content:flex-end;
}

.cg-badge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 10px;
  font-weight: 950;
  font-size: 12px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 10px 30px rgba(15,23,42,.10);
  color: rgba(15,23,42,.74);
}

.cg-badge b{
  color: rgba(15,23,42,.86);
}

.cg-badge.is-hot{
  background: rgba(245,158,11,.12);
  border-color: rgba(245,158,11,.22);
  color: rgba(154,52,18,.95);
}

.cg-badge.is-new{
  background: rgba(124,58,237,.12);
  border-color: rgba(124,58,237,.22);
  color: rgba(92,33,176,.95);
}

.cg-feature-title{
  margin: 10px 0 6px;
  font-size: 32px;
  letter-spacing: -.6px;
  line-height: 1.03;
  font-weight: 980;
}

.cg-feature-desc{
  margin: 0;
  color: rgba(15,23,42,.70);
  font-weight: 800;
  line-height: 1.45;
  max-width: 62ch;
}

.cg-feature-tags{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.cg-tag{
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(15,23,42,.04);
  border: 1px solid rgba(15,23,42,.08);
  color: rgba(15,23,42,.70);
  font-weight: 900;
  font-size: 12px;
}

.cg-feature-actions{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.cg-btn{
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.88);
  border-radius: 14px;
  padding: 12px 14px;
  display:inline-flex;
  align-items:center;
  gap: 10px;
  cursor:pointer;
  font-weight: 950;
  box-shadow: 0 12px 34px rgba(15,23,42,.10);
  color: rgba(15,23,42,.86);
  text-decoration:none;
}

.cg-btn i{
  color: rgba(15,23,42,.58);
}

.cg-btn-primary{
  background: linear-gradient(180deg, rgba(37,99,235,.16), rgba(37,99,235,.08));
  border-color: rgba(37,99,235,.22);
}

.cg-btn-primary i{
  color: rgba(37,99,235,.92);
}

.cg-btn:active{
  transform: translateY(1px);
}

.cg-hero-side{
  display:grid;
  gap: 14px;
}

.cg-side-card{
  border-radius: var(--radius2);
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow2);
  overflow:hidden;
}

.cg-side-head{
  padding: 12px 12px 10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  border-bottom: 1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.70);
  backdrop-filter: blur(10px);
}

.cg-side-title{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 980;
}

.cg-side-title i{
  color: rgba(15,23,42,.55);
}

.cg-link{
  border: none;
  background: transparent;
  cursor:pointer;
  font-weight: 950;
  color: rgba(37,99,235,.95);
}

.cg-strip{
  margin-top: 14px;
  border-radius: var(--radius2);
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow2);
  padding: 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}

.cg-strip-left{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cg-metric{
  display:flex;
  align-items:center;
  gap: 10px;
  border-radius: 16px;
  padding: 10px 12px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 34px rgba(15,23,42,.10);
}

.cg-metric-ico{
  width: 40px;
  height: 40px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: rgba(37,99,235,.10);
  border: 1px solid rgba(37,99,235,.16);
  color: rgba(37,99,235,.92);
}

.cg-metric-num{
  font-weight: 980;
  letter-spacing: -.2px;
  font-size: 16px;
}

.cg-metric-lbl{
  color: var(--muted);
  font-weight: 850;
  font-size: 12px;
  margin-top: 1px;
}

.cg-chips{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content:flex-end;
}

.cg-chip{
  border-radius: 999px;
  padding: 9px 12px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.86);
  box-shadow: 0 12px 34px rgba(15,23,42,.10);
  font-weight: 950;
  cursor:pointer;
  color: rgba(15,23,42,.74);
  user-select:none;
}

.cg-chip.is-on{
  border-color: rgba(37,99,235,.22);
  box-shadow: 0 0 0 5px rgba(37,99,235,.10), 0 14px 40px rgba(15,23,42,.10);
}

.cg-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.cg-card{
  border-radius: var(--radius2);
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.76);
  box-shadow: var(--shadow2);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height: 290px;
  transform: translateZ(0);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.cg-card:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow3);
  border-color: rgba(37,99,235,.18);
}

.cg-card-cover{
  position: relative;
  height: 150px;
  background: linear-gradient(135deg, rgba(37,99,235,.14), rgba(124,58,237,.12));
  border-bottom: 1px solid rgba(15,23,42,.08);
}

.cg-card-cover img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
  filter: saturate(1.03) contrast(1.02);
}

.cg-card-cover::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.46));
}

.cg-card-badges{
  position:absolute;
  left: 10px;
  top: 10px;
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cg-card-badge{
  border-radius: 999px;
  padding: 7px 10px;
  font-weight: 980;
  font-size: 12px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 10px 30px rgba(15,23,42,.10);
  color: rgba(15,23,42,.74);
}

.cg-card-badge.is-new{
  background: rgba(124,58,237,.12);
  border-color: rgba(124,58,237,.22);
  color: rgba(92,33,176,.95);
}

.cg-card-badge.is-hot{
  background: rgba(245,158,11,.12);
  border-color: rgba(245,158,11,.22);
  color: rgba(154,52,18,.95);
}

.cg-card-body{
  padding: 12px 12px 12px;
  display:flex;
  flex-direction:column;
  gap: 9px;
  flex: 1;
}

.cg-card-title{
  font-weight: 980;
  font-size: 16px;
  letter-spacing: -.2px;
}

.cg-card-desc{
  color: rgba(15,23,42,.66);
  font-weight: 820;
  font-size: 13px;
  line-height: 1.38;
  min-height: 34px;
}

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

.cg-pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 10px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(15,23,42,.03);
  color: rgba(15,23,42,.70);
  font-weight: 950;
  font-size: 12px;
}

.cg-pill i{
  color: rgba(15,23,42,.50);
}

.cg-card-actions{
  display:flex;
  gap: 10px;
  margin-top: 6px;
}

.cg-card-actions .cg-btn{
  flex: 1;
  justify-content:center;
  padding: 11px 12px;
}

.cg-card-actions .cg-btn i{
  color: rgba(15,23,42,.58);
}

.cg-hide{ display:none; }

.cg-top-panels{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.cg-panel{
  border-radius: var(--radius2);
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.76);
  box-shadow: var(--shadow2);
  overflow:hidden;
}

.cg-panel-head{
  padding: 12px;
  border-bottom: 1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.70);
  backdrop-filter: blur(10px);
}

.cg-panel-title{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 980;
}

.cg-panel-title i{
  color: rgba(15,23,42,.55);
}

.cg-panel-sub{
  margin-top: 4px;
  color: var(--muted);
  font-weight: 850;
  font-size: 12.5px;
}

.cg-list{
  padding: 10px 10px 12px;
  display:grid;
  gap: 10px;
}

.cg-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.86);
  box-shadow: 0 12px 34px rgba(15,23,42,.10);
  padding: 10px 10px;
}

.cg-item-left{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 0;
}

.cg-item-ico{
  width: 40px;
  height: 40px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: rgba(37,99,235,.10);
  border: 1px solid rgba(37,99,235,.16);
  color: rgba(37,99,235,.92);
  flex: 0 0 auto;
}

.cg-item-title{
  font-weight: 980;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cg-item-sub{
  color: var(--muted);
  font-weight: 850;
  font-size: 12.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cg-item-right{
  display:flex;
  align-items:center;
  gap: 10px;
}

.cg-count{
  border-radius: 999px;
  padding: 8px 10px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(15,23,42,.03);
  color: rgba(15,23,42,.74);
  font-weight: 980;
  min-width: 68px;
  text-align:center;
}

.cg-skeleton-row{
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.10);
  background:
    linear-gradient(90deg, rgba(15,23,42,.04), rgba(15,23,42,.08), rgba(15,23,42,.04));
  background-size: 240% 100%;
  animation: cgShimmer 1.2s linear infinite;
}

.cg-feature-skeleton{
  padding: 16px;
}

.sk{
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.10);
  background:
    linear-gradient(90deg, rgba(255,255,255,.70), rgba(255,255,255,.92), rgba(255,255,255,.70));
  background-size: 240% 100%;
  animation: cgShimmer 1.2s linear infinite;
}

.sk.sk-title{ height: 36px; width: 52%; }
.sk.sk-line{ height: 14px; width: 82%; margin-top: 12px; }
.sk.sk-actions{ height: 46px; width: 44%; margin-top: 18px; }

@keyframes cgShimmer{
  0%{ background-position: 0% 0%; }
  100%{ background-position: 240% 0%; }
}

.cg-foot{
  padding: 22px 0 38px;
  color: rgba(100,116,139,.95);
  font-weight: 850;
}

.cg-foot-inner{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
}

.cg-dot{
  opacity: .7;
}

/* Modal player */

.cg-modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 250;
}

.cg-modal.is-on{
  display:block;
}

.cg-modal-backdrop{
  position:absolute;
  inset:0;
  background: rgba(15,23,42,.42);
  backdrop-filter: blur(14px);
}

.cg-player{
  position: relative;
  width: min(1200px, calc(100% - 26px));
  margin: 16px auto;
  border-radius: 22px;
  overflow:hidden;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.42);
  box-shadow: 0 40px 120px rgba(15,23,42,.36);
}

.cg-player-head{
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.80);
  backdrop-filter: blur(14px);
}

.cg-player-left{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 0;
}

.cg-player-ico{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: rgba(37,99,235,.10);
  border: 1px solid rgba(37,99,235,.16);
  color: rgba(37,99,235,.92);
  flex: 0 0 auto;
}

.cg-player-meta{
  min-width: 0;
  display:flex;
  flex-direction:column;
  gap: 2px;
}

.cg-player-name{
  font-weight: 980;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cg-player-desc{
  color: var(--muted);
  font-weight: 850;
  font-size: 12.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cg-player-actions{
  display:flex;
  align-items:center;
  gap: 8px;
}

.cg-iconbtn{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.90);
  display:grid;
  place-items:center;
  cursor:pointer;
  box-shadow: 0 12px 34px rgba(15,23,42,.12);
  text-decoration:none;
}

.cg-iconbtn i{
  color: rgba(15,23,42,.72);
  font-size: 15px;
}

.cg-iconbtn-danger{
  background: rgba(220,38,38,.10);
  border-color: rgba(220,38,38,.18);
}
.cg-iconbtn-danger i{
  color: rgba(153,27,27,.95);
}

.cg-player-frame{
  background: #0b1220;
  position: relative;
}

.cg-player-frame::before{
  content:"";
  display:block;
  padding-top: 56.25%;
}

.cg-player-frame iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  background: #0b1220;
}

.cg-player-foot{
  padding: 10px 12px;
  border-top: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(12px);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  color: rgba(100,116,139,.95);
  font-weight: 850;
  font-size: 12.5px;
}

.cg-player-foot-left{
  display:flex;
  align-items:center;
  gap: 10px;
}

.cg-player-foot-left i{
  color: rgba(15,23,42,.55);
}

@media (max-width: 1040px){
  .cg-hero{ grid-template-columns: 1fr; }
  .cg-grid{ grid-template-columns: repeat(2, 1fr); }
  .cg-top-panels{ grid-template-columns: 1fr; }
  .cg-search{ width: min(520px, 70vw); }
}

@media (max-width: 680px){
  .cg-shell{ width: calc(100% - 24px); }
  .cg-top-inner{ flex-direction: column; align-items: stretch; }
  .cg-top-actions{ flex-direction: column; align-items: stretch; }
  .cg-search{ width: 100%; }
  .cg-tabs{ justify-content: space-between; }
  .cg-tab span{ display:none; }
  .cg-grid{ grid-template-columns: 1fr; }
  .cg-strip{ flex-direction: column; align-items: stretch; }
  .cg-chips{ justify-content:flex-start; }
  .cg-feature-title{ font-size: 26px; }
  .cg-player{ width: calc(100% - 14px); margin: 10px auto; }
  .cg-player-frame::before{ padding-top: 70vh; }
}

