/* ==========================================================================
   1. Root Variables (Light Theme Defaults)
   ========================================================================== */
:root {
  --c-black: #111111;
  --c-black-o: #171F23;
  --c-red: #F44336;
  --c-dark: #263238;
  --c-green: #33FF00;
  --c-blue: #0066CC;
  --c-blue-h: #0055B3;
  --c-always-white: #FFFFFF;
  --c-m-blue: #5E64C7;
  --c-m-blue-CC: #5E64C7CC;
  --c-grey: #CCCCCC;
  --c-off-bg: #BB0066;
  --c-white: #FFFFFF;
  --c-light-grey: #F9F9F9;
  --c-v-light-grey: #EFEFEF;
  --c-v-off-grey: #CFD8DC;
  --c-metal: #455A64;
  scrollbar-gutter: stable;
}

/* ==========================================================================
   2. Fonts & Typography
   ========================================================================== */
@font-face {
  font-family: 'Roboto-Fallback';
  src: local('Arial');
  size-adjust: 100.8%;
  ascent-override: 92.8%;
  descent-override: 24.34%;
  line-gap-override: 0%;
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://cdn.pornsites.xxx/fonts/Roboto-Regular.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://cdn.pornsites.xxx/fonts/Roboto-Bold.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ==========================================================================
   3. Base HTML Elements (Mobile First)
   ========================================================================== */
body {
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  min-height: 100dvh;
  font-family: 'Roboto', 'Roboto-Fallback', sans-serif;
  font-size: 16px;
  color: var(--c-black);
  margin: 0;
  padding: 0;
}

h1, h2, h3, p, ol, ul, table {
  margin: 0;
  padding: 0;
}

h1 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  position: relative;
  z-index: 1;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  text-wrap: balance;
  margin-block: 0.5rem;
  padding-block-start: 0.5rem;
  height: 60px;
  line-height: 1.2em;
  display: flex;
  align-items: center;
  
  &::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 2px;
    background: linear-gradient(89deg, transparent 0%, var(--c-red) 10%, var(--c-blue) 50%, var(--c-red) 90%, transparent 100%);
  }
}

h2 { font-size: 1.3em; }
h3 { padding-block: 1em 0.5em; width: auto; }

p {
  color: var(--c-black);
  margin-block: 0.5em;
  line-height: 1.7;
  white-space: normal;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

a {
  color: var(--c-blue);
  text-decoration: none;
  transition: color 0.3s ease;
  
  &:hover { text-decoration: none; color: var(--c-red) !important; }
  &:focus-visible { outline: 2px solid var(--c-blue); outline-offset: 4px; }
}

button {
  background: transparent;
  border: 0;
  &:focus-visible { outline: 2px solid var(--c-blue); outline-offset: 4px; }
}

input, select, textarea {
  font-size: 1.2em;
  font-style: normal;
  font-weight: 400;
  vertical-align: middle;
}

hr.nice, hr.nicedark { border: 0; height: 1px; }

blockquote, .affiliate-disclaimer {
  background: var(--c-light-grey);
  border-left: 8px solid #ccc;
  margin: 1.5em 10px;
  padding: 1em;
  quotes: "\201C" "\201D" "\2018" "\2019";
}

.affiliate-disclaimer { border-color: var(--c-red); }

/* Scrollbars */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--c-red) var(--c-v-light-grey);
}
::-webkit-scrollbar { height: 14px; width: 5px; -webkit-appearance: none; overflow: auto; }
::-webkit-scrollbar-thumb { background-color: var(--c-red); }
::-webkit-scrollbar-track { background-color: var(--c-v-light-grey); }

/* ==========================================================================
   4. Layouts & Grids (Mobile First - Flex Columns default)
   ========================================================================== */
.main { min-width: 0; margin-bottom: 1.5em; }
.main .header { justify-content: space-between; display: flex; align-items: center; }

/* Grid fallbacks for mobile */
.col-4, .col-2, .col-2-75, .site-descr-con {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.auto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 8px;
}

.detail-left, .slideboxmain, ul.videos li, .site-descr-right, ul.sites-list>li, .maincon {
  width: 100%;
  display: block;
}

.maincon { border: 1px solid var(--c-v-off-grey); text-align: center; }
.screenshot { height: 100%; padding-top: 28px; }
.model_right_con, .models-right-content { overflow: hidden; }

/* ==========================================================================
   5. Header & Navigation
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  background: linear-gradient(to bottom right, #263238, var(--c-metal));
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
  z-index: 1003;
}

.header-margin { margin: auto; position: relative; padding: 5px 0; }

#logo-con { display: flex; align-items: center; flex-wrap: wrap; justify-content: center; }
#logo { width: 225px; }

.navbar { width: 100%; }
.navbar-button {
  stroke: var(--c-always-white);
  stroke-linecap: round;
  stroke-width: 3px;
  width: 40px;
  height: 40px;
  transition: 0.2s ease-out;
  cursor: pointer;
  z-index: 100;
  margin: 8px;
}

/* Search */
.searchmenu { position: relative; flex-grow: 1; }
.searchmenu button {
  background: url('https://cdn.pornsites.xxx/img/search_active.svg') center no-repeat;
  width: 40px;
  position: absolute;
  inset: 0 0 0 auto;
}
#k {
  width: 100%;
  font-size: 1em;
  padding-left: 5px;
  border: 0;
  border-radius: 4px;
  line-height: 2em;
  height: 2em;
  box-sizing: border-box;
}
#k:focus { outline: 0; }

