/* =========================================================
   YupClone Arcade — Main Stylesheet
   Palette: Electric Blue + Cyan on near-black (dark UI)
   ========================================================= */

:root {
	/* Core palette (5 colors): bg, surface, primary blue, cyan accent, text */
	--yc-bg:        #0a0e1a;   /* near-black navy */
	--yc-surface:   #121829;   /* card surface */
	--yc-surface-2: #1a2238;   /* raised surface */
	--yc-border:    #232c45;
	--yc-primary:   #2f6bff;   /* electric blue */
	--yc-primary-2: #1e54e6;
	--yc-accent:    #22d3ee;   /* cyan */
	--yc-text:      #eaf0ff;   /* near-white */
	--yc-muted:     #9aa7c7;   /* muted blue-gray */
	--yc-hot:       #ff5a5f;
	--yc-new:       #22c55e;

	--yc-radius:    14px;
	--yc-radius-sm: 10px;
	--yc-shadow:    0 10px 30px -12px rgba(0,0,0,.6);
	--yc-shadow-glow: 0 0 0 1px rgba(47,107,255,.4), 0 12px 28px -10px rgba(47,107,255,.45);
	--yc-container: 1650px;

	--yc-font-head: 'Poppins', system-ui, sans-serif;
	--yc-font-body: 'Inter', system-ui, sans-serif;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--yc-bg);
	color: var(--yc-text);
	font-family: var(--yc-font-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

a { color: var(--yc-accent); text-decoration: none; text-transform: capitalize; }
a:hover { color: var(--yc-text); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 { font-family: var(--yc-font-head); line-height: 1.2; margin: 0 0 .5em; color: var(--yc-text); }

.container { width: 100%; max-width: var(--yc-container); margin: 0 auto; /* padding: 0 20px; */  }

.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; overflow: hidden;
	clip: rect(1px,1px,1px,1px); white-space: nowrap;
}
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus {
	left: 12px; top: 12px; z-index: 1000; background: var(--yc-primary);
	color: #fff; padding: 10px 16px; border-radius: var(--yc-radius-sm);
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	font-family: var(--yc-font-head); font-weight: 600; font-size: 15px;
	padding: 12px 22px; border-radius: 999px; border: 1px solid transparent;
	cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn--lg { padding: 15px 30px; font-size: 16px; }
.btn--primary { background: var(--yc-primary); color: #fff; box-shadow: var(--yc-shadow-glow); }
.btn--primary:hover { background: var(--yc-primary-2); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--yc-text); border-color: var(--yc-border); }
.btn--ghost:hover { border-color: var(--yc-accent); color: var(--yc-accent); }

/* ---------- Header ---------- */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(10,14,26,.82); backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--yc-border);
	transition: box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 24px -16px rgba(0,0,0,.8); }
.site-header__inner { display: flex; align-items: center; gap: 24px; height: 68px; }

.site-logo, .custom-logo-link { display: inline-flex; align-items: center; gap: 10px; }
.site-logo__mark {
	width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center;
	font-family: var(--yc-font-head); font-weight: 800; color: #fff;
	background: linear-gradient(135deg, var(--yc-primary), var(--yc-accent));
}
.site-logo__text { font-family: var(--yc-font-head); font-weight: 700; font-size: 20px; color: var(--yc-text); }

