/* ============================================================
   sstory template.css
   Design source: Final(1)/Final/html5/css/style.css + media.css
   Supplemental additions for pages without designer mockups
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;700;900&family=Barlow:wght@900&display=swap');

:root {
    --ss-bg: #ffffff;
    --ss-ink: #0f0f0f;
    --ss-surface: #191919;
    --ss-pure-black: #000000;
    --ss-accent-orange: #f16822;
    --ss-accent-pink: #ec1d7e;
    --ss-accent-purple: #4d2a7c;
    --ss-accent-cyan: #3ad1d5;
    --ss-accent-green: #12aa12;
    --ss-accent-red: #f1222c;
    --ss-text-muted: #848282;
    --ss-text-placeholder: #7d7d7d;
    --ss-text-soft: #b0b0b0;
    --ss-border-dark: #333333;
    --ss-gradient-green-start: #05da06;
    --ss-gradient-green-end: #12a413;
    --ss-gradient-pink-start: #ff3b9d;
}

/* ---- Base reset overrides ---- */
body {
    min-width: 0;
    background-color: var(--ss-bg);
    font-family: "Barlow Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
}

ol, ul {
    list-style: none;
}

.clear:before, .clear:after {
    content: " ";
    display: table;
}

.clear:after {
    clear: both;
}

blockquote, q {
    quotes: none;
}

img {
    border: none;
    margin: 0;
    padding: 0;
    max-width: 100%;
    display: block;
}

textarea {
    outline: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    text-decoration: none;
    outline: none;
}

h1, h2, h3, h4, h5, h6, p {
    font-weight: normal;
}

* {
    box-sizing: border-box;
}

::-webkit-input-placeholder {
    color: var(--ss-text-placeholder);
    opacity: 1;
}

::-moz-placeholder {
    color: var(--ss-text-placeholder);
    opacity: 1;
}

:-ms-input-placeholder {
    color: var(--ss-text-placeholder);
    opacity: 1;
}

