/* =====================================================================
   THEME: Graffiti / Street Art — 涂鸦街头艺术主题
   Palette: concrete-gray brick background with spray-paint drip splashes in
   hot-pink / electric-yellow / spray-blue. Bold stencil/tag typography,
   brick-wall texture and spray-can splatter, all via pure CSS gradients.
   No external images / fonts / scripts.
   ===================================================================== */
:root {
  --bg-0: #2b2b2e;
  --bg-1: #38383c;
  --brick: #46403f;
  --brick-line: #201f1e;
  --hot-pink: #ff2e9a;
  --electric-yellow: #f7ff2e;
  --spray-blue: #2ec6ff;
  --ink: #f4f2ea;
  --ink-dim: #c7c3ba;
  --panel: rgba(30, 29, 31, .78);
  --panel-brd: rgba(247, 255, 46, .18);
  --font-tag: 'Segoe UI Black', 'Arial Black', 'Segoe UI', sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background-color: var(--bg-0);
  background-image:
    /* brick-wall mortar grid */
    repeating-linear-gradient(0deg, var(--brick-line) 0px, var(--brick-line) 2px, transparent 2px, transparent 34px),
    repeating-linear-gradient(90deg, var(--brick-line) 0px, var(--brick-line) 2px, transparent 2px, transparent 64px),
    linear-gradient(180deg, #302e2f 0%, #29282a 55%, #201f21 100%);
  background-attachment: fixed;
  color: var(--ink);
  line-height: 1.4;
  padding-bottom: 24px;
  overflow-x: hidden;
  position: relative;
}
/* Spray-paint drip splashes overlay, pure CSS */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    radial-gradient(120px 160px at 8% 6%, rgba(255,46,154,.20) 0%, transparent 70%),
    radial-gradient(160px 200px at 88% 14%, rgba(46,198,255,.18) 0%, transparent 70%),
    radial-gradient(140px 180px at 20% 82%, rgba(247,255,46,.14) 0%, transparent 70%),
    radial-gradient(150px 190px at 78% 76%, rgba(255,46,154,.16) 0%, transparent 70%),
    radial-gradient(110px 150px at 50% 45%, rgba(46,198,255,.10) 0%, transparent 70%);
}
/* concrete grain speckle */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    radial-gradient(1.4px 1.4px at 8% 12%, rgba(255,255,255,.10) 0, transparent 100%),
    radial-gradient(1.4px 1.4px at 76% 6%, rgba(255,255,255,.08) 0, transparent 100%),
    radial-gradient(1.4px 1.4px at 42% 28%, rgba(0,0,0,.25) 0, transparent 100%),
    radial-gradient(1.4px 1.4px at 60% 55%, rgba(255,255,255,.08) 0, transparent 100%),
    radial-gradient(1.4px 1.4px at 22% 68%, rgba(0,0,0,.2) 0, transparent 100%),
    radial-gradient(1.4px 1.4px at 90% 40%, rgba(255,255,255,.09) 0, transparent 100%),
    radial-gradient(1.4px 1.4px at 12% 88%, rgba(0,0,0,.22) 0, transparent 100%),
    radial-gradient(1.4px 1.4px at 68% 82%, rgba(255,255,255,.07) 0, transparent 100%);
  opacity: .9;
}
[v-cloak] { display: none; }
a { color: inherit; text-decoration: none; display: block; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
::-webkit-scrollbar { display: none; }

/* ===== Top Bar — spraypainted plank ===== */
.topbar {
  position: static; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  background:
    linear-gradient(115deg, transparent 40%, rgba(255,46,154,.14) 41%, rgba(255,46,154,.14) 44%, transparent 45%),
    var(--bg-1);
  border-bottom: 4px solid var(--electric-yellow);
  box-shadow: 0 3px 0 var(--hot-pink);
}
.topbar-logo {
  font-family: var(--font-tag); font-size: 19px; font-weight: 900; letter-spacing: .01em;
  color: var(--electric-yellow);
  text-shadow: 2px 0 0 var(--hot-pink), -2px 0 0 var(--spray-blue), 0 2px 6px rgba(0,0,0,.5);
  transform: rotate(-2deg); display: inline-block;
}
.topbar-search-btn {
  width: 38px; height: 38px; border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  background: var(--hot-pink); color: var(--bg-0);
  border: 2px solid var(--bg-0);
  transform: rotate(3deg);
  box-shadow: 2px 2px 0 rgba(0,0,0,.4);
}
/* ===== Category Tabs — stencil tag chips ===== */
.cat-tabs {
  position: static; top: 60px; z-index: 30;
  background: rgba(40,38,40,.92); border-bottom: 2px dashed var(--panel-brd);
  overflow-x: auto; white-space: nowrap;
}
.cat-tabs-inner { display: inline-flex; gap: 9px; padding: 12px 16px; }
.cat-tab {
  flex-shrink: 0; padding: 7px 15px; border-radius: 2px;
  background: var(--bg-1); color: var(--ink-dim); font-size: 12px; font-weight: 800; font-family: var(--font-tag);
  border: 2px solid var(--panel-brd); text-transform: uppercase;
}
.cat-tab.active {
  background: var(--spray-blue); color: #0f2530;
  border-color: var(--bg-0);
  box-shadow: 0 0 0 2px var(--electric-yellow) inset, 2px 2px 0 rgba(0,0,0,.4);
  transform: rotate(-1deg);
}
/* ===== Search — marker strip ===== */
.search-bar-wrap {
  position: static; top: 60px; z-index: 30;
  display: flex; gap: 8px; padding: 10px 16px;
  background: rgba(40,38,40,.94); border-bottom: 2px dashed var(--panel-brd);
}
.search-input {
  flex: 1; padding: 10px 14px; border-radius: 3px; border: 2px solid var(--electric-yellow);
  background: var(--bg-0); color: var(--ink); font-size: 14px; font-family: var(--font-body);
}
.search-cancel { font-size: 13px; color: var(--hot-pink); font-weight: 800; padding: 0 4px; font-family: var(--font-tag); }
/* ===== Loading — spraycan cap spin ===== */
.loading-full { display: flex; align-items: center; justify-content: center; padding: 80px 0; }
.loading-ring {
  width: 36px; height: 36px; border-radius: 50%;
  border: 4px solid rgba(255,46,154,.22); border-top-color: var(--electric-yellow); border-right-color: var(--spray-blue);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes recblink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: .15; } }
