/*
Theme Name: myleaks
Author: Joris
Description: Thème WordPress – Accueil statique responsive + menu mobile
Version: 3.0
*/

:root{
  --bg:#0b0f16;
  --panel:#0f1624;
  --panel2:#0d1420;
  --text:#e8edf6;
  --muted:#a7b2c7;
  --accent:#ff7a59;
  --accent2:#ffb084;
  --border:rgba(255,255,255,.08);
  --shadow:0 18px 60px rgba(0,0,0,.45);
  --radius:16px;
  --radius2:22px;
  --max:1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 50% -200px, rgba(255,122,89,.18), transparent 60%),
              radial-gradient(900px 500px at 10% 20%, rgba(90,170,255,.12), transparent 55%),
              var(--bg);
  color:var(--text);
}

a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}

/* Top strip */
.topstrip{
  position:sticky; top:0; z-index:50;
  background: linear-gradient(90deg, rgba(255,122,89,.95), rgba(255,176,132,.92));
  color:#1b120f;
  font-weight:600;
  font-size:13px;
  padding:10px 0;
  border-bottom:1px solid rgba(0,0,0,.1);
}
.topstrip .row{
  display:flex; align-items:center; justify-content:flex-end; gap:14px; flex-wrap:wrap;
}
.pill{
  background:rgba(255,255,255,.22);
  border:1px solid rgba(0,0,0,.08);
  padding:6px 10px;
  border-radius:999px;
  display:inline-flex; align-items:center; gap:8px;
  backdrop-filter: blur(6px);
}
.dot{width:8px; height:8px; border-radius:99px; background:#1b120f; opacity:.55}

/* Header / nav */
header{
  position:sticky; top:40px; z-index:40;
  background: rgba(11,15,22,.78);
  backdrop-filter: blur(14px);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; gap:16px;
  padding:16px 0;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:800; letter-spacing:.2px;
}
.logo{
  width:36px; height:36px; border-radius:12px;
  background: linear-gradient(135deg, var(--accent), #ff4d7d);
  display:grid; place-items:center;
  box-shadow: 0 14px 30px rgba(255,122,89,.22);
}
.navlinks{
  display:flex; align-items:center; gap:10px;
  flex:1;
  overflow:auto;
  scrollbar-width:none;
}
.navlinks::-webkit-scrollbar{display:none}
.navlinks a{
  padding:8px 10px;
  border-radius:999px;
  color:var(--muted);
  border:1px solid transparent;
  white-space:nowrap;
  font-weight:600;
  font-size:13px;
  transition:.2s ease;
}
.navlinks a:hover{
  color:var(--text);
  background:rgba(255,255,255,.04);
  border-color:rgba(255,255,255,.06);
}
.nav-right{
  display:flex; align-items:center; gap:10px;
}
.btn{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  color:var(--text);
  font-weight:700;
  font-size:13px;
  transition:.2s ease;
  cursor:pointer;
}
.btn:hover{background:rgba(255,255,255,.06)}
.btn.primary{
  border-color:rgba(255,122,89,.35);
  background: linear-gradient(135deg, rgba(255,122,89,.9), rgba(255,176,132,.85));
  color:#1b120f;
}
.btn.primary:hover{filter:saturate(1.05) brightness(1.02)}

.burger{
  display:none;
  width:44px; height:44px;
  border-radius:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  color:var(--text);
  cursor:pointer;
}
.burger:active{transform:translateY(1px)}
.burger span{
  display:block; width:18px; height:2px; background:rgba(231,237,246,.85);
  margin:4px auto;
  border-radius:10px;
}

/* Mobile drawer */
.drawer{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  z-index:80;
}
.drawer.is-open{display:block}
.drawer-panel{
  position:absolute;
  top:0; right:0;
  width:min(360px, 92vw);
  height:100%;
  background: rgba(11,15,22,.96);
  border-left:1px solid var(--border);
  backdrop-filter: blur(14px);
  padding:18px;
}
.drawer-header{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding-bottom:12px;
  border-bottom:1px solid var(--border);
  margin-bottom:12px;
}
.drawer-nav{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.drawer-nav a{
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.06);
  background:rgba(255,255,255,.03);
  color:var(--text);
  font-weight:700;
}
.drawer-actions{display:flex; gap:10px; margin-top:14px; flex-wrap:wrap}

/* Hero */
main{padding:28px 0 56px}
.hero{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--border);
  border-radius:var(--radius2);
  padding:26px 22px 22px;
  box-shadow: var(--shadow);
}
.hero h1{
  margin:0 0 8px;
  font-size:22px;
  letter-spacing:.2px;
}
.hero p{
  margin:0 0 18px;
  color:var(--muted);
  line-height:1.5;
  max-width:860px;
  font-size:14px;
}
.searchbar{
  display:flex; gap:10px; align-items:center;
  padding:10px;
  background: rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.08);
  border-radius:999px;
}
.searchbar input{
  flex:1;
  background:transparent;
  border:0;
  outline:none;
  color:var(--text);
  font-size:14px;
  padding:10px 12px;
}
.searchbar input::placeholder{color:rgba(231,237,246,.55)}
.searchbar .btn{padding:12px 16px}

