/* pagination.css — estilo GDPlayer-like */
.gd-pagination{ display:flex; justify-content:center; align-items:center; gap:8px; padding:18px 0; }
.gd-pagination .pg{ display:inline-flex; min-width:38px; height:38px; align-items:center; justify-content:center; padding:0 12px; border-radius:10px; text-decoration:none; font-weight:700; background: rgba(255,255,255,.06); color:#fff; box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 6px 18px rgba(0,0,0,.25); transition:.15s; }
.gd-pagination .pg:hover{ transform: translateY(-1px); background: rgba(255,255,255,.12); }
.gd-pagination .pg.current{ background: linear-gradient(135deg, #c22 0%, #620909 100%); color:#fff; box-shadow: 0 10px 24px rgba(194,34,34,.38); }
.gd-pagination .pg.disabled{ opacity:.35; pointer-events:none; }