/* ===== Section spacing ===== */
section[class$="-sec"] { margin-bottom: 34px; }
/* ===== Section Header — spray-tag label ===== */
.sec-hd { display: flex; align-items: center; justify-content: space-between; padding: 20px 16px 12px; }
.sec-label {
  font-size: 16px; font-weight: 900; color: var(--ink); font-family: var(--font-tag);
  text-transform: uppercase; letter-spacing: .02em;
  position: relative; padding: 3px 10px 3px 12px;
  background: linear-gradient(100deg, rgba(255,46,154,.22), rgba(46,198,255,.16));
  border-left: 5px solid var(--hot-pink);
  transform: rotate(-1deg); display: inline-block;
  text-shadow: 1px 1px 0 rgba(0,0,0,.5);
}
.sec-more {
  font-size: 11px; color: var(--bg-0); font-weight: 800; font-family: var(--font-tag); text-transform: uppercase;
  background: var(--electric-yellow); padding: 4px 10px; border-radius: 2px; transform: rotate(2deg);
}
.sec-cnt { font-size: 12px; color: var(--ink-dim); font-family: var(--font-tag); }
/* ===== Featured ===== */
.featured-sec { padding: 14px 16px 0; }

/* ===== Generic responsive icon grid (wheatpaste poster grid) ===== */
.all-grid, .games-grid, .channel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0 16px 8px;
}
@media (min-width: 480px) {
  .all-grid, .games-grid, .channel-grid { grid-template-columns: repeat(6, 1fr); }
}
@media (min-width: 860px) {
  .all-grid, .games-grid, .channel-grid { grid-template-columns: repeat(8, 1fr); }
}
.agcard, .gcard, .channel-card { cursor: pointer; min-width: 0; }
.agcard-img, .gcard-img {
  aspect-ratio: 1/1 !important; width: 100%; height: auto; overflow: hidden;
  border-radius: 4px; border: 2px solid var(--panel-brd); position: relative;
  box-shadow: 2px 2px 0 rgba(0,0,0,.3);
}
.agcard-img img, .gcard-img img, .channel-img img { width: 100%; height: 100%; object-fit: cover; }
.agcard-nm, .gcard-nm, .channel-nm {
  font-size: 11px; margin-top: 5px; text-align: center; color: var(--ink-dim); font-family: var(--font-body);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
/* ===== Load more — stencil button ===== */
.more-wrap, .loadmore-wrap { display: flex; justify-content: center; padding: 18px; }
.more-btn, .loadmore-btn {
  padding: 11px 24px; border-radius: 2px; background: var(--bg-1); color: var(--electric-yellow);
  font-size: 12px; font-weight: 800; border: 2px solid var(--electric-yellow); font-family: var(--font-tag); text-transform: uppercase;
  box-shadow: 3px 3px 0 rgba(0,0,0,.4);
}
/* ===== Filter header ===== */
.filter-hdr { display: flex; align-items: center; gap: 10px; padding: 16px; }
.filter-back { font-size: 12px; color: var(--spray-blue); font-weight: 800; font-family: var(--font-tag); }
.filter-title { flex: 1; font-size: 15px; font-weight: 800; color: var(--ink); font-family: var(--font-tag); }
.filter-cnt { font-size: 12px; color: var(--ink-dim); font-family: var(--font-tag); }
.empty-msg { text-align: center; padding: 60px 0; color: var(--ink-dim); font-size: 13px; font-family: var(--font-body); }
/* ===== Footer — chalk tag ===== */
.site-footer { display: flex; justify-content: center; gap: 10px; padding: 26px 16px; font-size: 12px; color: var(--ink-dim); font-family: var(--font-tag); }
/* ===== Back to top — spray cap button ===== */
.totop-btn {
  position: fixed; right: 16px; bottom: 20px; z-index: 50;
  width: 42px; height: 42px; border-radius: 3px;
  background: var(--hot-pink); color: var(--bg-0); font-size: 17px; font-weight: 900;
  border: 2px solid var(--electric-yellow);
  box-shadow: 3px 3px 0 rgba(0,0,0,.45);
  transform: rotate(-4deg);
}

/* =====================================================================
   14 SECTION LAYOUTS (all distinct, graffiti/street-art skin)
   ===================================================================== */

/* Hero — brick-wall hero with spray-tag title */
.feat-split2 {
  display: flex; border-radius: 4px; overflow: hidden; cursor: pointer; min-height: 160px;
  background:
    repeating-linear-gradient(0deg, rgba(0,0,0,.25) 0px, rgba(0,0,0,.25) 2px, transparent 2px, transparent 26px),
    repeating-linear-gradient(90deg, rgba(0,0,0,.2) 0px, rgba(0,0,0,.2) 2px, transparent 2px, transparent 52px),
    var(--brick);
  border: 3px solid var(--bg-0);
  box-shadow: 4px 4px 0 rgba(0,0,0,.4);
  position: relative;
}
.feat-split2-body { flex: 1; min-width: 0; padding: 18px; display: flex; flex-direction: column; justify-content: center; gap: 7px; }
.feat-split2-badge {
  align-self: flex-start; font-size: 10px; font-weight: 900; background: var(--electric-yellow); color: var(--bg-0);
  padding: 4px 10px; border-radius: 2px; text-transform: uppercase; font-family: var(--font-tag);
  transform: rotate(-3deg); box-shadow: 2px 2px 0 rgba(0,0,0,.4);
}
.feat-split2-title {
  font-size: 21px; font-weight: 900; font-family: var(--font-tag); color: var(--ink);
  text-shadow: 2px 0 0 var(--hot-pink), -2px 0 0 var(--spray-blue);
  transform: rotate(-1deg);
}
.feat-split2-desc { font-size: 12px; color: var(--ink-dim); }
.feat-split2-img { width: 42%; flex-shrink: 0; border-left: 3px solid var(--bg-0); }
.feat-split2-img img { width: 100%; height: 100%; object-fit: cover; }

/* 1) Hot Games — stencil-cutout row (1 big + 4 small) */
.hotmason { display: grid; grid-template-columns: 1.3fr 1fr; gap: 9px; padding: 0 16px; }
.hotmason-item {
  min-width: 0; overflow: hidden; position: relative; cursor: pointer;
  border: 3px solid var(--bg-0); border-radius: 0;
  clip-path: polygon(4% 0%, 100% 0%, 100% 96%, 96% 100%, 0% 100%, 0% 4%);
  box-shadow: 3px 3px 0 rgba(0,0,0,.4);
}
.hotmason-item:first-child { grid-row: span 2; }
.hotmason-img { aspect-ratio: 1/1; }
.hotmason-img img { width: 100%; height: 100%; object-fit: cover; }
.hotmason-nm {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 6px 7px; font-size: 10px; color: var(--ink); font-family: var(--font-tag);
  background: linear-gradient(transparent, rgba(0,0,0,.85)); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hotmason-rec {
  position: absolute; top: 6px; left: 6px; display: flex; align-items: center; gap: 3px;
  font-size: 9px; font-weight: 900; color: var(--bg-0); font-family: var(--font-tag); text-transform: uppercase;
  background: var(--electric-yellow); padding: 2px 6px; border-radius: 2px; transform: rotate(-4deg);
}

/* 2) Spotlight Picks — marker-tag list */
.star-list { display: flex; flex-direction: column; gap: 0; padding: 0 16px; }
.star-item {
  cursor: pointer; padding: 13px 10px; margin-bottom: 8px; min-width: 0;
  background: var(--panel); border-left: 4px solid var(--spray-blue); border-radius: 2px;
}
.star-bullet { color: var(--hot-pink); margin-right: 7px; font-family: var(--font-tag); font-weight: 900; }
.star-name { font-size: 14px; font-weight: 800; color: var(--ink); font-family: var(--font-tag); }
.star-cat {
  font-size: 10px; color: var(--bg-0); margin-left: 8px; font-family: var(--font-tag); text-transform: uppercase;
  background: var(--electric-yellow); padding: 1px 6px; border-radius: 2px;
}
.star-desc { font-size: 12px; color: var(--ink-dim); margin-top: 5px; margin-left: 18px; }

/* 3) New Releases — subway-car horizontal scroll */
.tape-row { display: flex; gap: 12px; padding: 6px 16px 16px; overflow-x: auto; }
.tape-card {
  flex: 0 0 120px; width: 120px; min-width: 0; overflow: hidden; cursor: pointer;
  background: var(--bg-1); border: 3px solid var(--bg-0); border-radius: 3px 3px 10px 10px;
  box-shadow: 3px 3px 0 rgba(0,0,0,.4);
}
.tape-img { aspect-ratio: 4/3; position: relative; }
.tape-img img { width: 100%; height: 100%; object-fit: cover; }
.tape-badge {
  position: absolute; top: 5px; right: 5px; font-size: 8px; font-weight: 900; color: var(--bg-0);
  background: var(--spray-blue); padding: 2px 6px; border-radius: 2px; font-family: var(--font-tag);
}
.tape-nm { font-size: 11px; padding: 7px 8px; color: var(--ink); font-family: var(--font-tag); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* 4) Browse Channels — sticker-bomb circular grid (shares .channel-grid) */
.channel-img {
  aspect-ratio: 1/1 !important; width: 100%; height: auto; overflow: hidden;
  border-radius: 50% !important; border: 3px solid var(--electric-yellow); position: relative;
  box-shadow: 2px 2px 0 rgba(0,0,0,.4);
}
.channel-ch {
  position: absolute; top: 2px; left: 2px; font-size: 8px; font-weight: 900; color: var(--bg-0);
  background: var(--hot-pink); padding: 2px 5px; border-radius: 50%; font-family: var(--font-tag);
}

/* 5) Action — skate-ramp podium */
.podium { display: flex; align-items: flex-end; justify-content: center; gap: 12px; padding: 12px 16px; }
.podium-item { cursor: pointer; text-align: center; min-width: 0; }
.podium-item.p1 { width: 116px; order: 2; }
.podium-item.p2 { width: 86px; order: 1; }
.podium-item.p3 { width: 86px; order: 3; }
.podium-img {
  overflow: hidden; aspect-ratio: 1/1; position: relative;
  border: 3px solid var(--hot-pink); border-radius: 4px 4px 0 0;
  box-shadow: 3px 3px 0 rgba(0,0,0,.4);
}
.podium-item.p1 .podium-img { border-color: var(--electric-yellow); }
.podium-rank {
  position: absolute; top: 4px; left: 4px; font-size: 10px; font-weight: 900; color: var(--bg-0);
  background: var(--spray-blue); padding: 0 6px; border-radius: 2px; font-family: var(--font-tag);
}
.podium-nm { font-size: 11px; margin-top: 6px; font-family: var(--font-tag); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--ink-dim); }
.podium-item::after {
  content: ''; display: block; height: 6px; margin-top: 4px; background: var(--bg-1); border-top: 2px solid var(--panel-brd);
}

/* 6) Puzzle — sticker row */
.polaroid-row { display: flex; gap: 16px; padding: 14px 22px 18px; overflow-x: auto; }
.polaroid {
  flex: 0 0 92px; width: 92px; background: var(--bg-1); padding: 5px; border-radius: 50%;
  border: 3px dashed var(--electric-yellow); cursor: pointer;
}
.polaroid:nth-child(odd) { transform: rotate(-4deg); }
.polaroid:nth-child(even) { transform: rotate(4deg); }
.polaroid-img { aspect-ratio: 1/1; overflow: hidden; border-radius: 50%; }
.polaroid-nm { font-size: 9px; text-align: center; color: var(--ink-dim); margin-top: 5px; font-family: var(--font-tag); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* 7) Kids — chalk bubbles */
.bubble-wrap { display: flex; gap: 13px; padding: 10px 16px 16px; flex-wrap: wrap; }
.bubble-card {
  position: relative; flex: 1 1 26%; min-width: 82px; border-radius: 50%; padding: 10px; text-align: center; cursor: pointer;
  background: var(--panel); border: 3px solid var(--spray-blue);
}
.bubble-img { border-radius: 50%; overflow: hidden; aspect-ratio: 1/1; }
.bubble-nm { font-size: 10px; margin-top: 5px; font-family: var(--font-tag); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--ink-dim); }