a, .viewall i {
    -webkit-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* ---- Layout ---- */
.centerwrap {
    width: 1869px;
    margin: auto;
}

/* ---- Header / Nav ---- */
header {
    background: var(--ss-ink);
    height: 80px;
    border-bottom: 2px solid var(--ss-surface);
}

.logo img {
    max-height: 54px;
    width: auto;
}

header nav ul li {
    font-weight: 700;
    font-size: 24px;
    padding: 0 20px;
}

header nav ul li:last-child {
    padding-right: 0;
}

/* Primary content nav is never truly last (Members/Join Now follow) — keep the separator's spacing */
.ss-nav-primary ul li:last-child {
    padding-right: 20px;
}

header nav ul li:after {
    background-color: #595959;
    height: 18px;
    position: absolute;
    right: 0;
    width: 1px;
    content: '';
    top: 50%;
    transform: translateY(-50%);
}

header nav ul li.lastLink:after, header nav ul li.getAccess:after {
    display: none;
}

header nav ul li.getAccess {
    border: 0;
    font-weight: 800;
    padding: 0;
}

header nav ul li a {
    color: var(--ss-bg);
    padding: 0 4px;
    line-height: 48px;
    display: block;
    position: relative;
}

header nav ul li a:before {
    height: 3px;
    position: absolute;
    left: 51%;
    right: 51%;
    content: '';
    background-color: #fedf00;
    bottom: 0;
    transition: all 200ms ease-in;
}

header nav ul li a:hover:before, header nav ul li a.active:before {
    left: 0;
    right: 0;
}

header nav ul li a:hover {
    color: var(--ss-accent-cyan);
}

header nav ul li.getAccess a:before, header nav ul li.getAccess a:hover:before {
    display: none;
}

header nav ul li.getAccess a {
    padding: 0 28px;
    background-image: linear-gradient(to bottom, var(--ss-gradient-green-start), var(--ss-gradient-green-end));
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Barlow', sans-serif;
    font-weight: 900;
    font-size: 27px;
    text-shadow: 4px 1px 2px rgba(0, 0, 0, 0.1);
}

header nav ul li.getAccess a:hover {
    background-image: linear-gradient(to bottom, var(--ss-gradient-pink-start), var(--ss-accent-pink));
    color: var(--ss-bg);
}

/* Mobile nav toggle (Bootstrap collapse variant) */
.ss-nav-toggler {
    background: none;
    border: none;
    color: var(--ss-bg);
    font-size: 22px;
    cursor: pointer;
    padding: 8px;
    display: none;
}

/* ---- Header search (shared search toggle) ---- */
.ss-search-wrap {
    margin-left: 14px;
}

.ss-search-btn {
    background: none;
    border: none;
    color: var(--ss-bg);
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
}

.ss-search-btn:hover {
    color: var(--ss-accent-cyan);
}

.ss-search-form {
    right: 0;
    top: calc(100% + 8px);
    min-width: 280px;
    background: var(--ss-surface);
    border: 1px solid var(--ss-border-dark);
    border-radius: 4px;
    padding: 6px;
    z-index: 200;
}

.ss-search-input {
    flex: 1;
    background: var(--ss-ink);
    border: 1px solid var(--ss-border-dark);
    border-radius: 3px 0 0 3px;
    color: var(--ss-bg);
    font-size: 16px;
    padding: 8px 12px;
    font-family: inherit;
    outline: none;
}

.ss-search-input::placeholder {
    color: var(--ss-text-placeholder);
}

.ss-search-input:focus {
    border-color: var(--ss-accent-cyan);
}

.ss-search-submit {
    background: var(--ss-accent-cyan);
    border: none;
    color: var(--ss-ink);
    font-size: 16px;
    padding: 8px 14px;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
}

.ss-search-submit:hover {
    background: var(--ss-accent-orange);
    color: var(--ss-bg);
}

/* ---- Banner (homepage hero image) ---- */
.banner { line-height: 0; }

/* ---- Video sections ---- */
.iVideos {
    padding-top: 36px;
    padding-bottom: 35px;
}

.title {
    padding-bottom: 21px;
}

.title h1 {
    font-size: 36px;
    color: var(--ss-ink);
    line-height: 43px;
    font-weight: 900;
    margin: 0;
}

.title h1 span {
    border-bottom: 3px solid var(--ss-accent-orange);
    line-height: 39px;
}

.viewall,
.sort {
    border-radius: 5px;
    min-width: 142px;
    border: 2px solid var(--ss-accent-purple);
    line-height: 34px;
    padding-left: 11px;
    padding-right: 11px;
    color: var(--ss-accent-purple);
    font-weight: 700;
    font-size: 23px;
}

.viewall i,
.sort i {
    font-size: 20px;
    color: var(--ss-accent-orange);
    margin-left: 40px;
}

.viewall:hover,
.sort:hover {
    color: var(--ss-accent-pink);
}

.viewall:hover i,
.sort:hover i {
    color: var(--ss-accent-green);
}

.videoBlock {
    border-radius: 10px;
}

.ss-media-card > a {
    color: inherit;
}

.ss-media-cover {
    background-color: rgba(0, 0, 0, 0.75);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ss-media-locked {
    top: 10px;
    right: 10px;
    z-index: 1;
    background: rgba(0, 0, 0, 0.7);
    color: var(--ss-bg);
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 3px;
    opacity: 1;
}

.videoplay {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -60%);
}

.videoplay .play {
    width: 120px;
    height: 120px;
    background: url(../img/playicon.png) no-repeat center;
    background-size: contain;
}

.ss-media-title {
    padding: 0 16px;
}

.ss-media-title h2 {
    font-weight: 700;
    font-size: 26px;
    color: #fbfbfb;
    line-height: 55px;
}

.ss-media-card:hover .ss-media-cover {
    opacity: 1;
}

.videoBlock:hover .ss-media-title h2 {
    color: var(--ss-bg);
}

/* ---- Join CTA strip ---- */
.joinArea {
    padding: 46px 0 52px;
    margin-bottom: 16px;
}

.joinArea p {
    font-size: 41px;
    font-weight: 700;
    color: var(--ss-accent-orange);
    padding-bottom: 16px;
}

.joinArea p span {
    color: #0ebe0f;
}

.ss-join-button {
    color: var(--ss-bg);
    text-shadow: 4px 1px 2px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    background-image: linear-gradient(to bottom, var(--ss-gradient-green-start), var(--ss-gradient-green-end));
}

.ss-join-button:hover {
    background-image: linear-gradient(to bottom, var(--ss-gradient-pink-start), var(--ss-accent-pink));
    color: var(--ss-bg);
}

.getPass {
    font-size: 80px;
    font-weight: 800;
    line-height: 117px;
    padding: 0 53px;
}

/* ---- Models section ---- */
.imodels,
.icategories {
    padding-top: 36px;
    padding-bottom: 46px;
}

.modelBlock,
.categoriesBlock {
    border-radius: 8px;
}

.videoBlock .ss-media-title h2 {
    font-weight: 600;
}

/* ---- Banner feature strip ---- */
.bannerArea {
    margin-bottom: 0;
}

body > .container-xxl.mb-5:not(:has(:not(script, style))),
body > .container-xxl.mb-5:has(> .bannerArea:last-child) {
    margin-bottom: 0 !important;
}

.bannerLPic {
    width: 60%;
    flex-shrink: 1;
}

.bannerInfo {
    background-color: var(--ss-surface);
    flex-basis: 0;
    min-width: 0;
    padding: 22px 18px 15px;
}

.bannerInfo ul {
    padding-bottom: 3px;
}

.bannerInfo ul li {
    font-weight: 700;
    font-size: 40px;
    background: var(--ss-pure-black);
    margin-bottom: 6px;
    border-radius: 3px;
    line-height: 68px;
    padding-left: 78px;
}

.bannerInfo ul li:before {
    content: "";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'%3E%3Cpath%20d='M256%20512A256%20256%200%201%200%20256%200a256%20256%200%201%200%200%20512zM369%20209L241%20337c-9.4%209.4-24.6%209.4-33.9%200l-64-64c-9.4-9.4-9.4-24.6%200-33.9s24.6-9.4%2033.9%200l47%2047L335%20175c9.4-9.4%2024.6-9.4%2033.9%200s9.4%2024.6%200%2033.9z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'%3E%3Cpath%20d='M256%20512A256%20256%200%201%200%20256%200a256%20256%200%201%200%200%20512zM369%20209L241%20337c-9.4%209.4-24.6%209.4-33.9%200l-64-64c-9.4-9.4-9.4-24.6%200-33.9s24.6-9.4%2033.9%200l47%2047L335%20175c9.4-9.4%2024.6-9.4%2033.9%200s9.4%2024.6%200%2033.9z'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.bannerInfo ul li:nth-child(1) {
    color: var(--ss-accent-red);
}

.bannerInfo ul li:nth-child(2) {
    color: #fdd600;
}

.bannerInfo ul li:nth-child(3) {
    color: var(--ss-accent-green);
}

.bannerInfo ul li:nth-child(4) {
    color: var(--ss-accent-cyan);
}

.bannerInfo ul li:nth-child(5) {
    color: var(--ss-accent-pink);
}

.getPassword {
    font-size: 66px;
    font-weight: 900;
    line-height: 100px;
    margin-top: 20px;
    padding: 0 53px;
}

/* ---- Footer ---- */
footer {
    background-color: var(--ss-ink);
    margin-top: auto;
    flex-shrink: 0;
}

footer .centerwrap {
    height: 70px;
}

.fSmallLogo {
    margin-right: 20px;
}

.fSmallLogo img {
    max-width: 60px;
}

.fRight {
    align-items: flex-end;
}

.fRight ul {
    justify-content: flex-end;
    padding-bottom: 8px;
}

.fRight ul li {
    font-size: 18px;
    font-weight: 700;
    padding-right: 20px;
    padding-left: 18px;
    list-style: none;
}

.fRight ul li:after {
    width: 1px;
    height: 14px;
    background-color: #676767;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    content: '';
}

.fRight ul li:last-child {
    padding-right: 0;
}

.fRight ul li:last-child:after {
    display: none;
}

.fRight ul li a {
    color: var(--ss-bg);
}

.fRight ul li a.joinNow {
    color: #15e016;
}

.fRight ul li a.active, .fRight ul li a:hover {
    color: var(--ss-accent-cyan);
}

.fRight p {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    color: #8b8a8a;
    font-weight: 400;
}

.fRight p a {
    color: #8b8a8a;
}

.fRight p a:hover {
    color: var(--ss-bg);
}

/* ---- Videos page ---- */
.ss-catalog-page {
    padding-top: 84px;
}

.pagination-wrap {
    padding-top: 60px;
    padding-bottom: 86px;
}

.pagination-wrap .pagination {
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.pagination .page-item {
    padding: 0;
}

.pagination .page-link {
    font-weight: 700;
    font-size: 25px;
    color: var(--ss-accent-purple);
    background: transparent;
    border: 3px solid var(--ss-accent-purple);
    height: 50px;
    width: 50px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.pagination .page-item.active .page-link,
.pagination .page-item:not(.disabled) .page-link:hover {
    background-color: transparent;
    border-color: var(--ss-accent-orange);
    color: var(--ss-accent-orange);
}

.pagination .page-link:focus {
    box-shadow: none;
}

.pagination .page-item:last-child .page-link {
    color: var(--ss-accent-orange);
}

.pagination .page-item.disabled {
    display: none;
}

/* Sort dropdown (Bootstrap) */
.sortMenu {
    min-width: 100%;
    margin: 5px 0 0;
    background: var(--ss-bg);
    border: 2px solid var(--ss-accent-purple);
    border-radius: 5px;
    z-index: 100;
}

.sortMenu li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #ddd;
}

.sortMenu li:last-child {
    border-bottom: none;
}

.sortMenu li a {
    padding: 8px 12px;
    color: var(--ss-accent-purple);
    font-weight: 700;
    font-size: 18px;
}

.sortMenu li a:hover,
.sortMenu li a:focus,
.sortMenu li a.active {
    color: var(--ss-accent-pink);
    background: #f5f5f5;
}

.iAllcategories {
    padding-bottom: 50px;
}

.categoriesBlock > a:hover .categoriesTitle h2 {
    color: #fdd600;
}

.categoriesmodel {
    line-height: 0;
}

.categoriesTitle {
    padding: 0 16px;
}

.categoriesTitle h2 {
    font-weight: 700;
    font-size: 26px;
    color: #fbfbfb;
    line-height: 35px;
    padding-left: 0;
}

.categoriesCover {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, .9));
    padding: 15px 12px 7px;
    transition: all 500ms ease;
}

/* ---- Video preview/player page ---- */
.videoPreview {
    padding-top: 68px;
    padding-bottom: 108px;
}

.relatedVideos {
    padding-bottom: 58px;
}

.videoLeft {
    width: 1305px;
}

/* Member watch page has no previewRight sidebar (no share/save actions) — let the player take the full row. */
.centerwrap:not(:has(.previewRight)) > .videoLeft {
    width: 100%;
}

.videoHere {
    aspect-ratio: 16/9;
    background: var(--ss-pure-black);
    margin-bottom: 14px;
}

.videoHere video,
.videoHere iframe,
.videoHere .video-js {
    border: none;
}

.previewRight {
    width: 536px;
    padding-top: 30px;
}

.previewRight h1,
.joinPage h1 {
    background: none;
    font-size: 36px;
    color: var(--ss-ink);
    line-height: 43px;
    font-weight: 900;
    margin: 0 0 21px;
}

.previewRight h1 span,
.joinPage h1 span,
.loginPage h1 span {
    border-bottom: 3px solid var(--ss-accent-orange);
    line-height: 39px;
}

.memberShipO {
    padding-bottom: 40px;
    padding-top: 13px;
}

.memberShipO h2, .paymentMethod h2 {
    font-size: 28px;
    font-weight: 900;
    color: var(--ss-accent-purple);
    padding-bottom: 15px;
}

.membershipArea label {
    cursor: pointer;
    background-color: var(--ss-ink);
    border-radius: 4px;
    height: 75px;
    margin-bottom: 6px;
    padding-left: 18px;
    padding-right: 16px;
    transition: background-color .2s ease;
}