.main-navigation { margin-left: auto; }
.nav-menu { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav-menu li { position: relative; }
.nav-menu a {
	display: block; padding: 9px 14px; border-radius: var(--yc-radius-sm);
	color: var(--yc-muted); font-weight: 500; font-size: 15px; transition: color .15s, background .15s;
}
.nav-menu a:hover, .nav-menu .current-menu-item > a { color: var(--yc-text); background: var(--yc-surface-2); }

/* Submenus */
.nav-menu ul.sub-menu {
	position: absolute; top: 100%; left: 0; min-width: 200px; list-style: none;
	margin: 8px 0 0; padding: 8px; background: var(--yc-surface-2);
	border: 1px solid var(--yc-border); border-radius: var(--yc-radius);
	box-shadow: var(--yc-shadow); opacity: 0; visibility: hidden; transform: translateY(6px);
	transition: all .18s ease;
}
.nav-menu li:hover > ul.sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.header-actions { display: flex; align-items: center; gap: 8px; }
.header-search-toggle {
	display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; justify-content: center;
	background: var(--yc-surface-2); color: var(--yc-text); border: 1px solid var(--yc-border); cursor: pointer;
}
.header-search-toggle:hover { color: var(--yc-accent); border-color: var(--yc-accent); }

.header-search { border-top: 1px solid var(--yc-border); padding: 16px 0; background: var(--yc-surface); }

.menu-toggle { display: none; }

/* ---------- Search form ---------- */
.search-form__field {
	display: flex; align-items: center; gap: 10px; background: var(--yc-surface-2);
	border: 1px solid var(--yc-border); border-radius: 999px; padding: 6px 6px 6px 16px;
}
.search-form__field:focus-within { border-color: var(--yc-accent); }
.search-form__icon { color: var(--yc-muted); flex: none; }
.search-field {
	flex: 1; background: transparent; border: 0; color: var(--yc-text);
	font-size: 15px; padding: 8px 0; outline: none;
}
.search-field::placeholder { color: var(--yc-muted); }
.search-submit {
	background: var(--yc-primary); color: #fff; border: 0; border-radius: 999px;
	padding: 9px 20px; font-weight: 600; cursor: pointer;
}
.search-submit:hover { background: var(--yc-primary-2); }

/* ---------- Hero ---------- */
.hero {
	position: relative; overflow: hidden; padding: 72px 0 64px; text-align: center;
	background:
		radial-gradient(60% 120% at 50% -10%, rgba(47,107,255,.22), transparent 60%),
		radial-gradient(40% 80% at 90% 10%, rgba(34,211,238,.14), transparent 60%);
	border-bottom: 1px solid var(--yc-border);
}
.hero__eyebrow {
	display: inline-block; font-family: var(--yc-font-head); font-weight: 600; letter-spacing: .12em;
	text-transform: uppercase; font-size: 30px; color: var(--yc-accent);
	background: rgba(34,211,238,.1); border: 1px solid rgba(34,211,238,.25);
	padding: 10px 30px; border-radius: 25%; margin: 0 0 18px;
}
.hero__title { font-size: clamp(1.5rem, 5vw, 1.4rem); font-weight: 800;
	 /* max-width: 18ch;  */
	 margin: 0 auto .5em; text-wrap: balance; }
.hero__subtitle { color: var(--yc-muted); font-size: clamp(1rem, 2vw, 1.0rem); max-width: 56ch; margin: 0 auto 28px; text-wrap: pretty; }
.hero__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Category strip ---------- */
.category-strip { padding: 18px 0; border-bottom: 1px solid var(--yc-border); background: var(--yc-bg); }
.category-strip__scroll { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 10px; scrollbar-width: thin; 
	justify-content: center;
 }
.cat-pill {
	flex: none; padding: 9px 18px; border-radius: 999px; font-weight: 600; font-size: 14px;
	background: var(--yc-surface); border: 1px solid var(--yc-border); color: var(--yc-muted);
	white-space: nowrap; transition: all .15s;
}
.cat-pill:hover { color: var(--yc-text); border-color: var(--yc-accent); }
.cat-pill.is-active { background: var(--yc-primary); border-color: var(--yc-primary); color: #fff; }
.cat-pill--all { background: var(--yc-surface-2); }

/* ---------- Sections ---------- */
.front-main, .archive-main { padding: 40px 0 64px!important; margin-bottom: 30px; }
.game-section { margin-bottom: 20px; }
.game-section__head { 
	display: flex;
    margin: 20px 0px;
    gap: 20px;
    align-items: center;
    flex-direction: row;
}

.category-strip_section .category-strip__scroll {
        justify-content: normal;
}

.category-strip_section .category-strip__scroll{
        padding: 10px 0px;
}
.category-strip_section .container{
        padding:unset !important;
}
.category-strip__title,.game-section__title { display: flex; align-items: center; gap: 10px; font-size: 1.0rem; font-weight: 700; margin: 0;  text-transform: capitalize; }
.category-strip__title .dot,.game-section__title .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--yc-primary); box-shadow: 0 0 12px var(--yc-primary); }
.dot--hot { background: var(--yc-hot) !important; box-shadow: 0 0 12px var(--yc-hot) !important; }
.dot--new { background: var(--yc-new) !important; box-shadow: 0 0 12px var(--yc-new) !important; }
.category-strip__more,.game-section__more { font-weight: 600; font-size: 14px; color: var(--yc-primary); font-family: var(--yc-font-body); }
.game-section__more:hover { color: var(--yc-text); }

