:root{
  --bg:#ffffff;
  --surface:#ffffff;
  --soft:#f5f5f7;
  --soft-2:#f8f8fa;
  --line:#e9e9ee;
  --text:#24262f;
  --muted:#858a97;
  --muted-2:#a0a5af;
  --accent:#7563b9;
  --accent-soft:#121212;
  --accent-deep:#62529f;
  --shadow:0 10px 28px rgba(24,27,37,.045);
  --radius:9px;
}

*{box-sizing:border-box}
html,body{
  margin:0;
  min-height:100%;
  background:var(--bg);
  color:var(--text);
  font-family:"Source Sans 3",system-ui,-apple-system,sans-serif;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
body{overflow-x:hidden}
a{text-decoration:none;color:inherit}
button,input{font:inherit}
button{cursor:pointer}
img{display:block;max-width:100%}

/* Main listing */
.vp-main{
  width:100%;
  padding:12px 10px 34px;
  transition:margin-left .18s ease,width .18s ease;
}

.vp-contextbar{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  padding:4px 2px 16px;
}
.vp-contextbar span{
  display:block;
  color:#a4a8b2;
  font-size:10px;
  font-weight:800;
  letter-spacing:.09em;
}
.vp-contextbar h1{
  margin:4px 0 0;
  font-size:27px;
  line-height:1;
  letter-spacing:-.035em;
  font-weight:700;
}
.vp-contextbar>b{
  color:#9ca1ab;
  font-size:12px;
  font-weight:600;
}

.vp-masonry{
  columns:6 230px;
  column-gap:10px;
}

.vp-card{
  display:inline-block;
  width:100%;
  break-inside:avoid;
  margin:0 0 16px;
  vertical-align:top;
}

.vp-card-media{
  position:relative;
}

.vp-card-image{
  position:relative;
  display:block;
  overflow:hidden;
  border-radius:var(--radius);
  background:var(--soft-2);
}

.vp-card-image img{
  width:100%;
  height:auto;
  transition:opacity .14s ease,transform .14s ease;
}

.vp-card:hover .vp-card-image img{
  opacity:.99;
  transform:translateY(-1px);
}

.vp-bookmark{
  position:absolute;
  right:8px;
  top:8px;
  z-index:3;
  width:29px;
  height:29px;
  padding:0;
  display:grid;
  place-items:center;
  border:0;
  border-radius:8px;
  background:rgba(22,23,29,.34);
  color:#fff;
  backdrop-filter:blur(7px);
  font-size:12px;
}

.vp-bookmark:hover{
  background:rgba(22,23,29,.5);
}

.vp-bookmark.is-saved{
  background:var(--accent);
}

.vp-card-copy{
  padding:8px 2px 0;
}

.vp-card-title{
  display:block;
  overflow:hidden;
  white-space:nowrap;
  text-overflow:ellipsis;
  font-size:14px;
  line-height:1.2;
  font-weight:600;
  color:#353843;
  letter-spacing:-.008em;
}

.vp-card-meta{
  margin-top:6px;
  display:flex;
  align-items:center;
  gap:11px;
  color:var(--muted-2);
  font-size:10.5px;
  line-height:1;
  min-width:0;
}

.vp-card-meta>span{
  display:inline-flex;
  align-items:center;
  gap:5px;
  white-space:nowrap;
}

.vp-card-author{
  margin-right:auto;
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  color:var(--muted);
}

.vp-mini-avatar{
  width:18px;
  height:18px;
  display:inline-grid;
  place-items:center;
  border-radius:50%;
  background:var(--accent-soft);
  color:var(--accent-deep);
  font-size:8.5px;
  font-weight:800;
  flex:0 0 auto;
}

/* Partner cards are mixed into the same masonry, not isolated blocks. */
.vp-card-partner .vp-card-title{
  color:#30323b;
}

.vp-partner-overlay{
  position:absolute;
  left:8px;
  bottom:8px;
  z-index:2;
  max-width:calc(100% - 48px);
  display:inline-flex;
  align-items:center;
  gap:5px;
  padding:4px 7px;
  border-radius:6px;
  background:rgba(248,248,250,.92);
  color:#5d5f69;
  font-size:9px;
  line-height:1;
  font-weight:700;
  backdrop-filter:blur(8px);
  overflow:hidden;
  white-space:nowrap;
  text-overflow:ellipsis;
}

.vp-partner-overlay i{
  color:var(--accent);
  font-size:8px;
}

.vp-card-meta-partner{
  color:#969ba5;
}

.vp-card-meta-partner .vp-card-author i{
  color:var(--accent);
}

.vp-sponsored{
  margin-left:auto;
  color:#9b91bc;
  font-size:8px;
  font-weight:800;
  letter-spacing:.08em;
}

/* Pagination */
.vp-pagination{
  margin-top:22px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  padding:4px 2px;
  color:#9ca1ab;
  font-size:12px;
}
.vp-pagination a{
  font-weight:700;
  color:#575c68;
}
.vp-pagination a:last-child{text-align:right}

/* Empty + simple states */
.vp-empty{
  margin-top:18px;
  padding:54px 24px;
  border-radius:12px;
  background:#fafafb;
  color:#8e939e;
  text-align:center;
}
.vp-empty h2{
  margin:0 0 8px;
  color:#31343d;
  font-size:22px;
}

.vp-simple-message{
  max-width:700px;
  margin:90px auto;
  padding:20px;
  text-align:center;
}
.vp-simple-message h1{
  margin:0 0 8px;
  font-size:34px;
  line-height:1;
  letter-spacing:-.04em;
}
.vp-simple-message p{
  margin:0 0 14px;
  color:#8f95a3;
  font-size:15px;
}
.vp-simple-message a{
  color:var(--accent-deep);
  font-weight:700;
}

/* Single */
.vp-single{
  max-width:1380px;
  margin:0 auto;
  padding:24px 14px 44px;
  transition:margin-left .18s ease,max-width .18s ease;
}

.vp-single-back{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:14px;
  color:#767b86;
  font-size:12px;
  font-weight:700;
}

.vp-single-card{
  overflow:hidden;
}

.vp-single-image{
  border-radius:12px;
  overflow:hidden;
  background:#f5f5f7;
}

.vp-single-image img{
  max-width:100%;
  height:auto;
  margin:auto;
}

.vp-single-info{
  padding:20px 2px 0;
}

.vp-single-type{
  color:var(--accent);
  font-size:10px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.vp-single-info h1{
  margin:7px 0 12px;
  color:#292c34;
  font-size:34px;
  line-height:1;
  letter-spacing:-.038em;
  font-weight:700;
}

.vp-single-meta{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  color:#9aa0aa;
  font-size:12px;
}

.vp-single-meta>span{
  display:inline-flex;
  align-items:center;
  gap:6px;
}

/* Desktop drawer sits beside the content. */
@media(min-width:900px){
  html.vp-sidebar-boot-open .vp-main,
  body.vp-drawer-open .vp-main{
    width:calc(100% - 270px);
    margin-left:270px;
  }

  html.vp-sidebar-boot-open .vp-single,
  body.vp-drawer-open .vp-single{
    width:calc(100% - 270px);
    max-width:calc(1380px - 40px);
    margin-left:270px;
    margin-right:auto;
  }
}

@media(max-width:1480px){
  .vp-masonry{columns:5 220px}
}

@media(max-width:1180px){
  .vp-masonry{columns:4 200px}
}

@media(max-width:899px){
  body.vp-drawer-open{overflow:hidden}
  .vp-main{padding:9px 7px 26px}
  .vp-masonry{columns:3 160px;column-gap:8px}
  .vp-card{margin-bottom:13px}
  .vp-card-title{font-size:13.5px}
}

@media(max-width:560px){
  .vp-masonry{
    columns:2 145px;
    column-gap:7px;
  }

  .vp-card-copy{padding-top:7px}
  .vp-card-title{font-size:12.5px}
  .vp-card-meta{gap:7px;font-size:9.5px}
  .vp-card-meta>span:last-child:not(.vp-sponsored){display:none}
  .vp-partner-overlay{font-size:8px;padding:4px 6px}
  .vp-single{padding:17px 10px 34px}
  .vp-single-info h1{font-size:28px}
}


/* Velocity Images 0.7.4 — related mixed grid */
.vp-related{
  margin-top:34px;
  padding-top:22px;
  border-top:1px solid var(--line);
}

.vp-related-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin-bottom:15px;
  padding:0 2px;
}

.vp-related-head span{
  display:block;
  color:#a2a6b0;
  font-size:9px;
  line-height:1;
  font-weight:900;
  letter-spacing:.1em;
}

.vp-related-head h2{
  margin:5px 0 0;
  color:#2d3038;
  font-size:24px;
  line-height:1;
  letter-spacing:-.03em;
  font-weight:700;
}

.vp-related-head>b{
  color:#9ba0aa;
  font-size:11px;
  font-weight:700;
}

.vp-related-grid{
  columns:5 205px;
}

@media(max-width:1180px){
  .vp-related-grid{columns:4 190px}
}

@media(max-width:899px){
  .vp-related{
    margin-top:27px;
    padding-top:18px;
  }

  .vp-related-grid{columns:3 155px}
}

@media(max-width:560px){
  .vp-related-grid{columns:2 140px}
  .vp-related-head h2{font-size:21px}
}


/* Velocity Images 0.8.7 — sidebar additions */
.vp-drawer-favorites,
.vp-friend-sites{
  display:block;
  padding-top:13px;
}

.vp-drawer-favorites>span,
.vp-friend-sites>span{
  display:flex;
  align-items:center;
  gap:6px;
}

.vp-drawer-favorites>span b{
  margin-left:auto;
  min-width:18px;
  height:18px;
  padding:0 5px;
  border-radius:9px;
  display:inline-grid;
  place-items:center;
  background:#ececf0;
  color:#747780;
  font-size:8px;
}

.vp-favorites-list{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.vp-favorites-list>em{
  padding:7px 5px 4px;
  color:#a0a3ab;
  font-size:10px;
  font-style:normal;
}

.vp-favorite-row{
  display:flex !important;
  align-items:center;
  gap:8px;
  width:100%;
  min-width:0;
  padding:5px !important;
  border:0 !important;
  background:transparent !important;
}

.vp-favorite-row img{
  width:34px;
  height:34px;
  flex:0 0 34px;
  object-fit:cover;
  border-radius:6px;
  background:#f0f0f2;
}

.vp-favorite-row span{
  min-width:0;
  overflow:hidden;
  white-space:nowrap;
  text-overflow:ellipsis;
  color:#666a73;
  font-size:10.5px;
  font-weight:650;
}

.vp-friend-sites a{
  display:block;
  width:100%;
  margin:0 0 3px;
  border:0;
  background:transparent;
}

/* Single navigation + smaller presentation */
.vp-single{
  max-width:1120px;
}

.vp-single-topnav{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:12px;
  margin:0 0 14px;
  padding:0 2px;
}

.vp-single-topnav a{
  display:inline-flex;
  align-items:center;
  gap:7px;
  color:#777c87;
  font-size:11px;
  font-weight:700;
}

.vp-single-next{
  justify-self:end;
}

.vp-single-back{
  justify-self:center;
  margin:0;
}

.vp-single-card{
  max-width:980px;
  margin:0 auto;
}

.vp-single-image{
  position:relative;
  cursor:zoom-in;
  display:flex;
  justify-content:center;
  border-radius:12px;
  background:#f5f5f7;
}

.vp-single-image img{
  width:auto;
  max-width:100%;
  max-height:78vh;
  object-fit:contain;
}

.vp-lightbox-hint{
  position:absolute;
  right:10px;
  bottom:10px;
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 8px;
  border-radius:7px;
  background:rgba(22,23,29,.45);
  color:#fff;
  font-size:9px;
  font-weight:700;
  backdrop-filter:blur(7px);
  opacity:0;
  transition:opacity .14s ease;
}

.vp-single-image:hover .vp-lightbox-hint{
  opacity:1;
}

.vp-single-taxonomy{
  display:grid;
  grid-template-columns:92px 1fr;
  gap:10px;
  margin-top:15px;
  padding-top:13px;
  border-top:1px solid #eeeeF2;
}

.vp-taxonomy-label{
  display:flex;
  align-items:center;
  gap:6px;
  color:#999da7;
  font-size:9px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.07em;
}

.vp-single-taxonomy>div{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}

.vp-single-taxonomy a{
  padding:5px 8px;
  border-radius:6px;
  background:#f5f5f7;
  color:#686d78;
  font-size:10px;
  font-weight:650;
}

.vp-single-taxonomy a:hover{
  color:#9b506a;
  background:#f8f2f4;
}

/* Related uses all available frontend width. */
.vp-related-full{
  width:100%;
  margin:12px 0 0;
  padding:22px 10px 42px;
  border-top:1px solid var(--line);
}

.vp-related-full .vp-related-head{
  padding-left:2px;
  padding-right:2px;
}

.vp-related-full .vp-related-grid{
  columns:6 210px;
}

@media(min-width:900px){
  html.vp-sidebar-boot-open .vp-related-full,
  body.vp-drawer-open .vp-related-full{
    width:calc(100% - 270px);
    margin-left:270px;
  }
}

@media(max-width:1480px){
  .vp-related-full .vp-related-grid{columns:5 200px}
}

@media(max-width:1180px){
  .vp-related-full .vp-related-grid{columns:4 185px}
}

/* Lightbox */
body.vp-lightbox-open{
  overflow:hidden;
}

.vp-lightbox{
  position:fixed;
  inset:0;
  z-index:1000;
  display:none;
  align-items:center;
  justify-content:center;
  padding:28px 74px 54px;
  background:rgba(12,12,14,.94);
  backdrop-filter:blur(5px);
}

.vp-lightbox.is-open{
  display:flex;
}

.vp-lightbox figure{
  width:min(1500px,calc(100vw - 180px));
  height:calc(100vh - 82px);
  margin:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
}

.vp-lightbox figure img{
  max-width:100%;
  max-height:calc(100vh - 120px);
  width:auto;
  height:auto;
  object-fit:contain;
  box-shadow:0 22px 70px rgba(0,0,0,.35);
}

.vp-lightbox figcaption{
  max-width:900px;
  overflow:hidden;
  white-space:nowrap;
  text-overflow:ellipsis;
  color:#d6d6da;
  font-size:12px;
  font-weight:600;
}

.vp-lightbox-close{
  position:absolute;
  top:18px;
  right:18px;
  width:38px;
  height:38px;
  border:0;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.09);
  color:#fff;
  font-size:15px;
}

.vp-lightbox-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:60px;
  border:0;
  border-radius:9px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:17px;
}