.memberMonths {
    font-size: 25px;
    color: var(--ss-bg);
    font-weight: 700;
}

.membershipArea .memberMonths {
    color: var(--ss-plan-accent);
}

.memberMonths span {
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    color: var(--ss-bg);
}

.memberPrice {
    font-weight: 900;
    color: var(--ss-bg);
    font-size: 27px;
    margin-left: auto;
}

.memberPrice sub {
    font-size: 13px;
    font-weight: 400;
    color: var(--ss-bg);
    top: -6px;
    padding-left: 2px;
}

.membershipArea label:hover,
.membershipArea label:has(input:checked) {
    background-color: var(--ss-plan-accent);
}

.membershipArea label:hover .memberMonths,
.membershipArea label:has(input:checked) .memberMonths {
    color: var(--ss-bg);
}

.previewInfo h1 {
    font-size: 30px;
    font-weight: 700;
    color: var(--ss-accent-pink);
    padding-bottom: 8px;
}

.previewFeatures li {
    font-weight: 400;
    font-size: 16px;
    color: var(--ss-text-muted);
    margin-right: 16px;
    list-style: none;
}

.previewFeatures li:last-child {
    margin-right: 0;
}

.previewFeatures li i {
    margin-right: 6px;
}

.previewFeatures li:first-child i {
    color: var(--ss-accent-pink);
}

.previewFeatures li:last-child i {
    color: var(--ss-accent-orange);
}

.previewInfo p {
    font-size: 17px;
    line-height: 21px;
    font-weight: 400;
    color: var(--ss-text-muted);
    margin-bottom: 20px;
}

.description {
    padding-top: 12px;
    padding-bottom: 40px;
}

.description h4 {
    font-size: 17px;
    color: #ff00ff;
    font-weight: 400;
    line-height: 24px;
}

.description p {
    font-size: 17px;
    color: var(--ss-pure-black);
    font-weight: 400;
    line-height: 24px;
}

.categoryButtons {
    margin-top: 20px;
}

.categoryButtons li {
    font-size: 21px;
    margin-right: 8px;
    margin-bottom: 8px;
    list-style: none;
}

.categoryButtons li a {
    color: #2ac7cc;
    background-color: var(--ss-bg);
    line-height: 36px;
    padding-right: 15px;
    padding-left: 13px;
    border: 2px solid #2ac7cc;
    border-radius: 4px;
    font-weight: 700;
}

.categoryButtons li a i {
    font-size: 17px;
    margin-right: 7px;
    color: #2ac7cc;
}

.categoryButtons li a:hover {
    color: var(--ss-accent-orange);
    border-color: var(--ss-accent-orange);
}

.categoryButtons li a:hover i {
    color: var(--ss-accent-red);
}

.complete,
.cMembership {
    padding-bottom: 44px;
}

.complete button {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 80px;
    cursor: pointer;
}

.complete button i,
.cMembership button i {
    font-size: 60px;
    margin-left: 30px;
}

/* Video preview lock/unlock overlay */
.preview-lock-overlay {
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.preview-lock-icon {
    font-size: 48px;
    color: var(--ss-accent-orange);
    margin-bottom: 12px;
}

.preview-lock-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--ss-bg);
}

/* ---- Join page ---- */
.joinPage,
.loginPage {
    width: 1088px;
    margin: auto;
    padding-top: 56px;
}

.joinPage {
    padding-bottom: 86px;
}

.accountBlocks,
.loginaccountBlocks,
.accountLinks {
    gap: 12px;
}

.accountBlock {
    width: 430px;
    padding-top: 35px;
}

.accountBlock label,
.loginaccountBlock label {
    font-size: 22px;
    font-weight: 500;
    color: var(--ss-pure-black);
    padding-bottom: 8px;
}

.userBox {
    border: 1px solid var(--ss-pure-black);
    background-color: var(--ss-bg);
    height: 55px;
    font-weight: 500;
    padding: 0 14px;
    border-radius: 3px;
    font-size: 16px;
}

.paymentMethod {
    margin-bottom: 48px;
}

.paymentMode {
    gap: 12px;
}

.paymentMode label {
    padding: 0 15px;
    font-size: 21px;
    border: 1px solid var(--ss-pure-black);
    cursor: pointer;
    background-color: var(--ss-bg);
    border-radius: 4px;
    height: 56px;
    min-width: 222px;
    color: var(--ss-pure-black);
    transition: all 200ms ease;
}

.paymentMode label i {
    font-size: 18px;
    margin-right: 10px;
}

.paymentMode label:hover {
    background-color: var(--ss-ink);
    color: var(--ss-bg);
    border-color: var(--ss-ink);
}

.paymentMode label:has(input:checked) {
    background-color: var(--ss-ink);
    color: var(--ss-bg);
    border-color: #01e8fd;
}

.paymentMode label:has(input:checked) i {
    color: #01e8fd;
}

.selectmembership {
    margin-bottom: 48px;
}

.memberShipPlans {
    gap: 24px;
}

.mPlans {
    width: 356px;
    height: 348px;
    background-color: var(--ss-ink);
    border-radius: 5px;
    padding: 7px;
    cursor: pointer;
}

.days {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    color: #18181b;
    font-size: 48px;
    height: 75px;
    background-color: var(--ss-bg);
    border-radius: 5px;
    line-height: 65px;
    padding-top: 3px;
    padding-bottom: 3px;
}

.price {
    color: var(--ss-bg);
    padding-top: 19px;
}

.price sup {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 48px;
    letter-spacing: -0.005em;
    padding: 0 4px;
}

.price span {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 165px;
    letter-spacing: -0.005em;
    line-height: 140px;
}

.selectPlan {
    height: 59px;
    width: 263px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #f4f4f4;
    margin-top: 12px;
    border: 0;
}

.selectPlan:hover {
    background: #ff00ff;
}

.billedPayment {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--ss-bg);
    padding-top: 11px;
    padding-bottom: 3px;
}

.monthText {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: var(--ss-bg);
    top: 129px;
    right: 23px;
}

.mPlans1, .option1 { --ss-plan-accent: var(--ss-accent-orange); }
.mPlans2, .option2 { --ss-plan-accent: var(--ss-accent-pink); }
.mPlans3, .option3 { --ss-plan-accent: var(--ss-accent-green); }

.mPlans .days {
    background-color: var(--ss-ink);
    border: 2px solid var(--ss-plan-accent);
    color: var(--ss-plan-accent);
}

.mPlans .selectPlan {
    background: var(--ss-plan-accent);
}

.mPlans .selectPlan:hover,
.mPlans:has(input:checked) .selectPlan {
    background: var(--ss-pure-black);
    border: 2px solid var(--ss-plan-accent);
}

.cMembership {
    padding-top: 24px;
}

.cMembership button {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 80px;
    font-weight: 900;
    line-height: 96px;
    padding: 0 83px;
    cursor: pointer;
}

/* ---- Login page ---- */
.loginPage {
    padding-bottom: 16px;
}

.loginPage h1 {
    background: none;
    font-size: 36px;
    color: var(--ss-pure-black);
    line-height: 43px;
    font-weight: 900;
    margin: 0 0 21px;
}

.notmember {
    margin-bottom: 8px;
}

.notmember h1 a {
    color: var(--ss-pure-black);
    border-bottom: 3px solid var(--ss-accent-orange);
    line-height: 39px;
}

.notmember h1 .notMemberText {
    color: var(--ss-pure-black);
}

.notmember h1 .joinText {
    color: var(--ss-accent-pink);
}

.notmember h1 .notMemberText:hover, .notmember h1 .joinText:hover {
    color: var(--ss-accent-orange);
}

.accountLinks {
    padding-top: 26px;
    padding-bottom: 55px;
    font-size: 16px;
    font-weight: 400;
}

.accountLinks a {
    color: #4b4b4b;
}

.accountLinks a:hover {
    color: var(--ss-accent-pink);
}

.accountLinks span {
    color: var(--ss-pure-black);
}