/* ---------- Game grid + cards ---------- */
.game-grid{
    display:grid;
    gap:16px;
    grid-template-columns:repeat(auto-fill,minmax(180px,1fr));
	/* padding-top: 15px; */
}

.game-grid--featured{
    grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
}

.game-grid--mini{
    grid-template-columns:repeat(auto-fill,minmax(120px,1fr));
    gap:10px;
}

.game-card { position: relative; }
.game-card__link { display: block; border-radius: var(--yc-radius); overflow: hidden; background: var(--yc-surface); border: 1px solid var(--yc-border); transition: transform .18s ease, box-shadow .2s ease, border-color .2s; }
.game-card__link:hover { transform: translateY(-4px); border-color: var(--yc-primary); box-shadow: var(--yc-shadow-glow); }
.game-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--yc-surface-2); }
.game-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.game-card__link:hover .game-card__img { transform: scale(1.06); }
.game-card__img--placeholder { display: grid; place-items: center; background: linear-gradient(135deg, var(--yc-surface-2), var(--yc-surface)); }
.game-card__img--placeholder span { font-family: var(--yc-font-head); font-size: 2.4rem; font-weight: 800; color: var(--yc-primary); }

.game-card__badges { position: absolute; top: 8px; left: 8px; display: flex; gap: 6px; }
.badge { font-family: var(--yc-font-head); font-size: 11px; font-weight: 700; letter-spacing: .05em; padding: 4px 9px; border-radius: 6px; color: #fff; }
.badge--hot { background: var(--yc-hot); }
.badge--new { background: var(--yc-new); }

.game-card__overlay {
	position: absolute; inset: 0;
	display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
	gap: 6px; padding: 16px 12px;
	text-align: center;
	background: linear-gradient(180deg, rgba(10,14,26,0) 35%, rgba(10,14,26,.92) 100%);
	opacity: 0; transform: translateY(6px);
	transition: opacity .2s ease, transform .2s ease;
}
.game-card__link:hover .game-card__overlay,
.game-card__link:focus-visible .game-card__overlay { opacity: 1; transform: translateY(0); }

.game-card__play {
	width: 44px; height: 44px; padding: 0; margin-bottom: 4px;
	display: grid; place-items: center; border-radius: 50%;
	font-family: var(--yc-font-head); font-weight: 700; color: #fff;
	background: var(--yc-primary); box-shadow: var(--yc-shadow-glow);
}

.game-card__title { font-size: 14px; font-weight: 600; margin: 0; color: var(--yc-text); white-space: normal; }
.game-card__meta { display: flex; gap: 10px; justify-content: center; font-size: 12px; color: var(--yc-muted); }
.game-card__rating { color: var(--yc-accent); font-weight: 600; }

/* mini cards (related/sidebar) */
.game-grid--mini .game-card__title { font-size: 12px; }

/* ---------- Archive / breadcrumbs ---------- */
.breadcrumbs { padding: 18px 0 4px; font-size: 13px; color: var(--yc-muted); display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumbs a { color: var(--yc-muted); }
.breadcrumbs a:hover { color: var(--yc-accent); }
.breadcrumbs .sep { opacity: .5; }
.breadcrumbs .current { color: var(--yc-text); }

.archive-header { padding: 28px 0 8px; }
.archive-header__title { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; }
.archive-header__title span { color: var(--yc-accent); }
.archive-header__desc { color: var(--yc-text); max-width: var(--yc-container); }

/* ---------- Pagination ---------- */
.pagination { margin-top: 36px; text-align: center; }
.pagination .nav-links { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.pagination a, .pagination .current {
	display: inline-grid; place-items: center; min-width: 42px; height: 42px; padding: 0 12px;
	border-radius: var(--yc-radius-sm); background: var(--yc-surface); border: 1px solid var(--yc-border);
	color: var(--yc-text); font-weight: 600;
}
.pagination a:hover { border-color: var(--yc-accent); color: var(--yc-accent); }
.pagination .current { background: var(--yc-primary); border-color: var(--yc-primary); color: #fff; }

/* ---------- Single game ---------- */
.single-game { display: grid; grid-template-columns: 1fr; gap: 32px;
	 /* padding: 16px 0 64px; */
	 }
@media (min-width: 980px) { 
	.single-game-page { grid-template-columns: 75% 25%; } 
}

.single-game__title { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; }
.single-game__stats { display: flex; gap: 14px; flex-wrap: wrap; color: var(--yc-muted); font-size: 14px; margin-bottom: 18px; }
.stat { display: inline-flex; align-items: center; gap: 6px; }
.stat--rating { color: var(--yc-accent); font-weight: 600; }
.stat--cat { background: var(--yc-surface-2); padding: 4px 12px; border-radius: 999px; border: 1px solid var(--yc-border); }

/* Player */
.game-player { margin-bottom: 28px; border-radius: var(--yc-radius); overflow: hidden; border: 1px solid var(--yc-border); background: var(--yc-surface); }
.game-player__frame-wrap, .game-player__external, .game-player__placeholder { position: relative; aspect-ratio: 16 / 10; }
.game-player__iframe { width: 100%; height: 100%; border: 0; display: block; }
.game-player__start { width: 100%; height: 100%; padding: 0; border: 0; cursor: pointer; background: var(--yc-surface-2); position: relative; }
.game-player__poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.game-player__play-btn {
	position: absolute; inset: 0; margin: auto; width: max-content; height: max-content;
	display: flex; flex-direction: column; align-items: center; gap: 8px;
	color: #fff; font-family: var(--yc-font-head); font-weight: 700; font-size: 18px; z-index: 2;
}
.game-player__play-btn svg { background: var(--yc-primary); border-radius: 50%; padding: 5px; box-shadow: var(--yc-shadow-glow); }
.game-player__external { display: grid; place-items: center; }
.game-player__external .btn { position: relative; z-index: 2; }
.game-player__external::after, .game-player__start::after { content: ""; position: absolute; inset: 0; background: rgba(10,14,26,.45); }
.game-player__external .game-player__poster, .game-player__start .game-player__poster { z-index: 0; }
.game-player__placeholder { display: grid; place-items: center; color: var(--yc-muted); }

.single-game__controls { margin-top: 28px; padding: 20px; background: var(--yc-surface); border: 1px solid var(--yc-border); border-radius: var(--yc-radius); }
.single-game__controls h2 { font-size: 1.2rem; margin-bottom: 8px; }
.single-game__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.tag-pill { font-size: 13px; padding: 5px 12px; border-radius: 999px; background: var(--yc-surface-2); border: 1px solid var(--yc-border); color: var(--yc-muted); }
.tag-pill:hover { color: var(--yc-accent); border-color: var(--yc-accent); }

/* Sidebar info card */
.single-game__aside { display: flex; flex-direction: column; gap: 24px; }
.info-card { background: var(--yc-surface); border: 1px solid var(--yc-border); border-radius: var(--yc-radius); padding: 18px; }
.info-card__title { font-size: 1.1rem; margin-bottom: 12px; }
.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--yc-border); font-size: 14px; }
.info-list li:last-child { border-bottom: 0; }
.info-list span { color: var(--yc-muted); }

/* ---------- Content (entry) ---------- */
.entry-content { color: #cdd6f0; line-height: 1.75; }
.entry-content p { margin: 0 0 1.1em; }
.entry-content h2, .entry-content h3 { margin-top: 1.4em; }
.entry-content a { color: var(--yc-accent);
	 /* text-decoration: underline;  */
}
/* .entry-content img { border-radius: var(--yc-radius); } */
.entry-content blockquote { border-left: 3px solid var(--yc-primary); padding-left: 16px; color: var(--yc-muted); margin: 1.2em 0; }
.entry-content code { background: var(--yc-surface-2); padding: 2px 6px; border-radius: 6px; font-size: .9em; }

.category-content,.seo-content { margin-top: 16px; padding: 28px; background: var(--yc-surface); border: 1px solid var(--yc-border); border-radius: var(--yc-radius); }

/* ---------- Blog / posts ---------- */
.with-sidebar { display: grid; grid-template-columns: 1fr; gap: 36px; padding: 24px 0 64px; }
@media (min-width: 920px) { 
	/* .with-sidebar { grid-template-columns: minmax(0,1fr) 300px; } */
 }
.post-list { display: grid; gap: 24px; }
.post-card { display: grid; grid-template-columns: 1fr; gap: 0; background: var(--yc-surface); border: 1px solid var(--yc-border); border-radius: var(--yc-radius); overflow: hidden; }
@media (min-width: 600px) { .post-card { grid-template-columns: 280px 1fr; } }
.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 20px; }
.post-card__meta { display: flex; gap: 12px; font-size: 13px; color: var(--yc-muted); margin-bottom: 8px; }
.post-card__title { font-size: 1.3rem; margin: 0 0 8px; }
.post-card__title a { color: var(--yc-text); }
.post-card__title a:hover { color: var(--yc-accent); }
.post-card__excerpt { color: var(--yc-muted); margin-bottom: 12px; }
.post-card__more { font-weight: 600; color: var(--yc-accent); }

.single-post, .page-article { background: var(--yc-surface); border: 1px solid var(--yc-border); border-radius: var(--yc-radius); padding: 28px;  margin-bottom: 30px; }
.single-post__title, .page-article__title { font-size: clamp(1.6rem, 4vw, 2.4rem); }
.single-post__meta { display: flex; gap: 14px; color: var(--yc-muted); font-size: 14px; margin-bottom: 18px; }
.single-post__thumb img, .page-article__thumb img { border-radius: var(--yc-radius); margin-bottom: 20px; }

/* ---------- Sidebar widgets ---------- */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.widget { background: var(--yc-surface); border: 1px solid var(--yc-border); border-radius: var(--yc-radius); padding: 18px; }
.widget-title { font-size: 1.05rem; margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--yc-border); }
.widget ul { list-style: none; margin: 0; padding: 0; }
.widget ul li { padding: 7px 0; border-bottom: 1px solid var(--yc-border); }
.widget ul li:last-child { border-bottom: 0; }
.widget a { color: var(--yc-muted); }
.widget a:hover { color: var(--yc-accent); }

.popular-list li { display: flex; }
.popular-list a { display: flex; gap: 10px; align-items: center; }
.popular-list__thumb { width: 56px; height: 42px; border-radius: 8px; object-fit: cover; flex: none; }
.popular-list__title { font-size: 14px; color: var(--yc-text); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--yc-border); background: var(--yc-surface); 
	/* margin-top: 40px; */
 }