/* Breadcrumbs */
.breadcrumbs {
  background-color: var(--c-light-grey);
  border-bottom: 1px solid var(--c-v-off-grey);
  padding: 10px 0;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  
  &::-webkit-scrollbar { height: 0; }
  
  li { display: flex; }
  li::after {
    content: '\2771';
    margin-inline: 5px;
    color: var(--c-metal);
    display: flex;
    align-items: center;
  }
  li:last-of-type::after { display: none; }
  li a { padding: 5px 15px; }
  .sep::after { content: '\2758'; color: var(--c-red); margin: 0.6em; }
}

/* ==========================================================================
   6. General Components & Utilities
   ========================================================================== */
.center, .mobilecenter { text-align: center; margin: auto; }
.right { float: right; }
.inline-block { display: inline-block; }
.valign { vertical-align: middle; }
.tb-margin { margin-block: 15px; }
.full { width: 100% !important; }

/* Text Utilities */
.tiny { font-size: 0.8em; }
.small, .extratext { font-size: smaller; }
.bigger { font-size: 1.5em; padding: 5px 0; }
.big { font-size: 2em; padding: 5px 0 10px; line-height: 1em; vertical-align: middle; }
.sites-count-main { font-size: 1.6em; }
.header-ranking { font-size: 1rem; margin-top: -6px; }

.red, .footerblock strong { color: var(--c-red); }
.green { color: darkgreen; }
.green-x { color: var(--c-green); }
.top-header-text-negative { color: red; font-weight: 500; }
.title .tiny { color: var(--c-blue); }

.notactive { opacity: 0.4; transform: scale(0.95); }
.auto-visible { content-visibility: auto; }
.table-cell { display: table-cell; }
.w16 { width: 16px; }
.rel { position: relative; }
.dummy { min-width: 400px; }
.touched { opacity: 0.8; }
.discount { background: rgba(237, 255, 0, 0.25); }

/* Buttons */
.button {
  background: var(--c-blue);
  color: var(--c-always-white);
  border-radius: 12px;
  font-weight: 600;
  display: flex;
  width: fit-content;
  margin: 5px auto;
  align-items: center;
  justify-content: center;
  padding: 5px 15px;
  box-sizing: border-box;
  white-space: nowrap;
}

a.button, .button a, .review-button-con .button, .site-screenshot .button {
  color: var(--c-always-white);
  padding: 10px 20px;
}

.button img { display: inline-block; }
.alt-button a, .button a { width: 100%; height: 100%; }

a.alt-button {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--c-always-white) !important;
  width: auto;
  border: 1px solid var(--c-m-blue);
  border-radius: 0.5em;
  background: var(--c-m-blue);
  
  &:hover { background: var(--c-m-blue-CC); transition: 0.25s all ease; }
}

.cat-button { white-space: nowrap; }
.pricebtn {
  color: var(--c-white);
  background: var(--c-metal);
  height: 36px;
  padding: 5px;
  border-radius: 0.5em;
  width: 85%;
  margin: 5px auto;
}

a.button-elevator {
  position: relative;
  background: var(--c-blue);
  border: 2px solid var(--c-v-light-grey);
  border-radius: 25px;
  padding: 5px;
  height: 48px;
  width: 48px;
}

/* Modals & Badges */
.badge {
  background: var(--c-metal);
  color: #f9f871;
  width: fit-content;
  padding: 4px;
  margin-block: 3px;
  border-radius: 4px;
  font-size: 0.9em;
  z-index: 10;
}