/* 8) Sports — spray-drip zigzag */
.zig-list { display: flex; flex-direction: column; gap: 14px; padding: 0 16px; }
.zig-row { display: flex; align-items: center; gap: 13px; cursor: pointer; }
.zig-row.rev { flex-direction: row-reverse; }
.zig-img {
  width: 72px; height: 72px; border-radius: 4px; overflow: hidden; flex-shrink: 0;
  border: 3px solid var(--hot-pink); box-shadow: 2px 4px 0 rgba(0,0,0,.35);
}
.zig-img img { width: 100%; height: 100%; object-fit: cover; }
.zig-body { flex: 1; min-width: 0; }
.zig-row.rev .zig-body { text-align: right; }
.zig-nm { font-size: 14px; font-weight: 800; font-family: var(--font-tag); color: var(--ink); }
.zig-tag {
  font-size: 10px; color: var(--bg-0); font-family: var(--font-tag); text-transform: uppercase;
  background: var(--electric-yellow); padding: 1px 6px; border-radius: 2px;
}
.zig-desc { font-size: 11px; color: var(--ink-dim); margin-top: 4px; }

/* 9) Adventure — poster-wall masonry */
.masonry-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 64px; gap: 9px; padding: 0 16px; }
.masonry-item {
  min-width: 0; overflow: hidden; cursor: pointer; position: relative;
  border: 2px solid var(--bg-0); box-shadow: 2px 2px 0 rgba(0,0,0,.35);
}
.masonry-item img { width: 100%; height: 100%; object-fit: cover; }
.masonry-item:nth-child(3n+1) { grid-row: span 2; }
.masonry-item:nth-child(odd) { transform: rotate(-1deg); }
.masonry-item:nth-child(even) { transform: rotate(1deg); }
.masonry-nm { position: absolute; left: 0; right: 0; bottom: 0; padding: 4px 6px; font-size: 10px; color: var(--ink); font-family: var(--font-tag); background: linear-gradient(transparent, rgba(0,0,0,.82)); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* 10) Racing — boombox banner */
.banner-single {
  position: relative; overflow: hidden; margin: 0 16px; aspect-ratio: 16/8; cursor: pointer;
  border: 3px solid var(--bg-0); border-radius: 10px;
  box-shadow: 4px 4px 0 rgba(0,0,0,.4);
}
.banner-single img { width: 100%; height: 100%; object-fit: cover; }
.banner-ovl { position: absolute; left: 0; right: 0; bottom: 0; padding: 15px; background: linear-gradient(transparent, rgba(0,0,0,.88)); }
.banner-badge {
  display: inline-block; font-size: 10px; font-weight: 900; padding: 3px 9px; border-radius: 2px; margin-bottom: 5px;
  background: var(--spray-blue); color: var(--bg-0); text-transform: uppercase; font-family: var(--font-tag);
  transform: rotate(-2deg);
}
.banner-title { font-size: 17px; font-weight: 900; color: var(--ink); font-family: var(--font-tag); text-shadow: 1px 1px 0 var(--hot-pink); }
.banner-desc { font-size: 12px; color: var(--ink-dim); margin-top: 4px; }