.site-footer__top { display: grid; grid-template-columns: 1fr; gap: 32px; padding: 48px 0 32px; }
@media (min-width: 820px) { .site-footer__top { grid-template-columns: 1.2fr 2fr; } }
.site-footer__about p { color: var(--yc-muted); margin: 14px 0 18px; max-width: 42ch; }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link { font-size: 13px; padding: 7px 14px; border-radius: 999px; background: var(--yc-surface-2); border: 1px solid var(--yc-border); color: var(--yc-muted); }
.social-link:hover { color: var(--yc-accent); border-color: var(--yc-accent); }
.site-footer__widgets { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (min-width: 600px) { .site-footer__widgets { grid-template-columns: repeat(4, 1fr); } }
.footer-column .widget-title { font-size: .95rem; }
.footer-column ul { list-style: none; margin: 0; padding: 0; }
.footer-column li { padding: 5px 0; }
.footer-column a { color: var(--yc-muted); font-size: 14px; }
.footer-column a:hover { color: var(--yc-accent); }
.site-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 20px 0; border-top: 1px solid var(--yc-border); }
.copyright { color: var(--yc-muted); font-size: 14px; margin: 0; }
.footer-menu { display: block; gap: 18px; list-style: none; margin: 0; padding: 0; }
.footer-menu a { color: var(--yc-muted); font-size: 14px; }
.footer-menu a:hover { color: var(--yc-accent); }