.accountD {
    width: 884px;
    margin: 0 auto;
}

.accountD,
.loginaccountD {
    padding-bottom: 38px;
}

.accountImage {
    position: absolute;
    width: 310px;
    height: 310px;
    top: -25px;
    left: calc(50% - 800px);
}

.accountImage img {
    display: block;
    width: 310px;
    height: 310px;
    object-fit: cover;
    border-radius: 5px;
}

.loginaccountBlock {
    width: 370px;
    padding-top: 35px;
}

/* ---- Model bio page ---- */
.modelBioArea {
    padding-bottom: 107px;
    padding-top: 56px;
}

.bioPic {
    float: left;
    width: 499px;
}

.bioDetails {
    width: 1328px;
    float: right;
}

.stats {
    padding-bottom: 3px;
}

.stats h2 {
    font-size: 24px;
    color: var(--ss-accent-pink);
    font-weight: 700;
    padding-bottom: 10px;
}

.stats ul {
    float: left;
    padding: 0;
    margin: 0;
}

.stats ul li {
    font-weight: 700;
    font-size: 17px;
    line-height: 32px;
    color: var(--ss-text-muted);
    list-style: none;
}

.stats ul li span {
    color: #2ac7cc;
}

.aboutArea p {
    font-weight: 400;
    font-size: 17px;
    line-height: 24px;
    color: var(--ss-text-muted);
    padding-bottom: 30px;
    padding-top: 10px;
}

/* ---- Supplemental: auth card (forgot/reset password) ---- */
.ss-auth-page {
    padding-top: 60px;
    padding-bottom: 80px;
}

/* Login modal (no design mockup — reuses the auth-card look) */
.ss-auth-modal {
    background: var(--ss-bg);
    border: none;
    border-radius: 8px;
}

.ss-auth-card {
    background: var(--ss-bg);
    border-radius: 8px;
    padding: 36px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    max-width: 460px;
    margin: 0 auto;
}

.ss-auth-card h4, .ss-auth-card h5 {
    font-family: 'Barlow Condensed', sans-serif;
    color: var(--ss-ink);
    margin-bottom: 8px;
}

.ss-auth-card h4 {
    font-size: 22px;
    font-weight: 900;
    border-bottom: 2px solid var(--ss-accent-orange);
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.ss-auth-card h5 {
    font-size: 15px;
    font-weight: 400;
    color: var(--ss-text-muted);
    margin-bottom: 20px;
}

.ss-auth-card .btn-danger {
    background-image: linear-gradient(to bottom, var(--ss-gradient-green-start), var(--ss-gradient-green-end));
    border: none;
    font-weight: 700;
    font-size: 18px;
    padding: 12px;
}

.ss-auth-card .btn-danger:hover {
    background-image: linear-gradient(to bottom, var(--ss-gradient-pink-start), var(--ss-accent-pink));
}

.auth-link {
    color: var(--ss-accent-purple);
    font-size: 14px;
}

.auth-link:hover {
    color: var(--ss-accent-pink);
}

.auth-status {
    color: var(--ss-accent-green);
    font-weight: 700;
    margin-bottom: 16px;
}

.js-login-error {
    color: var(--ss-accent-red);
    font-size: 13px;
    margin-top: 4px;
}

/* Floating label inputs */
.floating-label {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    transition: all 0.15s ease;
    pointer-events: none;
    color: var(--ss-text-placeholder);
    font-size: 15px;
    background: transparent;
    z-index: 1;
}

.form-control:focus ~ .floating-label,
.form-control:not(:placeholder-shown) ~ .floating-label {
    top: -8px;
    transform: none;
    font-size: 11px;
    background: var(--ss-bg);
    padding: 0 4px;
    color: var(--ss-accent-purple);
}

.auth-control {
    border-color: #ccc;
    height: 48px;
}

.auth-control:focus {
    border-color: var(--ss-accent-purple);
    box-shadow: 0 0 0 2px rgba(77, 42, 124, 0.15);
}

.password-toggle-btn {
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--ss-text-muted);
    z-index: 5;
}

/* ---- Supplemental: video watch/player page ---- */
.ss-watch-page {
    padding-top: 40px;
    padding-bottom: 60px;
}

.ss-watch-back {
    font-size: 15px;
    color: var(--ss-accent-purple);
    margin-bottom: 20px;
}

.ss-watch-back:hover {
    color: var(--ss-accent-orange);
}

.ss-watch-back svg {
    flex-shrink: 0;
}

.ss-watch-player-badge {
    background: rgba(0, 0, 0, 0.7);
    color: var(--ss-accent-cyan);
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 3px;
    margin-top: 8px;
}

/* ---- Supplemental: comment panel ---- */
.watch-comments-panel {
    border-top: 2px solid var(--ss-accent-orange);
}

.watch-comments-panel h2 {
    font-size: 22px;
    font-weight: 900;
    color: var(--ss-ink);
}

.watch-comment-form {
    margin-bottom: 24px;
}

.watch-comment-input {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    font-size: 15px;
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.watch-comment-form-actions {
    margin-top: 8px;
}

.watch-comment-submit {
    background-color: var(--ss-accent-purple);
    color: var(--ss-bg);
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.watch-comment-submit:hover {
    background-color: var(--ss-accent-orange);
}

.watch-comment {
    padding: 14px 0;
    border-bottom: 1px solid #eee;
}

.watch-comment-meta {
    font-size: 13px;
    color: var(--ss-text-muted);
    margin-bottom: 4px;
}

.comment-username {
    font-weight: 700;
    color: var(--ss-accent-purple);
    cursor: pointer;
    font-size: 14px;
    font-family: inherit;
}

.comment-username:hover {
    color: var(--ss-accent-orange);
}

.watch-comment-text {
    font-size: 15px;
    color: var(--ss-border-dark);
    line-height: 1.5;
}

.watch-comment-votes,
.ss-video-votes {
    gap: 6px;
    color: var(--ss-text-muted);
    font-size: 14px;
    margin-top: 6px;
}

.ss-video-votes .vote {
    cursor: pointer;
    color: var(--ss-text-muted);
    transition: color 0.2s;
}

.ss-video-votes .vote:hover {
    color: var(--ss-accent-orange);
}

.watch-comment-votes .vote {
    cursor: pointer;
    color: var(--ss-text-muted);
    transition: color 0.2s;
}

.watch-comment-votes .vote:hover, .watch-comment-votes .vote-active {
    color: var(--ss-accent-orange);
}

.watch-comment-notice {
    font-size: 14px;
    color: var(--ss-text-muted);
    font-style: italic;
    padding: 8px 0;
}

/* Related video cards in sidebar */
.vcard {
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: var(--ss-ink);
}

.vcard:hover .vcard-title {
    color: var(--ss-accent-orange);
}

.vcard-thumb {
    flex: 0 0 130px;
    border-radius: 6px;
    line-height: 0;
}

.vcard-duration {
    bottom: 4px;
    right: 4px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--ss-bg);
    font-size: 12px;
    padding: 1px 5px;
    border-radius: 3px;
}

.vcard-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--ss-ink);
    line-height: 1.4;
    transition: color 0.2s;
}

.ss-upnext-title {
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--ss-ink);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--ss-accent-orange);
    margin-bottom: 10px;
}

/* Category pills */
.vid-pills {
    gap: 10px;
    margin-bottom: 24px;
}

.pill {
    background: #f0eaf8;
    border: 2px solid var(--ss-accent-purple);
    color: var(--ss-accent-purple);
    font-size: 14px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    transition: all 0.2s;
}

.pill.active, .pill:hover {
    background: var(--ss-accent-purple);
    color: var(--ss-bg);
}

/* Video grid wrapper for favorites/search/category pages */
.vid-empty {
    padding: 40px;
    font-size: 18px;
    color: var(--ss-text-muted);
}

.search-summary {
    font-size: 18px;
    color: var(--ss-text-muted);
    margin: 0;
}

/* ---- Supplemental: account/profile pages ---- */
.ss-acct-hero {
    background: var(--ss-ink);
    padding: 50px 20px;
    border-bottom: 2px solid var(--ss-surface);
    margin-bottom: 40px;
}