/* Section title */
.section{
  margin-top:22px;
  display:flex; align-items:center; justify-content:space-between; gap:14px;
}
.section h2{
  margin:0;
  font-size:18px;
  display:flex; align-items:center; gap:10px;
}
.section small{color:var(--muted)}
.chips{display:flex; gap:8px; flex-wrap:wrap; justify-content:flex-end}
.chip{
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  cursor:pointer;
  transition:.2s ease;
}
.chip:hover{color:var(--text); background:rgba(255,255,255,.06)}

/* Grid cards */
.grid{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.card{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  box-shadow: 0 14px 38px rgba(0,0,0,.35);
  position:relative;
  min-height:220px;
  transition: transform .15s ease, border-color .15s ease;
}
.card:hover{transform: translateY(-2px); border-color: rgba(255,255,255,.14)}
.thumb{
  position:absolute; inset:0;
  background:
    radial-gradient(700px 280px at 30% 20%, rgba(255,122,89,.22), transparent 60%),
    radial-gradient(500px 250px at 80% 40%, rgba(90,170,255,.18), transparent 55%),
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,0));
  filter:saturate(1.05);
}
.thumb img{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
  opacity:.92;
}
.overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.78) 100%);
}
.meta{
  position:absolute; left:14px; right:14px; bottom:12px;
  display:flex; flex-direction:column; gap:6px;
}
.title{
  font-weight:800;
  font-size:14px;
  line-height:1.2;
  text-shadow: 0 10px 24px rgba(0,0,0,.55);
  overflow:hidden;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
}
.sub{
  display:flex; align-items:center; gap:10px;
  color:rgba(231,237,246,.78);
  font-size:12px;
  font-weight:700;
}
.badge{
  display:inline-flex; align-items:center; gap:6px;
  padding:6px 9px;
  border-radius:999px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  width:max-content;
}

/* Layout helper */
.layout{display:grid; grid-template-columns:1fr; gap:16px; margin-top:14px}

footer{
  border-top:1px solid var(--border);
  padding:22px 0;
  color:var(--muted);
  font-size:13px;
}

/* Active chip state */
.chip.active{
  background: linear-gradient(135deg, rgba(255,122,89,.9), rgba(255,176,132,.85));
  color:#1b120f;
  border-color:rgba(255,122,89,.35);
}

/* Sort Controls */
.sort-controls{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin:18px 0;
}
.sort-btn{
  font-size:13px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  cursor:pointer;
  transition:.2s ease;
  text-decoration:none;
  font-weight:600;
}
.sort-btn:hover{
  color:var(--text);
  background:rgba(255,255,255,.06);
}
.sort-btn.active{
  background: linear-gradient(135deg, rgba(255,122,89,.9), rgba(255,176,132,.85));
  color:#1b120f;
  border-color:rgba(255,122,89,.35);
}