/* ---------- 404 ---------- */
.error-404 { padding: 60px 0; text-align: center; }
.error-404__code { font-family: var(--yc-font-head); font-weight: 800; font-size: clamp(4rem, 14vw, 9rem); line-height: 1; background: linear-gradient(135deg, var(--yc-primary), var(--yc-accent)); -webkit-background-clip: text; background-clip: text; color: transparent; margin: 0; }
.error-404__title { font-size: clamp(1.4rem, 4vw, 2rem); }
.error-404__text { color: var(--yc-muted); max-width: 50ch; margin: 0 auto 24px; }
.error-404__search { max-width: 440px; margin: 0 auto 24px; }
.error-404__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }

/* ---------- Empty state ---------- */
.empty-state { text-align: center; padding: 60px 20px; background: var(--yc-surface); border: 1px dashed var(--yc-border); border-radius: var(--yc-radius); }
.empty-state h2 { font-size: 1.4rem; }
.empty-state p { color: var(--yc-muted); }

/* ---------- Comments ---------- */
.comments-area { margin-top: 40px; padding: 24px; background: var(--yc-surface); border: 1px solid var(--yc-border); border-radius: var(--yc-radius); }
.comments-title { font-size: 1.3rem; margin-bottom: 16px; }
.comment-list { list-style: none; margin: 0 0 24px; padding: 0; }
.comment-list ol { list-style: none; }
.comment-body { padding: 14px 0; border-bottom: 1px solid var(--yc-border); }
.comment-author { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.comment-author img { border-radius: 50%; }
.comment-metadata { font-size: 12px; color: var(--yc-muted); }
.comment-respond { margin-top: 20px; }
.comment-form label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 14px; }
.comment-form input[type=text], .comment-form input[type=email], .comment-form input[type=url], .comment-form textarea {
	width: 100%; background: var(--yc-surface-2); border: 1px solid var(--yc-border); color: var(--yc-text);
	border-radius: var(--yc-radius-sm); padding: 12px 14px; margin-bottom: 14px; font-family: inherit; font-size: 15px;
}
.comment-form input:focus, .comment-form textarea:focus { outline: none; border-color: var(--yc-accent); }

/* ---------- Mobile nav ---------- */
@media (max-width: 880px) {
	.menu-toggle {
		display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
		background: var(--yc-surface-2); border: 1px solid var(--yc-border); cursor: pointer; position: relative;
	}
	.menu-toggle__bar, .menu-toggle__bar::before, .menu-toggle__bar::after {
		content: ""; display: block; width: 18px; height: 2px; background: var(--yc-text); border-radius: 2px; position: relative;
	}
	.menu-toggle__bar::before { position: absolute; top: -6px; }
	.menu-toggle__bar::after { position: absolute; top: 6px; }
	.main-navigation { margin-left: auto; position: static; }
	.nav-menu {
		position: absolute; top: 68px; left: 0; right: 0; flex-direction: column; align-items: stretch;
		gap: 2px; background: var(--yc-surface); border-bottom: 1px solid var(--yc-border); padding: 12px;
		display: none; box-shadow: var(--yc-shadow);
	}
	.main-navigation.is-open .nav-menu { display: flex; }
	.nav-menu ul.sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; margin: 4px 0 4px 16px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	* { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