.ss-acct-hero .centerwrap {
    text-align: center;
}

.ss-acct-eyebrow {
    font-size: 13px;
    font-weight: 700;
    color: var(--ss-text-muted);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.ss-acct-hero h1 {
    font-size: 36px;
    font-weight: 900;
    color: var(--ss-bg);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.ss-acct-hero p {
    font-size: 17px;
    color: var(--ss-text-soft);
    margin: 0;
}

.ss-acct-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.ss-acct-card {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
}

.ss-acct-card-title {
    font-size: 18px;
    font-weight: 900;
    color: var(--ss-ink);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--ss-accent-orange);
}

.ss-acct-row {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    gap: 8px;
}

.ss-acct-row:last-child {
    border-bottom: none;
}

.ss-acct-label {
    font-weight: 700;
    color: var(--ss-ink);
    font-size: 15px;
}

.ss-acct-value {
    font-size: 15px;
    color: #4b4b4b;
}

.ss-acct-status {
    gap: 6px;
    color: var(--ss-accent-green);
    font-weight: 700;
}

.ss-acct-status-dot {
    width: 8px;
    height: 8px;
    background: var(--ss-accent-green);
    border-radius: 50%;
    display: inline-block;
}

.ss-acct-btn {
    border-radius: 4px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
}

.ss-acct-btn-cancel {
    background: var(--ss-accent-red);
    color: var(--ss-bg);
}

.ss-acct-btn-cancel:hover {
    background: #c0101a;
    color: var(--ss-bg);
}

.ss-acct-btn-primary {
    background: var(--ss-accent-purple);
    color: var(--ss-bg);
}

.ss-acct-btn-primary:hover {
    background: var(--ss-accent-orange);
    color: var(--ss-bg);
}

.ss-profile-page {
    background: #f8f8f8;
    flex-grow: 1;
}

.ss-profile-width {
    max-width: 1100px;
    padding: 0 20px;
}

.ss-profile-hero {
    background: var(--ss-ink);
    border-radius: 8px;
}

.ss-profile-hero h1 {
    color: var(--ss-bg);
}

.ss-profile-avatar {
    width: 64px;
    height: 64px;
    background: var(--ss-accent-purple);
    color: var(--ss-bg);
    font-size: 26px;
}

.ss-profile-icon {
    width: 40px;
    height: 40px;
    background: #f0eaf8;
    color: var(--ss-accent-purple);
    font-size: 16px;
}

.ss-profile-muted {
    color: var(--ss-text-muted);
}

/* ---- Shared membership selection ---- */
.price-select {
    background: var(--ss-ink);
    border-radius: 8px;
    padding: 24px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
    color: var(--ss-bg);
    user-select: none;
}

.price-select.selected, .price-select:hover {
    border-color: var(--ss-accent-orange);
}

/* ---- Cookie banner ---- */
#cookie-banner {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ss-surface);
    color: var(--ss-bg);
    padding: 14px 24px;
    border-radius: 6px;
    gap: 20px;
    z-index: 9999;
    font-size: 14px;
    max-width: 600px;
    width: calc(100% - 40px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

#cookie-banner a {
    color: var(--ss-accent-cyan);
}

#accept-cookies {
    background-image: linear-gradient(to bottom, var(--ss-gradient-green-start), var(--ss-gradient-green-end));
    border: none;
    color: var(--ss-bg);
    text-shadow: 4px 1px 2px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 8px 20px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

#accept-cookies:hover {
    background-image: linear-gradient(to bottom, var(--ss-gradient-pink-start), var(--ss-accent-pink));
}

/* ---- Utilities ---- */
.lg-link {
    color: var(--ss-accent-cyan);
}

.lg-link:hover {
    color: var(--ss-accent-orange);
}

/* ================================================================
   RESPONSIVE / MEDIA QUERIES (from design's media.css)
   ================================================================ */

@media only screen and (max-width: 1900px) {
    .centerwrap {
        width: calc(100% - 40px);
        max-width: 1869px;
    }

    header nav ul li {
        font-size: 22px;
        padding: 0 18px;
    }

    .ss-media-title h2 {
        font-size: 18px;
        line-height: 50px;
    }

    .joinArea {
        padding-top: 40px;
        padding-bottom: 42px;
        margin-bottom: 10px;
    }

    .bannerLPic {
        width: 60%;
    }

    .bannerInfo ul li {
        font-size: 30px;
        padding-left: 56px;
        line-height: 68px;
        margin-bottom: 5px;
    }

    .getPassword {
        font-size: 50px;
        line-height: 90px;
        padding: 0 48px;
        margin-top: 14px;
    }

    .bannerInfo {
        padding: 16px 16px 15px;
    }

    .ss-catalog-page {
        padding-top: 64px;
    }

    .pagination-wrap {
        padding-top: 50px;
        padding-bottom: 76px;
    }

    .videoPreview {
        padding-top: 64px;
        padding-bottom: 90px;
    }

    .videoLeft {
        width: 70%;
    }

    .previewRight {
        width: 29%;
    }

    .membershipArea label {
        margin-bottom: 12px;
    }

    .relatedVideos {
        padding-bottom: 50px;
    }

    .modelBioArea {
        padding-bottom: 90px;
        padding-top: 64px;
    }

    .bioPic {
        width: 400px;
    }

    .bioPic img {
        width: 100%;
        height: auto;
    }

    .bioDetails {
        width: calc(100% - 440px);
    }

    .stats h2 {
        font-size: 22px;
    }

    .stats ul li {
        font-size: 16px;
        line-height: 25px;
    }

    .aboutArea p {
        font-size: 16px;
        line-height: 23px;
        padding-bottom: 25px;
        padding-top: 8px;
    }
}

@media only screen and (max-width: 1590px) {
    .centerwrap {
        width: calc(100% - 40px);
        max-width: 1550px;
    }

    header {
        height: 64px;
    }

    .logo {
        width: 300px;
    }

    header nav ul li {
        font-size: 18px;
        padding: 0 14px 0 12px;
    }

    header nav ul li a {
        line-height: 42px;
        padding: 0 2px;
    }

    header nav ul li.getAccess a {
        padding: 0 22px;
    }

    header nav ul li a::before {
        bottom: 3px;
    }

    .title h1 {
        font-size: 29px;
        line-height: 35px;
    }

    .title h1 span {
        line-height: 42px;
        border-width: 2px;
    }

    .viewall {
        line-height: 32px;
        padding-left: 15px;
        padding-right: 10px;
        font-size: 19px;
        min-width: 130px;
    }

    .iVideos {
        padding-top: 26px;
        padding-bottom: 26px;
    }

    .title {
        padding-bottom: 16px;
    }

    .joinArea p {
        font-size: 34px;
        padding-bottom: 12px;
    }

    .getPass {
        font-size: 68px;
        line-height: 90px;
        padding: 0 46px;
    }

    .joinArea {
        padding-top: 30px;
        padding-bottom: 32px;
    }

    .bannerLPic {
        width: 60%;
    }

    .bannerInfo {
        padding: 10px 12px 10px;
        min-width: 0;
    }

    .bannerInfo ul li {
        font-size: 28px;
        padding-left: 60px;
        line-height: 57px;
        margin-bottom: 5px;
    }

    .getPassword {
        font-size: 32px;
        line-height: 70px;
        padding: 0 30px;
        margin-top: 5px;
    }

    .imodels {
        padding-top: 26px;
        padding-bottom: 26px;
    }

    .modelBlock {
        border-radius: 5px;
    }

    .fLogo {
        width: 260px;
    }

    .fRight ul li {
        padding-right: 16px;
        padding-left: 14px;
    }

    .ss-catalog-page {
        padding-top: 50px;
    }

    .sort {
        line-height: 32px;
        padding-left: 9px;
        padding-right: 10px;
        font-size: 19px;
        min-width: 160px;
    }

    .sort i {
        margin-left: 60px;
    }

    .pagination-wrap {
        padding-top: 40px;
        padding-bottom: 62px;
    }

    .pagination .page-link {
        font-size: 20px;
        width: 46px;
        height: 46px;
    }

    .videoPreview {
        padding-top: 50px;
        padding-bottom: 70px;
    }

    .membershipArea label {
        padding-left: 12px;
        padding-right: 12px;
        height: 68px;
        margin-bottom: 6px;
    }

    .memberPrice sub {
        font-size: 12px;
    }

    .paymentMethod {
        width: 100%;
        margin-bottom: 30px;
    }

    .memberMonths {
        font-size: 21px;
    }

    .memberMonths span {
        font-size: 13px;
    }

    .previewRight h2 {
        font-size: 27px;
        line-height: 35px;
        margin-bottom: 8px;
    }

    .previewRight h2 span {
        line-height: 35px;
        border-width: 2px;
    }

    .memberShipO {
        padding-bottom: 10px;
    }

    .memberShipO h2, .paymentMethod h2 {
        font-size: 22px;
        padding-bottom: 2px;
    }

    .paymentMode label {
        font-size: 18px;
        height: 50px;
        min-width: 170px;
    }

    .categoriesTitle h2 {
        font-size: 21px;
    }

    .joinPage {
        padding-top: 50px;
        padding-bottom: 70px;
    }

    .memberShipPlans {
        gap: 18px;
    }

    .mPlans {
        width: calc((100% - 36px) / 3);
    }

    .selectPlan {
        width: 90%;
    }

    .loginPage {
        width: calc(100% - 60px);
        max-width: 1088px;
        padding-top: 50px;
    }

    .accountImage {
        width: 270px;
        height: 270px;
        left: -70px;
        top: -5px;
    }

    .accountImage img {
        width: 270px;
        height: 270px;
    }

    .loginaccountBlocks {
        gap: 12px;
    }

    .loginaccountBlock {
        width: 310px;
    }

    .loginaccountBlock label {
        font-size: 22px;
        font-weight: 500;
        color: var(--ss-pure-black);
        padding-bottom: 8px;
    }

    .modelBioArea {
        padding-bottom: 80px;
        padding-top: 50px;
    }

    .bioPic {
        width: 350px;
    }

    .bioDetails {
        width: calc(100% - 380px);
    }

    .stats h2 {
        font-size: 21px;
    }

    .stats ul li {
        font-size: 15px;
        line-height: 21px;
    }

    .aboutArea p {
        font-size: 15px;
        line-height: 20px;
        padding-bottom: 22px;
        padding-top: 8px;
    }

}