/* Load More Button */
.load-more{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:100%;
  margin:24px 0;
  padding:14px 24px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  color:var(--text);
  font-weight:700;
  font-size:14px;
  cursor:pointer;
  transition:.2s ease;
}
.load-more:hover{
  background:rgba(255,255,255,.06);
}
.load-more:disabled{
  opacity:.5;
  cursor:not-allowed;
}
.loading-spinner{
  width:18px;
  height:18px;
  border:2px solid transparent;
  border-top-color:var(--accent);
  border-radius:50%;
  animation:spin .8s linear infinite;
}
@keyframes spin{
  to{transform:rotate(360deg)}
}

/* Artist Page */
.artist-header{
  display:grid;
  grid-template-columns:200px 1fr;
  gap:24px;
  padding:24px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--border);
  border-radius:var(--radius2);
  margin-bottom:24px;
}
.artist-avatar-wrapper{
  width:200px;
  height:200px;
}
.artist-avatar{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:18px;
  border:2px solid var(--border);
}
.artist-info h1{
  margin:0 0 12px;
  font-size:28px;
}
.artist-bio{
  color:var(--muted);
  line-height:1.6;
  margin-bottom:16px;
  font-size:14px;
}
.artist-stats{
  display:flex;
  gap:16px;
  margin-bottom:16px;
  font-size:14px;
}
.artist-stats .stat{
  display:flex;
  align-items:center;
  gap:6px;
  color:var(--muted);
}
.artist-social{
  display:flex;
  gap:10px;
}
.social-link{
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  font-size:18px;
  transition:.2s ease;
}
.social-link:hover{
  background:rgba(255,255,255,.08);
  transform:translateY(-2px);
}

/* Image Page */
.image-page{
  max-width:900px;
  margin:0 auto;
}
.back-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  font-size:13px;
  font-weight:600;
  margin-bottom:20px;
  transition:.2s ease;
}
.back-btn:hover{
  color:var(--text);
  background:rgba(255,255,255,.06);
}
.image-container{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  background:#000;
  margin-bottom:20px;
}
.image-full{
  width:100%;
  height:auto;
  display:block;
}
.image-actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:20px;
  flex-wrap:wrap;
}
.vote-buttons{
  display:flex;
  gap:10px;
}
.vote-btn{
  display:flex;
  align-items:center;
  gap:8px;
  padding:12px 18px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  color:var(--text);
  font-size:14px;
  font-weight:700;
  cursor:pointer;
  transition:.2s ease;
}
.vote-btn:hover{
  background:rgba(255,255,255,.08);
}
.vote-btn:disabled{
  opacity:.6;
  cursor:not-allowed;
}
.vote-btn.like.active{
  background:rgba(34,197,94,.15);
  border-color:rgba(34,197,94,.4);
  color:#22c55e;
}
.vote-btn.dislike.active{
  background:rgba(239,68,68,.15);
  border-color:rgba(239,68,68,.4);
  color:#ef4444;
}
.vote-icon{
  font-size:18px;
}
.vote-count{
  font-weight:800;
}

.share-buttons{
  display:flex;
  gap:8px;
}
.share-btn{
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  color:var(--text);
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  transition:.2s ease;
  text-decoration:none;
}
.share-btn:hover{
  background:rgba(255,255,255,.08);
  transform:translateY(-2px);
}
.share-btn.twitter:hover{background:rgba(29,161,242,.15)}
.share-btn.facebook:hover{background:rgba(59,89,152,.15)}
.share-btn.copied{
  background:rgba(34,197,94,.15);
  color:#22c55e;
}

.image-info{
  padding:20px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--border);
  border-radius:var(--radius);
  margin-bottom:30px;
}
.image-title{
  margin:0 0 8px;
  font-size:20px;
}
.image-artist{
  margin:0 0 8px;
  color:var(--muted);
  font-size:14px;
}
.image-artist a{
  color:var(--accent);
}
.image-artist a:hover{
  text-decoration:underline;
}
.image-date{
  margin:0;
  color:var(--muted);
  font-size:13px;
}

.related-images{
  margin-top:40px;
}
.related-images h2{
  margin:0 0 16px;
  font-size:18px;
}
.grid-small{
  grid-template-columns: repeat(4, 1fr);
}
.grid-small .card{
  min-height:160px;
}