/* 11) Girl — zine-list */
.mag-list { display: flex; flex-direction: column; gap: 9px; padding: 0 16px; }
.mag-row {
  display: flex; gap: 13px; cursor: pointer; padding: 12px; background: var(--panel);
  border: 2px dashed var(--hot-pink); border-radius: 4px;
}
.mag-img { width: 60px; height: 60px; border-radius: 4px; overflow: hidden; flex-shrink: 0; border: 2px solid var(--bg-0); }
.mag-img img { width: 100%; height: 100%; object-fit: cover; }
.mag-body { flex: 1; min-width: 0; }
.mag-nm { font-size: 14px; font-weight: 800; margin-bottom: 3px; font-family: var(--font-tag); color: var(--ink); }
.mag-desc { font-size: 11px; color: var(--ink-dim); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* 12) Arcade — crate-stack */
.stack-row { display: flex; padding: 22px 30px 14px; justify-content: center; }
.stack-card {
  width: 88px; aspect-ratio: 1/1; overflow: hidden; margin-left: -22px;
  box-shadow: 3px 5px 0 rgba(0,0,0,.5); cursor: pointer; border: 3px solid var(--bg-0); min-width: 0; border-radius: 4px;
}
.stack-card:first-child { margin-left: 0; }
.stack-card:nth-child(1) { transform: rotate(-8deg); }
.stack-card:nth-child(2) { transform: rotate(5deg); }
.stack-card:nth-child(3) { transform: rotate(-3deg); }
.stack-card:nth-child(4) { transform: rotate(7deg); }
.stack-card:nth-child(5) { transform: rotate(-5deg); }
.stack-card img { width: 100%; height: 100%; object-fit: cover; }

/* All Games / filtered grid — wheatpaste grid */
.agcard-img, .gcard-img { transform: rotate(0deg); }
.agcard:nth-child(3n+1) .agcard-img, .gcard:nth-child(3n+1) .gcard-img { transform: rotate(-1deg); }
.agcard:nth-child(3n+2) .agcard-img, .gcard:nth-child(3n+2) .gcard-img { transform: rotate(1deg); }
