	/* Home */
	.home-title { font-size: 38px; font-weight: 900; letter-spacing: -1px; margin: 4px 0 26px; }
	.home-section { margin-bottom: 38px; }
	.home-section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 14px; }
	.home-section-head h2 { font-size: 22px; font-weight: 800; letter-spacing: -.3px; }
	.home-section-head .see-all { font-size: 13px; color: var(--muted); cursor: pointer; font-weight: 700;
		text-transform: uppercase; letter-spacing: .6px; }
	.home-section-head .see-all:hover { color: var(--accent); }
	.home-section-head .see-all .ar { display: inline-block; margin-left: 4px; transition: transform .12s; }
	.home-section-head .see-all:hover .ar { transform: translateX(3px); }

	/* Home hero (welcome banner) */
	.hero { display: flex; align-items: center; gap: 18px; margin-bottom: 34px; padding: 22px 24px;
		border: 1px solid var(--border); border-radius: 18px;
		background: linear-gradient(120deg, var(--accent-soft), transparent 62%), var(--bg2); }
	.hero-av { width: 64px; height: 64px; border-radius: 16px; object-fit: cover; background: #0a0b0d; flex: 0 0 auto; }
	.hero-av.ph { display: flex; align-items: center; justify-content: center; background: var(--accent);
		color: #fff; font-weight: 800; font-size: 26px; letter-spacing: -1px; }
	.hero-copy { min-width: 0; }
	.hero-greet { font-size: 26px; font-weight: 800; letter-spacing: -.4px; }
	.hero-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 8px;
		font-size: 13.5px; color: var(--muted); }
	.hero-stat { font-family: var(--mono); font-size: 12px; display: inline-flex; align-items: center; gap: 7px; }
	.hero-stat .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--up); box-shadow: 0 0 7px var(--up); }
	.hero-badge { font-family: var(--mono); font-size: 11px; letter-spacing: .5px; padding: 4px 9px; border-radius: 7px; }
	.hero-badge.owns { color: var(--up); background: rgba(45,212,167,.12); }
	.hero-badge.no { color: var(--down); background: rgba(242,85,90,.10); }
	.hero-actions { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
	.hero-btn { background: var(--card); color: var(--text); border: 1px solid var(--border); border-radius: 10px;
		font-weight: 700; font-size: 13px; padding: 0 16px; height: 38px; cursor: pointer; transition: background .12s; }
	.hero-btn:hover { background: var(--card-hover); }

	/* "Friends are playing" — avatar stack on the thumbnail */
	.fg-friends { position: absolute; left: 10px; bottom: 10px; display: flex; align-items: center; gap: 6px; }
	.fg-av { width: 26px; height: 26px; border-radius: 8px; border: 2px solid var(--card); margin-right: -10px;
		background: #0a0b0d; object-fit: cover; }
	.fg-av:last-of-type { margin-right: 4px; }
	.fg-count { font-family: var(--mono); font-size: 10.5px; font-weight: 600; color: #fff;
		background: rgba(0,0,0,.78); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); padding: 4px 9px; border-radius: 7px; }

	/* Home empty state */
	.home-empty { text-align: center; padding: 56px 20px; border: 1px dashed var(--border); border-radius: 18px; }
	.home-empty .he-title { font-size: 19px; font-weight: 800; }
	.home-empty .he-sub { color: var(--muted); font-size: 14px; margin: 8px 0 18px; }