/* Search Dropdown */
.searchbar{
  position:relative;
}
.search-dropdown{
  position:absolute;
  top:100%;
  left:0;
  right:0;
  margin-top:8px;
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  max-height:400px;
  overflow-y:auto;
  z-index:100;
}
.search-dropdown[hidden]{
  display:none;
}
.search-section{
  padding:12px 0;
  border-bottom:1px solid var(--border);
}
.search-section:last-child{
  border-bottom:0;
}
.search-section-title{
  padding:0 16px 8px;
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  color:var(--muted);
  letter-spacing:.5px;
}
.search-result-item{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 16px;
  transition:.15s ease;
}
.search-result-item:hover,
.search-result-item:focus{
  background:rgba(255,255,255,.04);
  outline:none;
}
.search-result-image{
  width:48px;
  height:48px;
  border-radius:10px;
  object-fit:cover;
}
.search-result-info{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.search-result-title{
  font-weight:600;
  font-size:14px;
}
.search-result-meta{
  font-size:12px;
  color:var(--muted);
}
.search-no-results{
  padding:20px 16px;
  text-align:center;
  color:var(--muted);
  font-size:14px;
}
.search-view-all{
  display:block;
  padding:14px 16px;
  text-align:center;
  font-weight:700;
  font-size:13px;
  color:var(--accent);
  border-top:1px solid var(--border);
  transition:.15s ease;
}
.search-view-all:hover{
  background:rgba(255,122,89,.08);
}

/* Search Results Page */
.search-results-page{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--border);
  border-radius:var(--radius2);
  padding:26px 22px;
}
.search-header{
  margin-bottom:30px;
}
.search-header h1{
  margin:0 0 20px;
  font-size:24px;
}
.search-header .searchbar{
  max-width:600px;
}
.search-section h2{
  margin:0 0 16px;
  font-size:18px;
}
.search-section + .search-section{
  margin-top:40px;
}

/* Category Page */
.category-header{
  text-align:center;
  padding:30px 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--border);
  border-radius:var(--radius2);
  margin-bottom:24px;
}
.category-header h1{
  margin:0 0 12px;
  font-size:28px;
}
.category-description{
  margin:0 0 12px;
  color:var(--muted);
  max-width:600px;
  margin-left:auto;
  margin-right:auto;
  font-size:14px;
}
.category-count{
  margin:0;
  color:var(--muted);
  font-size:13px;
}

/* Pagination */
.pagination{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin:30px 0;
  flex-wrap:wrap;
}
.pagination a,
.pagination span{
  padding:10px 14px;
  border-radius:10px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  font-size:13px;
  font-weight:600;
  transition:.2s ease;
}
.pagination a:hover{
  color:var(--text);
  background:rgba(255,255,255,.06);
}
.pagination .current{
  background: linear-gradient(135deg, rgba(255,122,89,.9), rgba(255,176,132,.85));
  color:#1b120f;
  border-color:rgba(255,122,89,.35);
}

/* 404 Page */
.error-404{
  text-align:center;
  padding:60px 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--border);
  border-radius:var(--radius2);
}
.error-content{
  max-width:500px;
  margin:0 auto;
}
.error-code{
  font-size:120px;
  font-weight:900;
  line-height:1;
  background: linear-gradient(135deg, var(--accent), #ff4d7d);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  margin-bottom:16px;
  display:block;
}
.error-404 h1{
  margin:0 0 12px;
  font-size:28px;
}
.error-message{
  margin:0 0 30px;
  color:var(--muted);
  font-size:15px;
}
.error-actions{
  margin-bottom:30px;
}
.error-search{
  max-width:400px;
  margin:0 auto;
}
.error-search p{
  margin:0 0 12px;
  color:var(--muted);
  font-size:13px;
}

/* Page Content (Legal Pages) */
.page-content{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--border);
  border-radius:var(--radius2);
  padding:30px 26px;
}
.page-header{
  margin-bottom:24px;
  padding-bottom:20px;
  border-bottom:1px solid var(--border);
}
.page-header h1{
  margin:0;
  font-size:28px;
}
.entry-content{
  color:var(--muted);
  line-height:1.7;
  font-size:15px;
}
.entry-content h2,
.entry-content h3,
.entry-content h4{
  color:var(--text);
  margin:24px 0 12px;
}
.entry-content h2{font-size:22px}
.entry-content h3{font-size:18px}
.entry-content h4{font-size:16px}
.entry-content p{
  margin:0 0 16px;
}
.entry-content a{
  color:var(--accent);
}
.entry-content a:hover{
  text-decoration:underline;
}
.entry-content ul,
.entry-content ol{
  margin:0 0 16px;
  padding-left:24px;
}
.entry-content li{
  margin-bottom:8px;
}
.page-footer{
  margin-top:24px;
  padding-top:20px;
  border-top:1px solid var(--border);
}
.edit-link a{
  color:var(--muted);
  font-size:13px;
}
.edit-link a:hover{
  color:var(--text);
}