.vp-lightbox-prev{left:18px}
.vp-lightbox-next{right:18px}

.vp-lightbox-nav:disabled{
  opacity:.16;
  cursor:default;
}

.vp-lightbox.is-loading figure{
  opacity:.45;
}

/* Footer */
.vp-footer{
  width:100%;
  border-top:1px solid #ededf1;
  background:#fafafb;
}

.vp-footer-inner{
  min-height:84px;
  padding:19px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}

.vp-footer-copy{
  display:flex;
  flex-direction:column;
  gap:3px;
}

.vp-footer-copy strong{
  color:#4e525c;
  font-size:12px;
  font-weight:800;
}

.vp-footer-copy span{
  color:#9a9ea7;
  font-size:10px;
}

.vp-footer nav{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:14px;
}

.vp-footer nav a{
  color:#777c86;
  font-size:10.5px;
  font-weight:650;
}

.vp-footer nav a:hover{
  color:#9b506a;
}

@media(max-width:899px){
  .vp-related-full .vp-related-grid{columns:3 155px}

  .vp-single{
    max-width:none;
  }

  .vp-single-card{
    max-width:none;
  }

  .vp-lightbox{
    padding:52px 46px 58px;
  }

  .vp-lightbox figure{
    width:calc(100vw - 92px);
  }

  .vp-lightbox-nav{
    width:36px;
    height:52px;
  }

  .vp-lightbox-prev{left:5px}
  .vp-lightbox-next{right:5px}

  .vp-footer-inner{
    align-items:flex-start;
    flex-direction:column;
  }

  .vp-footer nav{
    justify-content:flex-start;
  }
}

