/* YouTube Thumbnail Grabber */
.ytg-card{display:flex;flex-direction:column;gap:.85rem;padding:1.5rem;background:var(--t-bg);border:1px solid var(--t-border-glass);border-radius:var(--t-radius);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);margin-bottom:1.5rem}
.ytg-input-row{display:flex;gap:.5rem;flex-wrap:wrap}
.ytg-input{flex:1;min-width:220px;padding:.75rem .9rem;font-size:.9rem;border:1.5px solid var(--t-border);border-radius:var(--t-radius-sm);background:var(--bg,#fff);color:var(--text);outline:none;box-sizing:border-box}
.ytg-input:focus{border-color:var(--t-accent);box-shadow:0 0 0 3px var(--t-accent-glow)}
.ytg-btn{padding:.75rem 1.4rem;border:none;border-radius:100px;font-weight:700;font-size:.88rem;cursor:pointer;background:linear-gradient(135deg,var(--t-accent),var(--t-accent-2));color:#fff;transition:transform .25s}
.ytg-btn:hover{transform:translateY(-2px)}
.ytg-btn.secondary{background:var(--t-bg-card);color:var(--text);border:1px solid var(--t-border)}
.ytg-hint{font-size:.78rem;color:var(--text-tertiary)}
.ytg-error{font-size:.82rem;color:#ef4444;font-weight:600}
.ytg-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:.9rem;min-height:200px}
.ytg-item{border:1px solid var(--t-border-glass);border-radius:var(--t-radius);overflow:hidden;background:var(--t-bg-card)}
.ytg-item img{width:100%;aspect-ratio:16/9;object-fit:cover;display:block;background:#000;min-height:140px}
.ytg-item-bar{display:flex;justify-content:space-between;align-items:center;padding:.55rem .75rem;font-size:.76rem;font-weight:600}
.ytg-item-btns{display:flex;gap:.6rem}
.ytg-item-btns a{color:var(--t-accent);text-decoration:none;font-weight:700}
.ytg-item-btns a:hover{text-decoration:underline}
@media(max-width:768px){.ytg-input-row{flex-direction:column}.ytg-btn{width:100%}}