.discount-corner {
  background: linear-gradient(135deg, #FFD700, #FF9800);
  color: #000;
  position: absolute;
  inset: auto 8px 8px auto;
  font-weight: 700;
  padding: 4px 12px;
  z-index: 13;
  border-radius: 99px;
  font-size: 12px;
  box-shadow: 0 4px 10px rgba(255, 152, 0, 0.3);
}

.wankrank, .info-left-bottom, .tag-category, .sub-category {
  position: absolute;
  color: var(--c-always-white);
  padding: 3px 12px;
  z-index: 13;
  border-radius: 999px;
  font-size: 12px;
  box-shadow: 0 4px 10px rgba(255, 152, 0, 0.3);
}

.wankrank { right: 5px; bottom: 8px; background: var(--c-off-bg); }
.info-left-bottom { left: 5px; bottom: 8px; background: var(--c-off-bg); }

.tag-category { display: none; }
.show_category .tag-category { bottom: 5em; inset-inline: 5px; background: var(--c-off-bg); display: block; }
.sub-category { bottom: 3em; inset-inline: 5px; background: rgb(from var(--c-black, black) r g b / 0.75); border: 1px solid var(--c-off-bg); }

.deal { font-size: 0.8em; font-weight: 800; background: #ff0; color: #333; border: 1px solid var(--c-v-off-grey); border-radius: 8px; padding: 0 2px; }
.black-friday { background: var(--c-black); font-weight: 800; color: var(--c-white); margin-right: 40px; padding: 0 2px; }

/* Lists & Tables */
.text ul, .read-more-text ul { padding: 0.5em 0 1em 2em; list-style-type: disc; }
.text li { line-height: 1.5em; }
.text ul.nodisc { list-style-type: none; }

.styled {
  width: 100%;
  border-collapse: collapse;
  border-style: hidden;
  font-size: 1.1em;
  margin-block: 1em;
  display: block;
  overflow-x: auto;
  white-space: nowrap;
  
  th { padding-block: 8px; background-color: var(--c-metal); color: var(--c-white); border: 0; text-align: center; }
  td { border: 0px; text-align: left; padding: 8px; }
  tr:nth-child(odd), > li:nth-child(odd) { background: var(--c-v-light-grey); }
}

table.header-info td { width: 25%; text-align: center; vertical-align: middle; }
table.awards tr:nth-child(odd) { background: var(--c-v-light-grey); }
.infobox .checkbox li::before { content: "\2714"; display: inline-block; padding-right: 6px; border-radius: 4px; }
.sites-list-small > li:nth-child(even) { background: var(--c-v-light-grey); }

/* ==========================================================================
   7. Specific UI Blocks & Features
   ========================================================================== */
.card_item {
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
  flex-shrink: 0;
  
  > a { position: relative; }
  
  .picture {
    width: 100%;
    aspect-ratio: 5 / 3;
    text-align: center;
    box-shadow: 0px 0px 2px #333;
    position: relative;
    
    &::before { content: ''; position: absolute; inset: 0; background: #00000033; z-index: 5; pointer-events: none; }
  }
  
  .logo { position: absolute; inset: 0; display: flex; justify-content: center; align-items: center; z-index: 9; }
  .logo img { background: #000000CC; padding: 15px; border-radius: 16px; }
  
  p { font-size: 0.8em; display: flex; align-items: center; justify-content: center; text-align: center; padding: 4px; height: 3em; margin: 0; }
  .title { padding: 2px; text-align: left; display: table; margin: 0; color: #000; white-space: nowrap; overflow-x: auto; overflow-y: hidden; }
  
  .ranking {
    font-weight: 600;
    z-index: 8;
    position: absolute;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    
    &::after { content: ''; position: absolute; background: var(--c-white); left: -27px; height: 3rem; width: 3rem; border-radius: 50%; z-index: -1; border: 1px solid var(--c-black); }
  }
  .site-summary { overflow-y: auto; margin-block: 0.5em; white-space: normal; line-height: 1.4rem; max-height: 195px; }
}

.card {
  position: relative;
  min-width: 200px;
  max-width: 300px;
  margin: auto;
  font-size: 0.8rem;
  
  > p { line-height: 1.1em; display: flex; align-items: center; justify-content: center; font-size: 13px; height: 3.5em; padding-top: 0.5em; margin: 0; }
  .title { color: var(--c-white); position: absolute; z-index: 100; font-weight: 700; inset: 0; display: flex; justify-content: flex-start; flex-wrap: wrap; align-content: center; }
  .footer { text-align: center; font-weight: 700; list-style-type: none; height: 2.2em; line-height: 2.2em; font-size: 14px; background: var(--c-v-light-grey); border-radius: 4px; border: 1px solid var(--c-v-light-grey); }
  .footer span { vertical-align: middle; }
  .award { position: absolute; right: 5px; top: 5px; z-index: 10; font-size: 1.3em; }
}

.main .card_item .site-summary { max-height: 55px; }
.card_item a.button { margin: 2px 0; width: auto; }

/* Category Lists */
.catlist {
  border: 1px solid var(--c-grey);
  border-radius: 8px;
  padding: 14px;
  background: var(--c-light-grey);
  margin-block: 16px;
  content-visibility: visible !important;
  
  ol > li {
    display: flex;
    counter-increment: li-counter;
    border-radius: 8px;
    position: relative;
    align-items: center;
    
    &::before { content: counter(li-counter); color: var(--c-metal); font-weight: 700; padding-right: 3px; display: block; width: 1.2em; text-align: center; }
    .link { width: 100%; padding: 4px; display: block; }
    .review { opacity: 0.1; }
    &:hover .review { opacity: 1; }
    .review::before { content: '\1F50D'; font-size: 1.2rem; }
  }
  .site-description.visible { visibility: visible; opacity: 1; }
}

/* Site Descriptions */
.site-description {
  .preview {
    position: relative;
    background-clip: content-box, border-box;
    background-origin: border-box;
    border-radius: 16px;
    border: double 2px transparent;
    background-image: linear-gradient(#333, #333), linear-gradient(to right, #0066bb, var(--c-off-bg));
    img { border-radius: 16px; }
  }
  p, ul { font-size: 0.9em; text-align: justify; }
  p { padding-block: 10px; line-height: 1.4em; color: var(--c-always-white); letter-spacing: 1px; }
  a { transition: none; }
}

/* Pros/Cons List (The Checkmarks & Exes) */
.site-descr-positive, .site-descr-negative {
  margin: 0;
  text-align: left;
  width: 100%;
  
  li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding-block: 4px;
    
    &::before { width: 22px; flex-shrink: 0; text-align: center; position: relative; z-index: 5; }
  }
}
.site-descr-positive li::before, .positive li::before { content: '\2714'; color: var(--c-green); }
.site-descr-negative li::before { content: '\26d4'; }
.positive { color: var(--c-green); font-weight: 500; text-indent: -20px; margin-left: 20px; }

/* Stars & Upvotes */
.upvotejs { display: flex; align-items: center; justify-content: center; width: 100px; background: var(--c-m-blue); border-radius: 16px; margin: 10px auto; color: var(--c-always-white); }
.upvotejs.upvotejs-enabled a { cursor: pointer; }
.upvotejs span.count { display: block; text-align: center; font-size: 20px; margin: 8px 0; }

.upvote::before, .upvote-on::before, .downvote::before, .downvote-on::before { content: ''; display: flex; width: 16px; height: 16px; margin: 1em; background-position: center; background-repeat: no-repeat; }
.upvote::before { background-image: url("data:image/svg+xml,%3Csvg width='16px' height='16px' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000000' stroke-width='1'%3E%3Cpolygon points='3 14 12 3 21 14 16 14 16 22 8 22 8 14 3 14'/%3E%3C/svg%3E"); }
.upvote-on::before { background-image: url("data:image/svg+xml,%3Csvg width='16px' height='16px' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='green' stroke='%23000000' stroke-width='1'%3E%3Cpolygon points='3 14 12 3 21 14 16 14 16 22 8 22 8 14 3 14'/%3E%3C/svg%3E"); }
.downvote::before { transform: rotateX(180deg); background-image: url("data:image/svg+xml,%3Csvg width='16px' height='16px' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000000' stroke-width='1'%3E%3Cpolygon points='3 14 12 3 21 14 16 14 16 22 8 22 8 14 3 14'/%3E%3C/svg%3E"); }
.downvote-on::before { transform: rotateX(180deg); background-image: url("data:image/svg+xml,%3Csvg width='16px' height='16px' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='red' stroke='%23000000' stroke-width='1'%3E%3Cpolygon points='3 14 12 3 21 14 16 14 16 22 8 22 8 14 3 14'/%3E%3C/svg%3E"); }

.i-star { background-image: url(https://cdn.pornsites.xxx/img/stars.png); width: 80px; height: 16px; display: inline-block; vertical-align: top; }
.i-star-1 { background-position: -64px 0; width: 16px; }
.i-star-2 { background-position: -48px 0; width: 32px; }
.i-star-3 { background-position: -32px 0; width: 48px; }
.i-star-4 { background-position: -16px 0; width: 64px; }
.i-star-5 { background-position: 0 0; width: 0; }
.star::before { content: '\1f31f'; font-size: 27px; z-index: 5; transform: rotate(-24deg); display: inline-block; vertical-align: middle; position: absolute; inset: 2px auto auto 2px; }
.rating-container { height: 10px; background-color: var(--c-v-light-grey); text-align: center; color: white; z-index: 100; position: absolute; inset: auto 10px 10px 10px; box-shadow: 0px 0px 2px var(--c-black); font-size: 0.6em; }
.rating { width: var(--rating); height: 10px; background-color: goldenrod; }

/* Modals & Age Gates */
#age-gate-overlay {
  position: fixed;
  inset: 0;
  background-color: color-mix(in srgb, var(--c-white) 80%, transparent);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  transition: opacity 0.4s ease-in-out;
}
.age-gate-hidden { display: none !important; }
.age-modal { max-width: 600px; display: flex; flex-direction: column; align-items: center; background: var(--c-dark); border: 1px solid #000; padding: 16px; border-radius: 16px; text-align: center; p { display: none; } }
.age-gate-content { background: #1e1e1e; color: #ffffff; padding: 40px; border-radius: 12px; max-width: 450px; text-align: center; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); font-family: system-ui, -apple-system, sans-serif; }
#btn-enter { background: green; padding: 15px; }
#btn-exit { background: red; color: black; }
.age-gate-content h2 { margin-top: 0; font-size: 24px; color: #fff; }
.age-gate-content p { color: #b3b3b3; line-height: 1.5; margin-bottom: 30px; }
.age-gate-actions { display: flex; flex-direction: column; gap: 15px; }

.modal { position: fixed; z-index: 5000; inset: 10px 10px auto auto; display: none; img { height: 100%; object-fit: contain; } }
.modal-content { background: var(--c-v-light-grey); padding: 20px; border: 1px solid #888; max-width: 200px; color: var(--c-black); }
.x { color: #AAA; position: absolute; inset: 5px 15px auto auto; font-size: 28px; font-weight: bold; z-index: 100; background: var(--c-black); border-radius: 16px; width: 32px; height: 32px; display: flex; justify-content: center; align-items: center; }
.x:hover, .x:focus { color: var(--c-white); text-decoration: none; cursor: pointer; }

/* Read More & Expands */
.open-read-more, .show-on-click {
  position: relative;
  font-size: 1em;
  margin: 0;
  padding: 1em 2.2em 1em 0em;
  text-align: center;
  display: block;
  
  &::after { content: '\203A'; transform: rotate(90deg); font-size: 2em; position: absolute; inset: 5px 10px auto auto; z-index: 5; color: var(--c-black); pointer-events: none; }
  &:first-child { padding-top: 0; margin-top: 0; }
}
.read-more-text { max-height: 0; min-height: 0; overflow: hidden; &.open { max-height: 100vh; transition: max-height 1s ease-in-out; } }
.read-more-shadow::after { content: ""; position: absolute; inset: auto 0 0 0; height: 4em; opacity: 0.5; transition: all 0.2s; background: linear-gradient(to bottom, transparent, var(--c-white)); }

/* ==========================================================================
   8. Specific Site Elements (Carousels, Stars, Pricing)
   ========================================================================== */
.carousel { overflow-y: scroll; scrollbar-width: none; scroll-snap-type: x mandatory; }
.carousel::-webkit-scrollbar { display: none; }
.carousel ul, .carousel ol { display: flex; flex-wrap: nowrap; align-items: flex-start; margin-top: 10px; }
.carousel ul::-webkit-scrollbar, .carousel ol::-webkit-scrollbar { display: none; }
.carousel li { position: relative; margin: auto 5px; scroll-snap-align: center; }
.carousel .card_item { width: 200px; }

.price-table { padding: 10px 0; }
.price-table > div { display: flex; flex-shrink: 0; text-align: center; vertical-align: middle; min-width: 100px; flex-direction: column; justify-content: center; height: 100%; }
.price { font-size: 36px; font-weight: 600; position: relative; margin: 0 auto; }
.cent { font-size: 0.8rem; vertical-align: super; padding-right: 5px; }
.month { margin-top: -10px; margin-right: -10px; font-size: 0.6rem; }
.info-discount { background: green !important; color: var(--c-white); display: flex; align-items: center; }

/* Flags & SVGs */
.flag::before{ content:""; display:inline-block; height:10px; width:16px; vertical-align:middle; border:1px solid var(--c-metal); background-image: image-set(url("https://cdn.pornsites.xxx/img/!flags.avif") type("image/avif"), url("https://cdn.pornsites.xxx/img/!flags.png") type("image/png")); margin:0 3px 2px 0; }
.flag-en::before { background-position: -96px 0; }
.flag-de::before { background-position: 0 0; }
.flag-es::before, .icon-descr { background-position: -16px 0; }
.flag-fr::before, .icon-awards { background-position: -32px 0; }
.flag-it::before, .icon-freevideos { background-position: -48px 0; }
.flag-nl::before, .icon-external { background-position: -64px 0; }
.flag-ru::before { background-position: -80px 0; }
.flag-zh::before { background-position: -112px 0; }
.icon-twitter { height: 16px; width: 16px; vertical-align: middle; background-image: url(https://cdn.pornsites.xxx/img/Twitter_Logo_Blue.svg); display: inline-block; }
.icon-instagram { height: 16px; width: 16px; vertical-align: middle; background-image: url(https://cdn.pornsites.xxx/img/Instagram.svg); display: inline-block; }

/* Miscellaneous Layout Utils */
.box { border: 1px solid var(--c-v-off-grey); margin-bottom: 15px; box-shadow: 0 .1rem .2rem 0 rgba(0,0,0,.2); background: #FCFCFC; padding: 10px; }
.box-light { padding: 5px; }
.block-hint { display: none; text-align: center; background: var(--c-red); padding: 10px; color: var(--c-white); letter-spacing: -.5px; text-shadow: 2px 2px 3px var(--c-black); position: fixed; bottom: 0; width: 100%; z-index: 2; }
.latest-updates { border: 3px solid var(--c-off-bg); border-radius: 16px; padding: 10px; background: var(--c-v-off-grey); }
.lang-select { background: var(--c-white); position: fixed; display: block; bottom: 0; z-index: 200000; border-top: 1px solid var(--c-v-light-grey); text-align: center; width: 100%; vertical-align: middle; padding-block: 10px; }
.dropdown-arrow { width: 0; display: inline-block; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 5px solid #eee; }
.dropdown-cat .dropbtn { font-size: 16px; border: none; outline: none; color: var(--c-white); padding: 14px 16px; background-color: inherit; }
.dropdown-cat:hover .dropdown-content-cat, .dropdown:hover .dropdown-content, .active { display: block; }
#autoComplete_list_1 { position: absolute; top: 36px; left: 0px; background: var(--c-light-grey); padding: 0.5em; max-width: 600px; overflow: auto; }
.sticky { position: sticky; top: 0; z-index: 1; }
.nooverflow { overflow: hidden; position: relative; }
.noborder { border: 0; }
.swipebar { white-space: nowrap; overflow-x: auto; overflow-y: hidden; }
.slogan { padding: 4px 8px 4px 0; }
.con { display: inline-block; vertical-align: middle; margin-right: -6px; }
.row::after { content: ""; display: table; clear: both; }

/* Footers */
.art-footer { background: var(--c-black); border-top: 1px solid #eceff1; color: var(--c-white); position: relative; text-align: center; padding: 40px; li { padding: 5px 0px; } }
.footer-text p { text-align: center; max-width: 66%; margin: auto; padding: 10px; color: var(--c-always-white); }
.footerblock { display: inline-block; text-align: left; vertical-align: top; width: 210px; font-size: 1.2em; }

/* ==========================================================================
   9. Mobile Specific Visibility / Default Hiding 
   ========================================================================== */
.mobilemenu, .site-descr-icons, .close, #open_website_button { display: flex; }
.close, #open_website_button { display: block; }
#open_website_button { padding: 8px; width: auto; }

.button input[type=checkbox], .hide, .hidden, .info, figcaption, .card_item picture::after, 
.badge, .main .site-summary, .prev, .next, #logo-con .searchmenu, .mobilehide, 
.flex-control-thumbs, .navbar, .category-descr-text::before { display: none; }

.fix-pos { display: block; position: fixed; inset: auto 0 0 0; z-index: 1000; }

/* ==========================================================================
   10. Desktop Overrides (min-width: 768px)
   ========================================================================== */
@media (min-width: 768px) {
  /* Restore multi-column layouts */
  .col-4 { display: grid; grid-template-columns: repeat(4, 1fr); }
  .col-2 { display: grid; grid-template-columns: repeat(2, 1fr); }
  .col-2-75 { display: grid; grid-template-columns: 25% 75%; }
  .site-descr-con { display: grid; grid-template-columns: 50% auto; }
  
  .detail-left, .slideboxmain, ul.videos li, .site-descr-right, ul.sites-list>li, .maincon { width: auto; display: revert; }
  
  /* Tables return to normal */
  .styled { display: table; white-space: normal; overflow-x: visible; }
  
  /* Header & Containers */
  .header-margin { padding: 10px 0; max-width: 1200px; }
  .main-header { position: relative; }
  #logo-con { justify-content: flex-start; }
  .searchmenu { flex-grow: 0; }
  #k { width: 600px; }
  
  /* Elements that hide/show on desktop */
  .close, #open_website_button, .mobilemenu, .site-descr-icons, .fix-pos { display: none; }
  figcaption, .card_item picture::after, .badge, .main .site-summary, .prev, .next, 
  #logo-con .searchmenu, .mobilehide, .flex-control-thumbs, .navbar, .category-descr-text::before { display: revert; }
  
  .age-modal p { display: block; color: var(--c-always-white); }
  
  /* Reset Buttons & Prompts */
  .pricebtn { width: auto; margin: 2px 0; }
  .open-read-more, .show-on-click { padding: 0; text-align: left; &::after { display: none; } }
}

/* ==========================================================================
   11. Hover & Pointer Enhancements
   ========================================================================== */
@media (hover: hover) and (pointer: fine) {
  .button:hover { background: var(--c-blue-h); transition: all 0.1s; cursor: pointer; box-shadow: 0 7px 14px rgba(0, 102, 204, 0.25), 0 3px 6px rgba(0, 0, 0, 0.1); }
  .star:hover::before { content: attr(data-title); }
  .card_item:hover { transform: translateY(-6px); .review-button-con { opacity: 1; } }
  .picture img { transition: transform 0.2s ease-in-out; }
  .picture:hover img, .browse-sites-screens img:hover { transform: scale(1.1); }
  .card_item .picture a:hover { text-decoration: none; }
  .main a:hover, .main a:hover::after, .card_item .title:hover { color: var(--c-red); transition: 0.25s all ease; }
  .catlist ol > li:hover { background: var(--c-white); }
}

/* ==========================================================================
   12. Animations
   ========================================================================== */
.pulse { animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 red; } 70% { box-shadow: 0 0 0 10px rgba(0,0,0,0); } 100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); } }
@keyframes bounce-h { 0% { transform: translateX(0px); } 100% { transform: translateX(5px); } }
@keyframes fadeIn { 0% { display: none; opacity: 0; } 1% { display: block; opacity: 0; } 100% { display: block; opacity: 1; } }

/* ==========================================================================
   13. Dark Theme Overrides
   ========================================================================== */
@media (prefers-color-scheme: dark) {
  :root {
    --c-black: #ffffff;
    --c-black-o: #eeeeee;
    --c-red: #F44336;
    --c-dark: #cccccc;
    --c-green: #33FF00;
    --c-blue: #0066CC;
    --c-blue-h: #0055B3;
    --c-m-blue: #5E64C7;
    --c-m-blue-CC: #5E64C7CC;
    --c-grey: #263238;
    --c-white: #000000;
    --c-light-grey: #111111;
    --c-v-light-grey: #333333;
    --c-v-off-grey: #444444;
    --c-metal: #455A64;
  }
  .main-header { background: var(--c-light-grey); }
}

/* ==========================================================================
   Missing Utilities & Modifiers
   ========================================================================== */
.notactive { 
  opacity: 0.4; 
  transform: scale(0.95); /* Replaced non-standard 'zoom: 0.95' */
}

.auto-visible { content-visibility: auto; }
.table-cell { display: table-cell; }
.w16 { width: 16px; }
.rel { position: relative; }
.dummy { min-width: 400px; }
.extratext { font-size: smaller; }
.toggle, .searchmenu button:hover { cursor: pointer; }
.touched { opacity: 0.8; }
.discount { background: rgba(237, 255, 0, 0.25); }

/* Missing Layouts & Containers */
.cat-col { 
  display: grid; 
  grid-template-columns: 285px 1fr; 
  column-gap: 10px; 
}
.maincon { border: 1px solid var(--c-v-off-grey); text-align: center; }
.screenshot { height: 100%; padding-top: 28px; }
.model_right_con, .models-right-content { overflow: hidden; }
.site-info { border-radius: 4px; margin-top: 5px; color: var(--c-white); }
.info-price { background: #eee; text-align: center; width: 100%; }
.autoComplete_wrapper { padding: 0; }
.main .header { justify-content: space-between; display: flex; align-items: center; }

/* ==========================================================================
   Missing Typography & Text Elements
   ========================================================================== */
.sites-count-main { font-size: 1.6em; }
.header-ranking { font-size: 1rem; margin-top: -6px; }
figcaption { font-size: 0.8em; padding: 4px; text-align: center; }
.tag {
  background: var(--c-red);
  font-size: small;
  font-weight: 700;
  border-radius: 4px;
  color: var(--c-white);
  line-height: 14px;
  padding: 4px;
  margin: 0 4px;
}

.site-descr-text {
  position: relative;
  padding-block: 10px;
  
  ol { padding: 10px 5px; }
  li {
    margin-left: 45px;
    list-style-type: decimal;
    line-height: 1.5rem;
    padding-block: 4px;
  }
}

.site-descr-text-contents { font-weight: 500; padding: 10px 0; }
.category-descr-text ul, .category-descr-text ol { margin: 5px 15px; }

.faq p { 
  background: var(--c-light-grey); 
  padding: 10px; 
  border: 1px solid var(--c-v-off-grey); 
  border-radius: 16px; 
}

.post_title {
  background: var(--c-white);
  color: var(--c-black);
  display: flex;
  padding: 5px 15px;
  font-size: 1em;
  line-height: 1.5;
  height: 5em;
  border-radius: 0;
  align-items: center;
  margin: 16px;
  opacity: 0.9;
}

/* ==========================================================================
   Missing Component Styles (Cards, Buttons, Lists)
   ========================================================================== */
/* The missing .card overrides (Original had distinct .card vs .card_item rules) */
.card > p {
  line-height: 1.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  height: 3.5em;
  padding-top: 0.5em;
  margin: 0;
}

.card .title {
  color: var(--c-white);
  position: absolute;
  z-index: 100;
  font-weight: 700;
  inset: 0;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-content: center;
}

.card .footer {
  text-align: center;
  font-weight: 700;
  list-style-type: none;
  height: 2.2em;
  line-height: 2.2em;
  font-size: 14px;
  background: var(--c-v-light-grey);
  border-radius: 4px;
  border: 1px solid var(--c-v-light-grey);
  
  span { vertical-align: middle; }
}

.carousel .card a h3::after {
  content: '';
  display: block;
  height: 3px;
  margin: auto;
  width: 90%;
  background: var(--c-red);
  border-radius: 90% 100% 90% 100%;
  box-shadow: 0 0 2px #29353c;
}

/* Button variants */
.card_item a.button { margin: 2px 0; width: auto; }
.cat-button { white-space: nowrap; }

a.button-elevator {
  position: relative;
  background: var(--c-blue);
  border: 2px solid var(--c-v-light-grey);
  border-radius: 25px;
  padding: 5px;
  height: 48px;
  width: 48px;
}

/* List specific overrides */
.infobox .checkbox li::before { 
  content: "\2714"; 
  display: inline-block; 
  padding-right: 6px; 
  border-radius: 4px; 
}
.sites-list-small > li:nth-child(even) { background: var(--c-v-light-grey); }

.listing li picture::before {
  content: counter(list-item) ".";
  position: absolute;
  inset: 26px auto auto 71px;
  width: 30px;
  height: 30px;
  background: var(--c-white);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 70;
  color: var(--c-black);
  font-weight: 600;
  border: 5px solid var(--c-blue);
}

.review-selection .ranking {
  content: counter(list-item) ".";
  position: absolute;
  inset: auto auto 10px 10px;
  width: 30px;
  height: 30px;
  background: var(--c-white);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 70;
  color: var(--c-black);
  font-weight: 600;
  border: 5px solid var(--c-blue);
}

/* Base state for review button container before hover triggers */
.review-button-con {
  display: flex;
  position: absolute;
  inset: 0;
  border: 0;
  justify-content: center;
  align-items: center;
  z-index: 10;
  opacity: 0;
  transition: all .2s ease-in-out;
}

/* ==========================================================================
   Missing Logos, Icons & SVGs
   ========================================================================== */
.site-logo img { height: 25px; object-fit: scale-down; }
.browse-sites-screens .logo img { height: 30px; object-fit: contain; }
.browse-sites-screens picture img { height: 100%; }

.ext-link::after {
  margin-left: 2px;
  content: url("data:image/svg+xml,%3Csvg width='16px' height='16px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath id='Vector' d='M10.0002 5H8.2002C7.08009 5 6.51962 5 6.0918 5.21799C5.71547 5.40973 5.40973 5.71547 5.21799 6.0918C5 6.51962 5 7.08009 5 8.2002V15.8002C5 16.9203 5 17.4801 5.21799 17.9079C5.40973 18.2842 5.71547 18.5905 6.0918 18.7822C6.5192 19 7.07899 19 8.19691 19H15.8031C16.921 19 17.48 19 17.9074 18.7822C18.2837 18.5905 18.5905 18.2839 18.7822 17.9076C19 17.4802 19 16.921 19 15.8031V14M20 9V4M20 4H15M20 4L13 11' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.expand-button {
  width: 25px;
  height: 25px;
  background-image: url('data:image/svg+xml,<svg class="svg-icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M853.333333 213.333333a42.666667 42.666667 0 0 0-42.666666-42.666666h-213.333334a42.666667 42.666667 0 0 0 0 85.333333h109.653334l-139.946667 140.373333a42.666667 42.666667 0 0 0 0 60.586667 42.666667 42.666667 0 0 0 60.586667 0L768 316.586667V426.666667a42.666667 42.666667 0 0 0 42.666667 42.666666 42.666667 42.666667 0 0 0 42.666666-42.666666zM456.96 567.04a42.666667 42.666667 0 0 0-60.586667 0L256 706.986667V597.333333a42.666667 42.666667 0 0 0-42.666667-42.666666 42.666667 42.666667 0 0 0-42.666666 42.666666v213.333334a42.666667 42.666667 0 0 0 42.666666 42.666666h213.333334a42.666667 42.666667 0 0 0 0-85.333333H316.586667l140.373333-140.373333a42.666667 42.666667 0 0 0 0-60.586667z" /></svg>');
}

/* ==========================================================================
   Missing UI Bars & Carousels
   ========================================================================== */
.navbar {
  display: none;
  position: fixed;
  top: 95px;
  z-index: 70;
  height: 100%;
  overflow-y: auto;
  padding: 1em;
  background: var(--c-light-grey);
  border-right: 1px solid var(--c-v-light-grey);
}
.navbar::-webkit-scrollbar { display: none; }

.patches { position: absolute; right: 0px; top: 0px; }
.b-open-site {
  font-weight: 600;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  z-index: 101;
  inset: auto 5px auto 5px;
  padding: 10px 5px;
  pointer-events: none;
  opacity: 0.9;
  width: auto;
  font-size: 0.8em;
}

.main-bottom {
  display: flex;
  text-align: center;
  padding: 0.3em;
  vertical-align: middle;
  background: var(--c-dark);
  align-items: center;
  flex-wrap: nowrap;
  
  .carousel { padding-bottom: 2px; }
}

.top.carousel li { margin-top: 0; }
.feed-carousel {
  display: block;
  position: absolute;
  height: 6px;
  bottom: 0;
  left: 0;
  width: 100%;
  user-select: none;
  font-size: 0;
}

.b-site-bottom { display: none; }
.ic-round {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--c-dark);
  background-color: var(--c-white);
  color: var(--c-black);
  width: 32px;
  height: 32px;
  padding: 2px;
  margin: 5px;
}

.ic-info::after {
  content: 'i';
  border: 1px solid var(--c-white);
  border-radius: 50px;
  width: 16px;
  height: 16px;
  display: inline-block;
  font-size: 14px;
  background: blue;
  opacity: 0.8;
}

.button-home { text-align: center; padding: 0 0.5em; display: flex; }
.swipe-left, .swipe-right { width: 50%; padding: 2px; position: relative; }
.tt-dataset {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px; /* Logical replacement for grid-row-gap / grid-column-gap */
  padding: 10px;
  overflow: hidden;
}

/* ==========================================================================
   Missing Mobile Overrides (Will Apply By Default Now)
   ========================================================================== */
#sitesearch { position: relative; }
.sites-list-small li > div { max-width: 50%; }
.searchbox::before { height: 18px; padding: 7px; }
.mobilecenter { text-align: center; }
.category-descr-text { padding: 0; margin: 0 auto; background: transparent; }
.col-6 .card_item .title { font-size: 1em; padding: 5px 0; }
.main h3 { width: auto; }

/* Apply grid shift for mobile tt-dataset */
@media (max-width: 768px) {
  .tt-dataset { grid-template-columns: repeat(2, 1fr); }
  .browse-sites-screens { width: 150px; }
  .browse-sites-screens .picture { height: 100px; }
}