@media(max-width:560px){
  .vp-related-full .vp-related-grid{columns:2 140px}

  .vp-single-topnav{
    grid-template-columns:1fr auto 1fr;
  }

  .vp-single-taxonomy{
    grid-template-columns:1fr;
    gap:7px;
  }

  .vp-lightbox{
    padding:48px 36px 54px;
  }

  .vp-lightbox figure{
    width:calc(100vw - 72px);
  }

  .vp-lightbox-hint{
    display:none;
  }
}

:root{--vi-theme-build:087}


.vp-legal{
  max-width:920px;
  min-height:calc(100vh - 85px);
  margin:0 auto;
  padding:54px 18px 72px;
}

.vp-legal-back{
  display:inline-flex;
  align-items:center;
  gap:7px;
  margin-bottom:28px;
  color:#858a94;
  font-size:11px;
  font-weight:700;
}

.vp-legal h1{
  margin:0 0 12px;
  color:#292c34;
  font-size:38px;
  line-height:1;
  letter-spacing:-.04em;
}

.vp-legal-intro{
  max-width:760px;
  margin:0 0 34px;
  color:#7d828d;
  font-size:16px;
  line-height:1.55;
}

.vp-legal section{
  padding:22px 0;
  border-top:1px solid #ededf1;
}

.vp-legal section h2{
  margin:0 0 8px;
  color:#3b3f48;
  font-size:18px;
}

.vp-legal section p{
  margin:0;
  color:#777c86;
  font-size:14px;
  line-height:1.65;
}

/* VELOCITY-IMAGES-FRONTEND-089 */
:root{--vi-theme-build:088}


/* Velocity Images 0.9.0 — sidebar polish */

/* Favorites now behaves exactly like the main drawer navigation. */
.vp-drawer-nav .vp-drawer-favorites-row{
  position:relative;
}

.vp-drawer-count{
  margin-left:auto;
  min-width:19px;
  height:19px;
  padding:0 6px;
  border-radius:10px;
  display:inline-grid;
  place-items:center;
  background:#ececf0;
  color:#747780;
  font-size:8px;
  font-weight:800;
  line-height:1;
}

.vp-drawer-count[hidden]{
  display:none !important;
}

/* Remove the old card-like Favorites presentation completely. */
.vp-drawer-favorites,
.vp-favorites-list{
  display:none !important;
}

/* Friend Sites: simple text list, not pills. */
.vp-drawer-friends{
  margin:12px 10px 18px;
  padding:13px 5px 0;
  border-top:1px solid #ececef;
}