/* No Results */
.no-results{
  grid-column:1/-1;
  text-align:center;
  padding:40px 20px;
  color:var(--muted);
  font-size:15px;
}

/* Footer */
.footer-content{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:16px;
}
.footer-links{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}
.footer-links a{
  color:var(--muted);
  transition:.15s ease;
}
.footer-links a:hover{
  color:var(--text);
}
.footer-links .sep{
  color:var(--border);
}
.footer-widgets{
  margin-top:20px;
  padding-top:20px;
  border-top:1px solid var(--border);
}
.footer-extra{
  margin-top:16px;
  padding-top:16px;
  border-top:1px solid var(--border);
  color:var(--muted);
  font-size:13px;
  text-align:center;
}
.footer-extra a{
  color:var(--accent);
}
.footer-extra a:hover{
  text-decoration:underline;
}

/* Loading state for grids */
.grid.loading{
  opacity:.5;
  pointer-events:none;
}

/* Accessibility */
.skip-link{
  position:absolute;
  top:-40px;
  left:0;
  background:var(--accent);
  color:#1b120f;
  padding:8px 16px;
  z-index:100;
  font-weight:700;
  border-radius:0 0 8px 0;
}
.skip-link:focus{
  top:0;
}
.screen-reader-text{
  clip:rect(1px, 1px, 1px, 1px);
  clip-path:inset(50%);
  height:1px;
  width:1px;
  margin:-1px;
  overflow:hidden;
  padding:0;
  position:absolute;
}

/* Drawer open state */
.drawer.open{
  display:block;
}

/* Page Templates */
.page-section{
  padding:30px 0;
}
.page-header{
  text-align:center;
  margin-bottom:30px;
}
.page-title{
  font-size:28px;
  font-weight:700;
  margin-bottom:10px;
}
.page-description{
  color:var(--muted);
  font-size:15px;
}
.page-filters{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
  margin-bottom:24px;
  padding:16px;
  background:var(--card);
  border-radius:12px;
  border:1px solid var(--border);
}
.filter-group{
  display:flex;
  align-items:center;
  gap:8px;
}
.filter-group label{
  font-size:13px;
  color:var(--muted);
}
.filter-select{
  background:var(--bg);
  border:1px solid var(--border);
  color:var(--text);
  padding:8px 12px;
  border-radius:8px;
  font-size:14px;
}
.filter-select:focus{
  outline:none;
  border-color:var(--accent);
}
.filter-apply{
  margin-left:auto;
}
.results-info{
  color:var(--muted);
  font-size:13px;
  margin-bottom:16px;
}

/* Page Tabs */
.page-tabs{
  display:flex;
  gap:8px;
  margin-bottom:20px;
  border-bottom:1px solid var(--border);
  padding-bottom:12px;
}
.page-tabs .tab{
  padding:10px 20px;
  border-radius:8px 8px 0 0;
  color:var(--muted);
  font-weight:500;
  text-decoration:none;
  transition:all .2s;
}
.page-tabs .tab:hover{
  color:var(--text);
  background:rgba(255,255,255,.05);
}
.page-tabs .tab.active{
  color:var(--accent);
  background:rgba(255,122,89,.1);
}
.time-filters{
  justify-content:center;
  background:transparent;
  border:none;
  padding:0;
}
.time-filters .chips{
  margin:0;
}