@media only screen and (max-width: 1279px) {
    .centerwrap {
        width: calc(100% - 50px);
        max-width: 1250px;
    }

    header {
        height: 54px;
    }

    .logo {
        width: 260px;
    }

    header nav ul li {
        font-size: 16px;
        padding: 0 10px 0 8px;
    }

    header nav ul li a {
        line-height: 36px;
    }

    header nav ul li.getAccess a {
        padding: 0 16px;
    }

    header nav ul li a:before {
        height: 2px;
    }

    .title h1 {
        font-size: 24px;
        line-height: 30px;
    }

    .title h1 span {
        line-height: 33px;
    }

    .viewall {
        line-height: 31px;
        padding-left: 9px;
        padding-right: 12px;
        font-size: 19px;
        border-radius: 5px;
        border-width: 2px;
        min-width: 134px;
    }

    .viewall i {
        font-size: 16px;
        margin-left: 40px;
    }

    .title {
        padding-bottom: 12px;
    }

    .videoBlock {
        border-radius: 6px;
    }

    .getPass {
        font-size: 54px;
        line-height: 80px;
    }

    .joinArea p {
        font-size: 28px;
    }

    .bannerLPic {
        width: 60%;
    }

    .bannerInfo {
        padding: 8px;
    }

    .bannerInfo ul li {
        font-size: 33px;
        padding-left: 65px;
        line-height: 55px;
        margin-bottom: 4px;
    }

    .getPassword {
        font-size: 35px;
        line-height: 60px;
    }

    .modelBlock .ss-media-title h2 {
        font-size: 17px;
    }

    .iVideos {
        padding-top: 16px;
    }

    .imodels {
        padding-top: 16px;
    }

    .fRight ul li {
        font-size: 15px;
        padding-right: 12px;
        padding-left: 10px;
    }

    .fRight ul {
        padding-bottom: 6px;
    }

    footer .centerwrap {
        height: 60px;
    }

    .ss-catalog-page {
        padding-top: 40px;
    }

    .pagination-wrap {
        padding-top: 30px;
        padding-bottom: 50px;
    }

    .videoPreview {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .videoLeft {
        width: 61%;
    }

    .previewRight {
        width: 38%;
        padding-top: 0;
    }

    .categoryButtons li {
        font-size: 17px;
    }

    .categoryButtons li a {
        line-height: 30px;
    }

    .membershipArea label {
        margin-bottom: 8px;
    }

    .joinPage {
        width: calc(100% - 60px);
        max-width: 1088px;
    }

    .accountD {
        width: 95%;
    }

    .userBox {
        height: 50px;
    }

    .loginPage {
        width: calc(100% - 60px);
    }

    .accountImage {
        width: 200px;
        height: 200px;
        left: -20px;
        top: 5px;
    }

    .accountImage img {
        width: 200px;
        height: 200px;
    }

    .loginaccountBlocks {
        gap: 12px;
    }

    .loginaccountBlock {
        width: 280px;
    }

    .loginaccountBlock label {
        font-size: 18px;
        padding-bottom: 5px;
    }

}

@media only screen and (max-width: 1023px) {
    .centerwrap {
        width: calc(100% - 40px);
        max-width: 950px;
    }

    .logo {
        width: 240px;
    }

    /* Hide desktop nav and search, show mobile toggler */
    .ss-desktop-nav {
        display: none !important;
    }

    .ss-nav-toggler {
        display: block;
    }

    header {
        height: auto;
        min-height: 54px;
        flex-wrap: wrap;
    }

    header .centerwrap {
        flex-wrap: wrap;
        padding: 8px 0;
    }

    .ss-nav-collapse {
        width: 100%;
        flex-direction: column;
        background: var(--ss-ink);
        padding: 10px 0;
        order: 3;
    }

    .ss-nav-collapse.show {
        display: flex !important;
    }

    .ss-nav-collapse ul {
        flex-direction: column;
        width: 100%;
    }

    .ss-nav-collapse ul li {
        padding: 0;
        width: 100%;
        font-weight: 700;
        font-size: 20px;
        text-transform: uppercase;
    }

    .ss-nav-collapse ul li a {
        color: var(--ss-bg);
        line-height: 46px;
        padding: 0 20px;
        border-bottom: 1px solid var(--ss-surface);
    }

    .ss-nav-collapse ul li a:hover {
        color: var(--ss-accent-cyan);
    }

    .ss-nav-collapse ul li a:before {
        display: none;
    }

    .ss-nav-collapse ul li:after {
        display: none;
    }

    .ss-nav-collapse ul li.getAccess a {
        color: #15e016;
        border-radius: 0;
        padding: 0 20px;
        line-height: 50px;
    }

    .title h1 {
        font-size: 24px;
        line-height: 30px;
    }

    .title h1 span {
        line-height: 33px;
    }

    .viewall {
        line-height: 31px;
        padding-left: 9px;
        padding-right: 12px;
        font-size: 19px;
        border-radius: 5px;
        border-width: 2px;
        min-width: 134px;
    }

    .title {
        padding-bottom: 12px;
    }

    .joinArea p {
        font-size: 21px;
        padding-bottom: 10px;
    }

    .getPass {
        font-size: 41px;
        line-height: 70px;
        padding: 0 36px;
    }

    .joinArea {
        padding-top: 20px;
        padding-bottom: 22px;
    }

    .bannerArea {
        flex-wrap: wrap;
    }

    .bannerLPic {
        width: 100%;
    }

    .bannerInfo {
        padding: 12px;
    }

    .bannerInfo ul li {
        font-size: 30px;
        line-height: 56px;
    }

    .getPassword {
        font-size: 55px;
        line-height: 70px;
    }

    .fLogo {
        width: 240px;
        margin-bottom: 14px;
    }

    footer .centerwrap {
        flex-direction: column;
        height: auto;
    }

    .fRight {
        align-items: center;
    }

    footer {
        padding: 15px 0;
    }

    .fRight p {
        text-align: center;
    }

    .fRight ul li:last-child {
        padding-right: 12px;
    }

    .ss-catalog-page {
        padding-top: 30px;
    }

    .pagination .page-link {
        font-size: 18px;
        width: 42px;
        height: 42px;
        border-width: 2px;
    }

    .videoPreview .centerwrap {
        flex-wrap: wrap;
    }

    .videoLeft {
        width: 100%;
        padding-bottom: 40px;
    }

    .previewRight {
        width: 100%;
    }

    .joinPage {
        width: calc(100% - 60px);
        padding-top: 46px;
        padding-bottom: 70px;
    }

    .accountBlocks {
        gap: 18px;
    }

    .accountBlock {
        width: calc((100% - 18px) / 2);
    }

    .memberShipPlans {
        flex-wrap: wrap;
        gap: 24px;
    }

    .mPlans {
        width: calc((100% - 24px) / 2);
    }

    .loginPage {
        width: calc(100% - 50px);
    }

    .accountArea {
        display: flex;
        flex-direction: column;
    }

    .loginaccountD {
        order: 1;
    }

    .accountImage {
        position: static;
        order: 2;
        width: 310px;
        height: 300px;
        margin: 0 auto;
    }

    .accountImage img {
        width: 300px;
        height: 300px;
    }

    .loginaccountBlocks {
        gap: 12px;
    }

    .loginaccountBlock {
        width: 260px;
    }

    .accountLinks {
        padding-bottom: 10px;
    }

    .notmember {
        margin-top: 24px;
    }

    .modelBioArea {
        padding-bottom: 50px;
        padding-top: 35px;
        display: flex;
        flex-direction: column;
    }

    .bioDetails {
        display: contents;
    }

    .bioPic {
        order: 2;
        float: none;
        width: 100%;
        text-align: center;
        padding-bottom: 25px;
    }

    .bioPic img {
        width: 100%;
        height: auto;
    }

    .aboutArea {
        order: 3;
    }

    .stats {
        order: 4;
    }

    .stats h2 {
        font-size: 20px;
    }

    .stats ul {
        float: none;
        padding-right: 0;
    }

    .stats ul li {
        font-size: 15px;
        line-height: 27px;
    }

    .aboutArea p {
        font-size: 15px;
        line-height: 22px;
        padding-bottom: 20px;
        padding-top: 5px;
    }

}

@media only screen and (max-width: 767px) {
    .centerwrap {
        width: 96%;
    }

    .videoBlock .ss-media-title h2 {
        font-size: 19px;
    }

    .getPass {
        font-size: 32px;
        width: 100%;
        padding: 10px;
        line-height: 32px;
    }

    .joinArea p {
        font-size: 18px;
        padding-bottom: 6px;
    }

    .getPassword {
        font-size: 44px;
        line-height: 60px;
    }

    footer .centerwrap {
        height: auto;
        flex-wrap: wrap;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .fLogo {
        width: 260px;
        justify-content: center;
        padding-bottom: 5px;
    }

    .fMenu {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }

    .fSmallLogo {
        order: 2;
        width: 100%;
        margin-right: 0;
        padding-top: 15px;
        display: flex;
        justify-content: center;
    }

    .fRight {
        order: 1;
        width: 100%;
        align-items: center;
    }

    .fRight ul {
        justify-content: center;
        flex-wrap: wrap;
        padding-bottom: 10px;
    }

    .fRight ul li {
        font-size: 15px;
        padding-right: 12px;
        padding-left: 10px;
    }

    .fRight p {
        text-align: center;
        line-height: 16px;
    }

    .pagination-wrap {
        padding-top: 20px;
        padding-bottom: 40px;
    }

    .pagination .page-link {
        font-size: 17px;
        width: 40px;
        height: 40px;
    }

    /* Video preview */
    .previewInfo p {
        font-size: 14px;
        line-height: 20px;
    }

    .memberShipO {
        padding-bottom: 20px;
    }

    .memberMonths {
        font-size: 28px;
    }

    /* Join page */
    .joinPage {
        width: calc(100% - 40px);
        padding-bottom: 55px;
    }

    .joinPage h1 {
        font-size: 30px;
        line-height: 37px;
        margin-bottom: 18px;
    }

    .accountBlocks {
        flex-direction: column;
        gap: 0;
    }

    .accountBlock {
        width: 100%;
        padding-top: 22px;
    }

    .accountBlock label {
        font-size: 20px;
    }

    .accountD {
        padding-bottom: 32px;
    }

    .memberShipPlans {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .mPlans {
        width: 100%;
        max-width: 430px;
    }

    .memberShipPlans .mPlans3 {
        margin: 0;
    }

    .selectmembership {
        margin-bottom: 38px;
    }

    .paymentMethod {
        margin-bottom: 18px;
    }

    .paymentMode {
        gap: 10px;
    }

    .paymentMode label {
        width: calc((100% - 10px) / 2);
        font-size: 18px;
        padding: 0 10px;
    }

    .cMembership {
        padding-bottom: 15px;
    }

    .cMembership button {
        width: 100%;
        font-size: 52px;
        line-height: 82px;
        padding: 0 30px;
    }

    .cMembership button i {
        font-size: 42px;
        margin-left: 20px;
    }

    /* Mobile search in collapse menu */
    .ss-nav-search-mobile {
        padding: 8px 20px;
        border-bottom: 1px solid var(--ss-surface);
    }

    .ss-nav-search-mobile form {
        display: flex;
    }

    .ss-nav-search-mobile input {
        flex: 1;
        background: var(--ss-ink);
        border: 1px solid var(--ss-border-dark);
        border-radius: 3px 0 0 3px;
        color: var(--ss-bg);
        font-size: 16px;
        padding: 8px 12px;
        font-family: inherit;
        outline: none;
    }

    .ss-nav-search-mobile input::placeholder {
        color: var(--ss-text-placeholder);
    }

    .ss-nav-search-mobile input:focus {
        border-color: var(--ss-accent-cyan);
    }

    .ss-nav-search-mobile button {
        background: var(--ss-accent-cyan);
        border: none;
        color: var(--ss-ink);
        font-size: 16px;
        padding: 8px 14px;
        border-radius: 0 3px 3px 0;
        cursor: pointer;
    }

    .ss-nav-search-mobile button:hover {
        background: var(--ss-accent-orange);
        color: var(--ss-bg);
    }

}

@media only screen and (max-width: 479px) {
    .centerwrap {
        width: 94%;
    }

    .viewall {
        margin-top: 10px;
        padding-left: 14px;
        padding-right: 12px;
    }

    .videoBlock .ss-media-title h2 {
        font-size: 16px;
    }

    .getPassword {
        font-size: 30px;
        line-height: 50px;
        padding: 0 20px;
    }

    .getPass {
        font-size: 40px;
        line-height: 38px;
    }

    .fRight ul li {
        line-height: 20px;
        font-size: 12px;
        padding-left: 6px;
        padding-right: 7px;
    }

    .sort {
        margin-top: 10px;
        padding-left: 14px;
        padding-right: 12px;
    }

    .pagination .page-link {
        font-size: 16px;
        width: 36px;
        height: 36px;
    }

    .videoPreview {
        padding-top: 20px;
        padding-bottom: 40px;
    }

    .loginPage {
        width: calc(100% - 28px);
        padding-top: 32px;
        padding-bottom: 40px;
    }

    .loginaccountBlocks {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .loginaccountBlock {
        width: 100%;
        padding-top: 18px;
    }

    .loginaccountD {
        padding-bottom: 0;
    }

    .accountLinks {
        padding-top: 15px;
        padding-bottom: 20px;
        gap: 8px;
        font-size: 14px;
        flex-wrap: wrap;
    }

    .accountImage {
        width: 240px;
        height: 240px;
        margin: 0 auto;
    }

    .accountImage img {
        width: 240px;
        height: 240px;
    }

    .notmember {
        margin-bottom: 0;
    }

    .joinPage {
        width: calc(100% - 28px);
        padding-bottom: 40px;
    }

    .joinPage h1 span {
        border-bottom-width: 2px;
        line-height: 30px;
    }

    .accountBlock {
        padding-top: 18px;
    }

    .accountBlock label {
        font-size: 18px;
        padding-bottom: 6px;
    }

    .userBox {
        height: 50px;
        font-size: 15px;
    }

    .accountD {
        padding-bottom: 28px;
    }

    .memberShipPlans {
        gap: 15px;
    }

    .mPlans {
        height: auto;
        min-height: 330px;
        padding: 6px;
    }

    .days {
        height: 68px;
        font-size: 38px;
        line-height: 60px;
    }

    .price {
        padding-top: 17px;
    }

    .price sup {
        font-size: 38px;
    }

    .price span {
        font-size: 135px;
        line-height: 120px;
    }

    .monthText {
        font-size: 20px;
        top: 112px;
        right: 15px;
    }

    .selectPlan {
        height: 54px;
        width: 90%;
        font-size: 20px;
        margin-top: 10px;
    }

    .billedPayment {
        font-size: 13px;
        padding-left: 5px;
        padding-right: 5px;
        text-align: center;
    }

    .paymentMode {
        flex-direction: column;
        gap: 10px;
    }

    .paymentMode label {
        width: 100%;
        height: 52px;
        font-size: 17px;
    }

    .selectmembership {
        margin-bottom: 32px;
    }

    .paymentMethod {
        margin-bottom: 12px;
    }

    .cMembership button {
        font-size: 38px;
        line-height: 68px;
        padding: 0 20px;
    }

    .cMembership button i {
        font-size: 32px;
        margin-left: 15px;
    }

    /* Video preview */
    .previewInfo h1 {
        font-size: 18px;
        padding-bottom: 6px;
    }

    .previewInfo p {
        font-size: 16px;
        line-height: 22px;
    }

    .membershipArea label {
        height: auto;
        flex-direction: column;
        padding: 10px;
    }

    .memberPrice {
        margin: 0;
        font-size: 37px;
    }

    .memberPrice sub {
        font-size: 15px;
        font-weight: 400;
        color: var(--ss-bg);
        top: -9px;
        padding-left: 7px;
    }

    .memberMonths {
        font-size: 33px;
        padding-bottom: 5px;
    }

    .memberMonths span {
        text-align: center;
    }

    .complete {
        font-size: 20px;
        line-height: 50px;
        padding: 0;
    }

    /* Login */
    .loginaccountBlock label {
        font-size: 18px;
        padding-bottom: 5px;
    }
}

.ss-comment-login { color: var(--ss-accent-orange); }
.ss-comment-login:hover { color: var(--ss-accent-pink); }
.watch-comment-text { overflow-wrap: anywhere; white-space: pre-wrap; }

/* ---- Age-check / warning gate ----
   Design source: fwdsodomystorieswarningpage/style.css + media.css (.warningPage section) */
.ss-age-modal {
    max-width: 620px;
    margin: 10vh auto 0;
}

.ss-age-logo {
    height: auto;
    max-width: 200px;
}

.ss-age-main-modal {
    background: var(--ss-bg);
    border-color: var(--ss-border-dark) !important;
    border-radius: 8px;
}

.ss-age-title {
    font-size: 28px;
    color: var(--ss-ink);
    font-weight: 900;
    text-transform: uppercase;
}

.ss-age-title span {
    display: inline-block;
    border-bottom: 3px solid var(--ss-accent-orange);
    line-height: 1.3;
}

.ss-age-main-modal p {
    color: var(--ss-text-muted);
    font-size: 14px;
    line-height: 1.5;
}

.ss-age-list {
    margin: 16px 0 0;
    text-align: left;
}

.ss-age-list li {
    font-size: 14px;
    color: var(--ss-text-muted);
    line-height: 1.5;
    padding-bottom: 6px;
}

.ss-age-bullet {
    color: #5ec5c8;
    margin-right: 4px;
}

.ss-age-buttons {
    gap: 16px;
}

.ss-age-btn {
    min-width: 160px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 900;
    border-radius: 4px;
}

.ss-age-btn-cancel {
    color: #aaa9a9;
    background: var(--ss-bg);
    border: 2px solid #b0aeae;
}

.ss-age-btn-cancel:hover {
    color: var(--ss-bg);
    background: #b0aeae;
}

.ss-age-btn-enter {
    color: var(--ss-bg);
    background-image: linear-gradient(to bottom, #f92aa9, var(--ss-accent-pink));
    border: 0;
}

.ss-age-btn-enter:hover {
    background-image: linear-gradient(to bottom, var(--ss-gradient-green-start), var(--ss-gradient-green-end));
    color: var(--ss-bg);
}

.ss-age-voodologo {
    margin-top: 28px;
    margin-bottom: 8px;
}

.ss-age-voodologo img {
    display: inline-block;
    max-width: 120px;
    margin: 0 auto;
}

.ss-age-bottom-text .modal-title {
    color: var(--ss-text-soft);
    font-size: 14px;
}

.ss-age-bottom-text p {
    color: var(--ss-text-soft);
    font-size: 11px;
}

@media only screen and (max-width: 480px) {
    .ss-age-buttons {
        flex-direction: column;
    }

    .ss-age-btn {
        width: 100%;
    }
}

/* ---- Supplemental: legal/info pages (cookies, uk-block — no design mockup) ---- */
.ss-service-page {
    max-width: 900px;
}

.ss-service-copy h1 {
    font-size: 32px;
    font-weight: 900;
    color: var(--ss-ink);
    margin-bottom: 16px;
}

.ss-service-copy h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--ss-accent-purple);
    margin-top: 28px;
    margin-bottom: 10px;
}

.ss-service-copy p,
.ss-service-copy li {
    font-size: 16px;
    line-height: 1.6;
    color: var(--ss-border-dark);
}

.ss-service-copy ul {
    padding-left: 20px;
    list-style: disc;
}

.mPlans:focus-within, .membershipArea label:focus-within, .paymentMode label:focus-within { outline: 2px solid var(--ss-accent-purple); outline-offset: 3px; }

/* Match Final's price alignment despite Bootstrap's superscript reset. */
.mPlans .price sup { top: 0; line-height: 1; align-self: flex-start; }
.ss-section-title { font-size: 36px; font-weight: 900; color: var(--ss-ink); }
.ss-section-title span { border-bottom: 3px solid var(--ss-accent-orange); }

/* ---- Supplemental: photo gallery module (no design mockup — styled to match template) ---- */
.ss-gallery-item {
    border-radius: 10px;
}

.ss-gallery-item img {
    transition: transform 0.3s ease;
}

.ss-gallery-item:hover img {
    transform: scale(1.06);
}

.ss-gallery-zoom {
    width: 54px;
    height: 54px;
    background: rgba(0, 0, 0, 0.55);
    font-size: 20px;
}

.ss-gallery-item .ss-gallery-zoom {
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.ss-gallery-item:hover .ss-gallery-zoom {
    opacity: 1;
}

@media only screen and (max-width: 767px) {
    .ss-gallery-zoom {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}

/* Shared card and account refinements. */
.modelBlock a > .ss-media-title { opacity: 0; transition: opacity .3s ease; }
.modelBlock a:hover > .ss-media-title,
.modelBlock a:focus-visible > .ss-media-title { opacity: 1; }
.ss-password-field .userBox { padding-right: 48px; }
.ss-password-field .password-toggle-btn { top: 50%; right: 14px; width: 28px; height: 28px; justify-content: center; }
.js-login-form .accountLinks { font-size: 19px; padding-bottom: 30px; gap: 14px; }
.js-login-form .js-login-submit-btn { font-size: 25px; min-height: 50px; }
.previewRight h1, .previewRight h2 { font-family: "Barlow Condensed", sans-serif; font-weight: 900; }
.bioPic img { border-radius: 12px; }
.ss-model-unlock { font-size: 18px; padding: 10px 20px; }
.modelBioArea { padding-bottom: 40px; }