.vp-drawer-friends>span{
  display:flex;
  align-items:center;
  gap:7px;
  margin-bottom:7px;
  color:#a1a4ac;
  font-size:8px;
  font-weight:900;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.vp-drawer-friends>span i{
  width:12px;
  color:#9a9da6;
  font-size:9px;
  text-align:center;
}

.vp-drawer-friends-list{
  display:flex;
  flex-direction:column;
}

.vp-drawer-friends-list a{
  display:block;
  padding:6px 2px;
  border:0 !important;
  border-radius:0 !important;
  background:transparent !important;
  color:#747881;
  font-size:10.5px;
  font-weight:600;
  line-height:1.2;
}

.vp-drawer-friends-list a:hover{
  background:transparent !important;
  color:#9b506a;
}

:root{--vi-theme-build:090}


.vp-favorites-inline-list{
  display:none;
  flex-direction:column;
  gap:2px;
  padding:3px 10px 7px 34px;
}

.vp-favorites-inline-list.is-open{
  display:flex;
}

.vp-favorite-inline-row{
  display:flex;
  align-items:center;
  gap:7px;
  min-width:0;
  padding:4px 5px;
  border-radius:6px;
  color:#777b84;
}

.vp-favorite-inline-row:hover{
  background:#f0f0f3;
  color:#4f535b;
}

.vp-favorite-inline-row img{
  width:28px;
  height:28px;
  flex:0 0 28px;
  object-fit:cover;
  border-radius:5px;
}

.vp-favorite-inline-row span{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  font-size:10px;
  font-weight:600;
}


/* Velocity Images 0.9.1 — visual consistency + ad zones */

/* Current muted-pink accent; remove remaining legacy purple on bookmarks. */
html body .vp-bookmark.is-saved{
  background:var(--bk-accent,#4f70ad) !important;
  color:#fff !important;
}

/* Sidebar Favorites badge = exact header badge visual language. */
html body .vp-drawer-nav .vp-drawer-count{
  margin-left:auto !important;
  min-width:17px !important;
  height:17px !important;
  padding:0 5px !important;
  border:0 !important;
  border-radius:999px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  background:var(--bk-accent,#4f70ad) !important;
  color:#fff !important;
  box-shadow:none !important;
  font-size:8px !important;
  font-weight:800 !important;
  line-height:1 !important;
}

html body .vp-drawer-nav .vp-drawer-count[hidden]{
  display:none !important;
}

/* Friend Sites is deliberately NOT a pill/card section. */
html body .vp-drawer .vp-drawer-friends{
  display:block !important;
  margin:13px 10px 18px !important;
  padding:14px 5px 0 !important;
  border:0 !important;
  border-top:1px solid #ececef !important;
  border-radius:0 !important;
  background:transparent !important;
  box-shadow:none !important;
}

html body .vp-drawer .vp-drawer-friends>span{
  display:flex !important;
  align-items:center !important;
  gap:7px !important;
  width:auto !important;
  padding:0 0 5px !important;
  margin:0 !important;
  color:#a1a4ac !important;
  background:transparent !important;
  font-size:8px !important;
  font-weight:900 !important;
  letter-spacing:.1em !important;
  text-transform:uppercase !important;
}

html body .vp-drawer .vp-drawer-friends-list{
  display:flex !important;
  flex-direction:column !important;
  gap:0 !important;
  padding:0 !important;
  margin:0 !important;
  background:transparent !important;
}

html body .vp-drawer .vp-drawer-friends-list a{
  display:block !important;
  width:100% !important;
  height:auto !important;
  min-height:0 !important;
  margin:0 !important;
  padding:6px 0 !important;
  border:0 !important;
  border-radius:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  color:#747881 !important;
  font-size:11px !important;
  font-weight:600 !important;
  line-height:1.25 !important;
}

html body .vp-drawer .vp-drawer-friends-list a:hover{
  background:transparent !important;
  color:var(--bk-accent,#4f70ad) !important;
}

/* Single title is less dominant. */
html body .vp-single-info h1{
  font-size:27px !important;
  line-height:1.08 !important;
  letter-spacing:-.026em !important;
  margin:6px 0 10px !important;
}

/* Categories + Tags share one row on desktop. */
.vp-single-taxonomy-line{
  display:flex;
  align-items:flex-start;
  flex-wrap:wrap;
  gap:10px 24px;
  margin-top:14px;
  padding-top:13px;
  border-top:1px solid #eeeef2;
}

.vp-single-taxonomy-group{
  display:flex;
  align-items:flex-start;
  gap:9px;
  min-width:0;
}

.vp-single-taxonomy-group .vp-taxonomy-label{
  flex:0 0 auto;
  min-height:24px;
}

.vp-taxonomy-links{
  display:flex;
  flex-wrap:wrap;
  gap:5px;
}

.vp-taxonomy-links a{
  padding:4px 7px;
  border-radius:6px;
  background:#f5f5f7;
  color:#686d78;
  font-size:10px;
  font-weight:650;
}

.vp-taxonomy-links a:hover{
  background:#f8f2f4;
  color:var(--bk-accent,#4f70ad);
}

/* Standard ad slots; empty zones never render in the template. */
.vp-single-ads{
  width:100%;
  min-height:250px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  padding:22px 10px 14px;
}

.vp-ad-slot{
  overflow:hidden;
}

.vp-ad-300x250{
  width:300px;
  height:250px;
  flex:0 0 300px;
}

.vp-ad-300x250 iframe,
.vp-ad-300x250 img{
  max-width:300px;
  max-height:250px;
}

.vp-lightbox-ad{
  position:absolute;
  inset:0;
  z-index:8;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(10,10,12,.78);
  backdrop-filter:blur(7px);
}

.vp-lightbox-ad[hidden]{
  display:none !important;
}

.vp-lightbox-ad-card{
  width:332px;
  padding:12px 16px 14px;
  border-radius:12px;
  background:#18181a;
  box-shadow:0 24px 80px rgba(0,0,0,.42);
  text-align:center;
}

.vp-ad-label{
  display:block;
  margin:0 0 7px;
  color:#8d8d92;
  font-size:8px;
  font-weight:800;
  letter-spacing:.09em;
  text-transform:uppercase;
}

.vp-lightbox-ad-card .vp-ad-300x250{
  margin:0 auto;
}

.vp-lightbox-ad-card>button{
  margin-top:10px;
  padding:7px 13px;
  border:0;
  border-radius:7px;
  background:#2a2a2d;
  color:#d6d6d9;
  font-size:10px;
  font-weight:700;
}

.vp-lightbox-ad-card>button:hover{
  background:#343438;
  color:#fff;
}

@media(max-width:899px){
  html body .vp-single-info h1{
    font-size:23px !important;
  }

  .vp-single-taxonomy-line{
    display:block;
  }

  .vp-single-taxonomy-group{
    margin-top:10px;
  }

  .vp-single-taxonomy-group:first-child{
    margin-top:0;
  }

  .vp-single-ads{
    min-height:250px;
    padding-left:5px;
    padding-right:5px;
  }

  .vp-single-ads .vp-ad-secondary{
    display:none !important;
  }
}

@media(max-width:340px){
  .vp-ad-300x250{
    transform:scale(.94);
    transform-origin:center center;
  }
}

:root{--vi-theme-build:091}


/* Velocity Images 0.9.2 — sidebar correction */
html body .vp-drawer .vp-drawer-friends{
  display:block !important;
  margin:12px 10px 18px !important;
  padding:13px 5px 0 !important;
  border-top:1px solid #ececef !important;
  background:transparent !important;
}

html body .vp-drawer .vp-drawer-friends-list{
  display:flex !important;
  flex-direction:column !important;
  gap:0 !important;
}

html body .vp-drawer .vp-drawer-friends-list a{
  display:block !important;
  width:100% !important;
  margin:0 !important;
  padding:6px 2px !important;
  border:0 !important;
  border-radius:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  color:#747881 !important;
  font-size:10.5px !important;
  font-weight:600 !important;
}

html body .vp-drawer .vp-drawer-friends-list a:hover{
  color:#4f70ad !important;
  background:transparent !important;
}

html body .vp-drawer-count,
html body .bk-count{
  background:#4f70ad !important;
  color:#fff !important;
  border:0 !important;
}

html body .vp-drawer-count[hidden],
html body .bk-count[hidden]{
  display:none !important;
}

html body .vp-bookmark.is-saved{
  background:#4f70ad !important;
  color:#fff !important;
}

/* Single title and taxonomy */
html body .vp-single-info h1{
  font-size:27px !important;
  line-height:1.08 !important;
  letter-spacing:-.03em !important;
}

@media(min-width:900px){
  html body .vp-single-taxonomy-line{
    display:flex !important;
    align-items:flex-start !important;
    flex-wrap:wrap !important;
    gap:12px 24px !important;
  }

  html body .vp-single-taxonomy-group{
    display:flex !important;
    align-items:center !important;
    gap:8px !important;
    min-width:0 !important;
  }
}

/* Stable thumbnail skeleton */
.vp-card-image-loading{
  position:relative;
  aspect-ratio:4 / 5;
  min-height:150px;
  overflow:hidden;
  background:#f3f3f5;
}

.vp-card-image-loading .vp-card-skeleton{
  position:absolute;
  inset:0;
  z-index:0;
  display:block;
  background:#f1f1f3;
  background-image:none;
  animation:none;
}

.vp-card-image-loading img{
  position:absolute;
  inset:0;
  z-index:1;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transform:none !important;
  transition:opacity .18s ease !important;
}

.vp-card-image-loading.is-loaded{
  aspect-ratio:auto;
  min-height:0;
}

.vp-card-image-loading.is-loaded .vp-card-skeleton{
  display:none;
}

.vp-card-image-loading.is-loaded img{
  position:relative;
  inset:auto;
  width:100%;
  height:auto;
  object-fit:initial;
  opacity:1;
}

to{background-position:-70% 0,0 0}
}

/* Upload modal */
body.vp-upload-open{overflow:hidden}

.vp-upload-modal{
  position:fixed;
  inset:0;
  z-index:1100;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:22px;
  background:rgba(20,20,22,.58);
  backdrop-filter:blur(5px);
  opacity:0;
  pointer-events:none;
  transition:opacity .16s ease;
}

.vp-upload-modal.is-open{
  opacity:1;
  pointer-events:auto;
}

.vp-upload-dialog{
  position:relative;
  width:min(470px,100%);
  padding:30px;
  border-radius:16px;
  background:#fff;
  box-shadow:0 28px 80px rgba(0,0,0,.22);
  text-align:center;
}

.vp-upload-close{
  position:absolute;
  top:12px;
  right:12px;
  width:34px;
  height:34px;
  border:0;
  border-radius:9px;
  display:grid;
  place-items:center;
  background:#f2f2f4;
  color:#777b84;
}

.vp-upload-icon{
  width:52px;
  height:52px;
  margin:0 auto 13px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:rgba(79,112,173,.11);
  color:#4f70ad;
  font-size:20px;
}

.vp-upload-kicker{
  color:#4f70ad;
  font-size:9px;
  font-weight:900;
  letter-spacing:.13em;
}

.vp-upload-dialog h2{
  margin:6px 0 8px;
  color:#2f323a;
  font-size:22px;
  line-height:1.08;
}

.vp-upload-dialog>p{
  max-width:360px;
  margin:0 auto 20px;
  color:#888d97;
  font-size:13px;
  line-height:1.45;
}

.vp-upload-dropzone{
  padding:26px 18px;
  border:1px dashed #d8d8de;
  border-radius:12px;
  background:#fafafb;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
}

.vp-upload-dropzone>i{
  margin-bottom:3px;
  color:#a9adb6;
  font-size:22px;
}

.vp-upload-dropzone strong{
  color:#666a74;
  font-size:13px;
}

.vp-upload-dropzone span{
  color:#a3a7af;
  font-size:10px;
}

.vp-upload-dropzone button{
  margin-top:9px;
  padding:8px 13px;
  border:0;
  border-radius:8px;
  background:#ececf0;
  color:#a0a3aa;
  font-size:10px;
  font-weight:700;
  cursor:not-allowed;
}

/* Legal pages: one clean block */
.vp-legal-shell{
  width:min(920px,calc(100% - 28px));
  min-height:calc(100vh - 100px);
  margin:0 auto;
  padding:48px 0 68px;
}

.vp-legal-home{
  display:inline-flex;
  align-items:center;
  gap:7px;
  margin-bottom:18px;
  color:#858a94;
  font-size:11px;
  font-weight:700;
}

.vp-legal-card{
  padding:30px 32px;
  border:1px solid #ededf1;
  border-radius:14px;
  background:#fff;
  box-shadow:0 12px 34px rgba(28,30,38,.035);
}

.vp-legal-card h1{
  margin:0 0 18px;
  color:#2c2f37;
  font-size:30px;
  line-height:1.05;
  letter-spacing:-.035em;
}

.vp-legal-copy{
  color:#747984;
  font-size:14px;
  line-height:1.7;
}

.vp-legal-copy p{
  margin:0 0 15px;
}

.vp-legal-contact{
  margin-top:22px;
  padding-top:18px;
  border-top:1px solid #ededf1;
  display:flex;
  align-items:center;
  gap:9px;
  color:#8c9099;
  font-size:12px;
}

.vp-legal-contact a{
  color:#4f70ad;
  font-weight:700;
}

@media(max-width:560px){
  html body .vp-single-info h1{font-size:23px !important}
  .vp-card-image-loading{min-height:130px}
  .vp-upload-dialog{padding:26px 18px 20px}
  .vp-legal-card{padding:24px 20px}
}

:root{--vi-theme-build:092}


/* Velocity Images 0.9.4 */

/* Single title: deliberately quieter than 0.9.2. */
html body .vp-single-info h1{
  font-size:23px !important;
  line-height:1.08 !important;
  letter-spacing:-.025em !important;
}

/* Age gate */
html.vp-age-required,
html.vp-age-required body{
  overflow:hidden;
}

.vp-age-gate{
  position:fixed;
  inset:0;
  z-index:5000;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:22px;
  background:rgba(14,14,15,.82);
  backdrop-filter:blur(9px);
  opacity:0;
  pointer-events:none;
  transition:opacity .16s ease;
}

html.vp-age-required .vp-age-gate{
  opacity:1;
  pointer-events:auto;
}

.vp-age-card{
  width:min(440px,100%);
  padding:32px 30px 27px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:17px;
  background:#1d1d1f;
  box-shadow:0 30px 90px rgba(0,0,0,.4);
  color:#f1f1f3;
  text-align:center;
}

.vp-age-brand{
  margin-bottom:17px;
  font-size:24px;
  font-weight:900;
  letter-spacing:-.055em;
  line-height:1;
}

.vp-age-brand span{
  color:#4f70ad;
}

.vp-age-kicker{
  color:#4f70ad;
  font-size:9px;
  font-weight:900;
  letter-spacing:.13em;
}

.vp-age-card h1{
  margin:7px 0 9px;
  font-size:25px;
  line-height:1.08;
}

.vp-age-card p{
  max-width:340px;
  margin:0 auto 20px;
  color:#aaaab0;
  font-size:13px;
  line-height:1.5;
}

.vp-age-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
}

.vp-age-actions button{
  min-height:42px;
  border:0;
  border-radius:9px;
  font-size:11px;
  font-weight:800;
}

.vp-age-enter{
  background:#4f70ad;
  color:#fff;
}

.vp-age-exit{
  background:#2c2c2f;
  color:#bdbdc2;
}

.vp-age-card small{
  display:block;
  margin-top:14px;
  color:#77777d;
  font-size:9px;
}

/* Mobile brand should still read as a real logo, not tiny text. */
@media(max-width:899px){
  html body .bk-logo{
    font-size:24px !important;
  }

  html body .bk-mobile-actions{
    gap:1px;
  }

  html body .bk-mobile-actions>button{
    width:31px;
    height:32px;
    color:#b9bbc4;
  }
}

@media(max-width:560px){
  html body .bk-logo{
    font-size:23px !important;
  }

  html body .vp-single-info h1{
    font-size:20px !important;
  }

  .vp-age-card{
    padding:27px 19px 22px;
  }

  .vp-age-card h1{
    font-size:23px;
  }
}

:root{--vi-theme-build:094}


/* Velocity Images 0.9.5 — flat loading placeholder */
html body .vp-card-image-loading{
  background:#f1f1f3 !important;
}

html body .vp-card-image-loading .vp-card-skeleton{
  background:#f1f1f3 !important;
  background-image:none !important;
  animation:none !important;
}

to{background-position:0 0}
}

:root{--vi-theme-build:095}


/* Velocity Images 0.9.5.2 — mobile header final override */
@media(max-width:899px){
  html body .bk-brand{
    flex:0 0 auto !important;
    min-width:max-content !important;
  }

  html body .bk-logo{
    display:flex !important;
    font-size:25px !important;
    line-height:1 !important;
    transform:none !important;
  }

  html body .bk-mobile-actions{
    display:flex !important;
    margin-left:auto !important;
    align-items:center !important;
    gap:2px !important;
  }

  html body .bk-mobile-actions [data-upload-open]{
    display:grid !important;
    visibility:visible !important;
    opacity:1 !important;
    width:32px !important;
    height:32px !important;
    color:#b9bbc4 !important;
  }

  html body .bk-mobile-actions [data-upload-open] i{
    display:inline-block !important;
    font-size:13px !important;
    color:inherit !important;
  }
}

@media(max-width:560px){
  html body .bk-logo{
    font-size:24px !important;
  }
}

:root{--vi-theme-build:096}


/* Velocity Images 0.9.5.3 — author archives + plain thumbnail loading */
html body .vp-card-image-loading,
html body .vp-card-image-loading .vp-card-skeleton{
  background:#f1f1f3 !important;
  background-color:#f1f1f3 !important;
  background-image:none !important;
  animation:none !important;
}

html body .vp-single-author{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:inherit;
  text-decoration:none;
  font-weight:600;
}

html body .vp-single-author:hover{
  color:#4f70ad;
}

:root{--vi-theme-build:097}

/* Velocity Images 0.9.5.4 */
:root{--vi-theme-build:098}


/* Velocity Images 0.9.5.5 — comments UI removed */
html body .fa-comment,
html body .fa-comments{
  display:none !important;
}

:root{--vi-theme-build:099}


/* Velocity Images 0.9.5.6 — LIGHT HEADER TRIAL */
html body .bk-header{
  background:rgba(255,255,255,.96) !important;
  border-bottom:1px solid #ececf0 !important;
  box-shadow:0 1px 0 rgba(25,28,35,.02) !important;
  backdrop-filter:blur(12px) !important;
}

html body .bk-header-inner{
  background:transparent !important;
}

html body .bk-logo-light{
  color:#2d3038 !important;
}

html body .bk-logo-accent{
  color:#4f70ad !important;
}

html body .bk-beta{
  background:#f3f3f6 !important;
  color:#8c9098 !important;
  border:1px solid #e7e7eb !important;
}

html body .bk-menu,
html body .bk-nav a,
html body .bk-nav button,
html body .bk-actions button,
html body .bk-actions a,
html body .bk-mobile-actions button{
  color:#555a64 !important;
}

html body .bk-menu:hover,
html body .bk-nav a:hover,
html body .bk-nav button:hover,
html body .bk-actions button:hover,
html body .bk-actions a:hover,
html body .bk-mobile-actions button:hover{
  color:#4f70ad !important;
  background:#f7f7f9 !important;
}

html body .bk-search{
  background:#f5f5f7 !important;
  border:1px solid #ececf0 !important;
  box-shadow:none !important;
}

html body .bk-search input{
  color:#353941 !important;
  background:transparent !important;
}

html body .bk-search input::placeholder{
  color:#a6a9b0 !important;
}

html body .bk-search>i{
  color:#a4a8b0 !important;
}

html body .bk-search button{
  color:#7c818b !important;
  background:transparent !important;
}

html body .bk-upload{
  background:#f5f5f7 !important;
  color:#555a64 !important;
  border:1px solid #ececf0 !important;
}

html body .bk-upload:hover{
  color:#4f70ad !important;
  background:#111111 !important;
  border-color:#1a1a1a !important;
}

html body .bk-favorites{
  background:transparent !important;
  color:#555a64 !important;
}

html body .bk-count{
  background:#4f70ad !important;
  color:#fff !important;
}

html body .bk-subbar{
  background:#f4f4f6 !important;
  border-bottom:1px solid #e7e7eb !important;
}

html body .bk-subitem,
html body .bk-group-label,
html body .bk-subnext{
  color:#666b74 !important;
}

html body .bk-subitem:hover,
html body .bk-subitem.is-active{
  color:#4f70ad !important;
  background:#fff !important;
}

html body .bk-subnext{
  background:#f4f4f6 !important;
}

@media(max-width:899px){
  html body .bk-header{
    background:#fff !important;
  }

  html body .bk-mobile-actions [data-upload-open]{
    color:#626772 !important;
  }

  html body .bk-logo{
    font-size:25px !important;
  }
}

@media(max-width:560px){
  html body .bk-logo{
    font-size:24px !important;
  }
}

:root{--vi-theme-build:100}


/* Velocity Images 0.9.6.0 — Favorites page */
.vp-favorites-tools{display:flex;align-items:center;gap:9px}
.vp-favorites-tools b{color:#8c9099;font-size:11px}
.vp-favorites-tools button{border:1px solid #e5e5e9;background:#fff;color:#777c86;border-radius:7px;padding:6px 9px;font-size:10px;font-weight:750;cursor:pointer}
.vp-favorites-tools button:hover{color:#4f70ad;border-color:#1a1a1a;background:#111111}
.vp-favorites-empty{min-height:340px;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:36px 20px;color:#8a8e97}
.vp-favorites-empty[hidden]{display:none!important}
.vp-favorites-empty>i{width:52px;height:52px;border-radius:50%;display:grid;place-items:center;background:#f5f5f7;color:#4f70ad;font-size:18px;margin-bottom:13px}
.vp-favorites-empty h2{margin:0 0 5px;color:#3c4048;font-size:21px}
.vp-favorites-empty p{margin:0 0 16px;font-size:12px}
.vp-favorites-empty a{display:inline-flex;align-items:center;min-height:36px;padding:8px 13px;border-radius:8px;background:#4f70ad;color:#fff;font-size:11px;font-weight:800;text-decoration:none}
.vp-favorites-grid[hidden]{display:none!important}
.vp-favorite-page-card .vp-card-copy{padding-bottom:4px}

/* Dedicated 404 */
.vp-notfound{max-width:1040px;margin:0 auto;padding:48px 20px 72px}
.vp-notfound-card{text-align:center;background:#fff;border:1px solid #ebebef;border-radius:14px;padding:45px 32px;box-shadow:0 8px 30px rgba(31,35,42,.04)}
.vp-notfound-code{display:inline-block;margin-bottom:8px;color:#4f70ad;font-size:12px;font-weight:900;letter-spacing:.16em}
.vp-notfound h1{margin:0;color:#31353d;font-size:34px;letter-spacing:-.04em}
.vp-notfound p{margin:8px auto 20px;max-width:520px;color:#858a93;font-size:13px}
.vp-notfound-search{display:flex;align-items:center;gap:9px;max-width:560px;margin:0 auto 16px;padding:6px 7px 6px 13px;border:1px solid #e6e6ea;border-radius:10px;background:#f7f7f9}
.vp-notfound-search>i{color:#9da1aa;font-size:12px}
.vp-notfound-search input{flex:1;min-width:0;border:0;outline:0;background:transparent;color:#3c4048;font:inherit}
.vp-notfound-search button{border:0;border-radius:7px;background:#4f70ad;color:#fff;padding:8px 12px;font-size:10px;font-weight:800;cursor:pointer}
.vp-notfound-actions{display:flex;justify-content:center;gap:8px;flex-wrap:wrap}
.vp-notfound-actions a{display:inline-flex;align-items:center;gap:6px;padding:8px 11px;border:1px solid #e8e8ec;border-radius:8px;color:#626772;background:#fff;text-decoration:none;font-size:11px;font-weight:750}
.vp-notfound-actions .vp-primary-link{color:#4f70ad;border-color:#1a1a1a;background:#111111}
.vp-notfound-categories{margin-top:28px;padding-top:20px;border-top:1px solid #eeeeF2}
.vp-notfound-categories>span{display:block;margin-bottom:9px;color:#9a9ea7;font-size:9px;font-weight:900;text-transform:uppercase;letter-spacing:.1em}
.vp-notfound-categories>div{display:flex;justify-content:center;gap:6px;flex-wrap:wrap}
.vp-notfound-categories a{padding:5px 8px;border-radius:6px;background:#f5f5f7;color:#6b7079;text-decoration:none;font-size:10px;font-weight:650}
.vp-notfound-categories a:hover{color:#4f70ad}

/* Single content-report entry */
.vp-single-report-row{margin-top:15px;padding-top:12px;border-top:1px solid #efeff2}
.vp-report-content-link{display:inline-flex;align-items:center;gap:6px;color:#979ba4;text-decoration:none;font-size:10px;font-weight:700}
.vp-report-content-link:hover{color:#4f70ad}

@media(max-width:560px){
  .vp-notfound{padding:28px 12px 50px}
  .vp-notfound-card{padding:34px 16px}
  .vp-notfound h1{font-size:28px}
  .vp-favorites-tools{gap:5px}
}
:root{--vi-theme-build:0960}

/* 0.9.6.1 single meta actions */
html body .vp-single-meta{align-items:center;gap:10px 14px}
html body .vp-single-meta>a,html body .vp-single-meta>button,html body .vp-single-meta>span{display:inline-flex;align-items:center;gap:6px;min-height:24px}
html body .vp-single-meta-action{appearance:none;border:0;background:transparent;padding:2px 0;margin:0;color:#969ba5;font:inherit;font-size:11px;font-weight:700;line-height:1;text-decoration:none;cursor:pointer;white-space:nowrap}
html body .vp-single-meta-action i{font-size:11px}
html body .vp-single-meta-action:hover,html body .vp-single-favorite.is-saved{color:#4f70ad}
html body .vp-single-report-row{display:none!important}
@media(max-width:560px){html body .vp-single-meta{gap:8px 11px}html body .vp-single-meta-action{font-size:10.5px}}
:root{--vi-theme-build:0961}

/* 0.9.6.2 final visual polish */

/* AGE GATE NORMAL: WHITE + NO LOGO */
html body .vp-age-gate{
  background:rgba(247,247,249,.94) !important;
  backdrop-filter:blur(10px) !important;
}

html body .vp-age-gate .vp-age-card{
  background:#fff !important;
  color:#30333a !important;
  border:1px solid #e7e7eb !important;
  box-shadow:0 24px 70px rgba(30,32,38,.16) !important;
}

html body .vp-age-gate .vp-age-brand{
  display:none !important;
}

html body .vp-age-gate h1{
  color:#30333a !important;
}

html body .vp-age-gate p{
  color:#777c86 !important;
}

html body .vp-age-gate .vp-age-enter{
  background:#4f70ad !important;
  color:#fff !important;
  font-size:13px !important;
}

html body .vp-age-gate .vp-age-exit{
  background:#f1f1f4 !important;
  color:#555a64 !important;
  font-size:13px !important;
}

/* MOBILE HEADER SEARCH ONLY */
@media(max-width:899px){

  html body .bk-mobile-search,
  html body .bk-mobile-search-panel,
  html body .bk-search-mobile,
  html body .bk-search-drawer,
  html body [data-mobile-search-panel]{
    background:#fff !important;
    color:#30333a !important;
    border-color:#e7e7eb !important;
  }

  html body .bk-mobile-search input,
  html body .bk-mobile-search-panel input,
  html body .bk-search-mobile input,
  html body .bk-search-drawer input,
  html body [data-mobile-search-panel] input{
    background:#f4f4f6 !important;
    border:1px solid #e5e5e9 !important;
    color:#30333a !important;
  }

  html body .bk-mobile-search i,
  html body .bk-mobile-search-panel i,
  html body .bk-search-mobile i,
  html body .bk-search-drawer i,
  html body [data-mobile-search-panel] i{
    color:#666b75 !important;
  }
}

/* VI AGE GATE WHITE 0964 START */
html body .vp-age-card{
  background:#fff !important;
  color:#31353d !important;
  border:1px solid #e6e6ea !important;
  box-shadow:0 28px 80px rgba(0,0,0,.22) !important;
}
html body .vp-age-brand{display:none !important}
html body .vp-age-kicker{color:#4f70ad !important}
html body .vp-age-card h1{color:#31353d !important}
html body .vp-age-card p{color:#777c86 !important}
html body .vp-age-card small{color:#999da6 !important}
html body .vp-age-actions{gap:9px !important}
html body .vp-age-actions button{
  min-height:46px !important;
  font-size:13px !important;
  font-weight:800 !important;
}
html body .vp-age-enter{
  background:#4f70ad !important;
  color:#fff !important;
}
html body .vp-age-exit{
  background:#f2f2f5 !important;
  color:#656a73 !important;
  border:1px solid #e5e5e9 !important;
}
/* VI AGE GATE WHITE 0964 END */


/* 3DPORNXXX 1.0.6 — accent only */
:root{
  --accent:#4f70ad !important;
  --accent-soft:#0f141d !important;
  --accent-deep:#6688c4 !important;
}


/* 3DPORNXXX 1.0.6 — BLUE ACCENT FINAL AUTHORITY */
:root,
html body{
  --accent:#4f70ad !important;
  --accent-soft:#0f141d !important;
  --accent-deep:#6688c4 !important;
  --bk-accent:#4f70ad !important;
  --bk-accent-soft:#0f141d !important;
  --bk-accent-border:rgba(79,112,173,.24) !important;
}
::selection{background:#4f70ad !important;color:#fff !important}
html body .bk-logo-3dporn .bk-logo-accent,
html body .bk-logo-3dporn .bk-logo-xxx{
  background:linear-gradient(180deg,#7898cf 0%,#587bb9 52%,#3b5686 100%) !important;
  background-image:linear-gradient(180deg,#7898cf 0%,#587bb9 52%,#3b5686 100%) !important;
  -webkit-background-clip:text !important;
  background-clip:text !important;
  -webkit-text-fill-color:transparent !important;
  color:#4f70ad !important;
}
html body .bk-logo-3dporn .bk-logo-light{
  background:none !important;
  background-image:none !important;
  -webkit-background-clip:initial !important;
  background-clip:initial !important;
  -webkit-text-fill-color:#fff !important;
  color:#fff !important;
}
html body .bk-subitem.is-active,
html body .vp-single-meta-action:hover,
html body .vp-single-author:hover,
html body .vp-single-favorite.is-saved,
html body .vp-footer-accent,
html body .vp-footer nav a:hover,
html body .vp-age-kicker,
html body .vp-legal-home,
html body .vp-legal-contact a,
html body .vp-single-type,
html body .vp-notfound-code,
html body .vp-notfound-categories a:hover,
html body .vp-report-content-link:hover,
html body .bk-search button,
html body .bk-nav a:hover i,
html body .bk-nav button:hover i,
html body .bk-actions>a:hover i,
html body .bk-actions>button:hover i,
html body .vp-drawer-nav a:hover i,
html body .vp-drawer-nav button:hover i{
  color:#4f70ad !important;
}
html body .bk-search button:hover,
html body .vp-search-panel button:hover{
  color:#6688c4 !important;
}
html body .bk-count,
html body .vp-drawer-count,
html body .vp-bookmark.is-saved,
html body .vp-favorites-empty a,
html body .vp-notfound-search button,
html body .vp-age-confirm{
  background:#4f70ad !important;
  border-color:#4f70ad !important;
  color:#fff !important;
}
html body .bk-subitem.is-active::after{background:#4f70ad !important}

/* 3DPORNXXX 1.0.6 mobile brand final authority */
html body .bk-beta{display:inline-flex !important;border-radius:999px !important}
@media(max-width:899px){html body .bk-logo{font-size:29px !important;line-height:1 !important;white-space:nowrap !important}html body .bk-beta{display:inline-flex !important}}
@media(max-width:560px){html body .bk-logo{font-size:28px !important}html body .bk-beta{display:inline-flex !important}}
@media(max-width:390px){html body .bk-logo{font-size:27px !important}html body .bk-beta{display:inline-flex !important}}

/* 3DPORNXXX 1.0.6 BLUE PALETTE LAST WORD */
:root,html body{
  --accent:#5577bd !important;
  --accent-soft:#101521 !important;
  --accent-deep:#6d8bd0 !important;
  --bk-accent:#5577bd !important;
  --bk-accent-soft:#101521 !important;
  --bk-accent-border:rgba(85,119,189,.24) !important;
}
html body .bk-logo-3dporn .bk-logo-accent,
html body .bk-logo-3dporn .bk-logo-xxx{
  background:linear-gradient(180deg,#82a0df 0%,#607fc5 52%,#4563a2 100%) !important;
  background-image:linear-gradient(180deg,#82a0df 0%,#607fc5 52%,#4563a2 100%) !important;
  -webkit-background-clip:text !important;background-clip:text !important;
  -webkit-text-fill-color:transparent !important;color:#5577bd !important;
}
html body .bk-logo-3dporn .bk-logo-light{background:none !important;background-image:none !important;-webkit-text-fill-color:#fff !important;color:#fff !important}

/* VI 3DPORN SEARCH TEXT COLOR 1001 START */
[data-search-panel] input[type="search"]{
  color:#666b73 !important;
}
[data-search-panel] input[type="search"]::placeholder{
  color:#666b73 !important;
  opacity:1 !important;
}
/* VI 3DPORN SEARCH TEXT COLOR 1001 END */