/* Category Cards */
.card-category{
  position:relative;
}
.card-category .category-icon{
  position:absolute;
  top:12px;
  left:12px;
  font-size:32px;
  z-index:2;
  text-shadow:0 2px 8px rgba(0,0,0,.5);
}
.category-stats{
  font-size:12px;
}

/* Video Cards */
.card-video .play-overlay{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  z-index:2;
  opacity:.9;
  transition:all .2s;
}
.card-video:hover .play-overlay{
  opacity:1;
  transform:translate(-50%, -50%) scale(1.1);
}
.card-video .duration-badge{
  position:absolute;
  bottom:8px;
  right:8px;
  background:rgba(0,0,0,.8);
  color:#fff;
  padding:2px 6px;
  border-radius:4px;
  font-size:11px;
  font-weight:600;
  z-index:2;
}
.video-badge{
  display:inline-flex;
  align-items:center;
  gap:4px;
}
.video-badge svg{
  width:12px;
  height:12px;
}

/* Premium Styles */
.premium-header{
  background:linear-gradient(135deg, rgba(255,215,0,.1) 0%, rgba(255,122,89,.1) 100%);
  padding:40px 20px;
  border-radius:16px;
  margin-bottom:30px;
}
.premium-badge{
  display:inline-block;
  background:linear-gradient(135deg, #ffd700 0%, #ff7a59 100%);
  color:#1b120f;
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
  font-weight:700;
  margin-bottom:12px;
}
.premium-card{
  position:relative;
}
.premium-card .premium-indicator{
  position:absolute;
  top:12px;
  right:12px;
  font-size:20px;
  z-index:3;
}
.premium-badge-small{
  background:linear-gradient(135deg, #ffd700 0%, #ff7a59 100%);
  color:#1b120f;
  font-size:10px;
  font-weight:700;
}
.premium-empty{
  text-align:center;
  padding:60px 20px;
}
.premium-empty h3{
  margin-top:16px;
  font-size:20px;
}

/* No Results */
.no-results{
  text-align:center;
  padding:60px 20px;
  color:var(--muted);
}
.no-results-icon{
  font-size:48px;
  margin-bottom:16px;
}
.no-results-hint{
  font-size:13px;
  margin-top:8px;
}

/* Section Titles */
.section-title{
  font-size:18px;
  font-weight:600;
  margin-bottom:16px;
  color:var(--text);
}
.popular-section,
.premium-section{
  margin-bottom:40px;
}

/* Grid Columns */
.columns-3{grid-template-columns: repeat(3, 1fr);}
.columns-4{grid-template-columns: repeat(4, 1fr);}
.columns-5{grid-template-columns: repeat(5, 1fr);}
.columns-6{grid-template-columns: repeat(6, 1fr);}

/* Responsive */
@media (max-width:1100px){
  .grid{grid-template-columns: repeat(3, 1fr);}
  .grid-small{grid-template-columns: repeat(3, 1fr);}
}
@media (max-width:860px){
  .navlinks, .nav-right{display:none}
  .burger{display:inline-block}
  .grid{grid-template-columns: repeat(2, 1fr);}
  .grid-small{grid-template-columns: repeat(2, 1fr);}
  .hero{padding:22px 16px}
  .artist-header{
    grid-template-columns:1fr;
    text-align:center;
  }
  .artist-avatar-wrapper{
    width:150px;
    height:150px;
    margin:0 auto;
  }
  .artist-stats{justify-content:center}
  .artist-social{justify-content:center}
  .image-actions{
    flex-direction:column;
    align-items:stretch;
  }
  .vote-buttons{justify-content:center}
  .share-buttons{justify-content:center}
}
@media (max-width:520px){
  .grid{grid-template-columns: 1fr;}
  .grid-small{grid-template-columns: repeat(2, 1fr);}
  .topstrip .row{justify-content:center}
  .section{flex-direction:column; align-items:flex-start}
  .chips{justify-content:flex-start}
  .sort-controls{justify-content:center}
  .error-code{font-size:80px}
  .footer-content{
    flex-direction:column;
    text-align:center;
  }
}
