:root {
  --bg: #f2efe6;
  --surface: #ffffff;
  --surface-2: #fffbea;
  --panel: #ffffff;
  --ink: #173568;
  --muted: #64718a;
  --brand-red: #d92d35;
  --pink: #d92d35;
  --line: rgba(23, 53, 104, 0.12);
  --line-strong: rgba(23, 53, 104, 0.22);
  --font-display: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
  --font-body: 'Archivo', 'Segoe UI', sans-serif;
}

/* Likes library: Videos / Images tabs and photo cards. */
.likes-tabs {
    margin-bottom: 18px;
}
.likes-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
}
.liked-photo-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--panel);
}
.liked-photo-card.landscape {
    grid-column: span 2;
}
@media (max-width: 349px) {
    .liked-photo-card.landscape {
        grid-column: auto;
    }
}
.liked-photo-image {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}
.liked-photo-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}
.liked-photo-image:hover img {
    transform: scale(1.025);
}
.liked-photo-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 11px 12px;
}
.liked-photo-meta a {
    overflow: hidden;
    color: var(--ink);
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.liked-photo-meta time {
    color: var(--muted);
    font-size: 12px;
}
.likes-empty {
    grid-column: 1 / -1;
    padding: 34px 0;
    color: var(--muted);
    text-align: center;
}
@media (min-width: 768px) {
    .likes-photo-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

* {
  box-sizing: border-box;
}
a{
	text-decoration:none;
}
button,
input,
select,
textarea {
  font-family: inherit;
  /* font-size: 100%; */
  font-size: 16px;
}

body {
	background-color: var(--bg);
	color: var(--ink);
	font-family: var(--font-body);
	width: 100%;
	height: 100%;
	padding: 0px;
	margin: 0px;
}

h1,
h2.section-title {
	font-family: var(--font-display);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.015em;
}

/* Header & Navigation */
#site-header {
    background-color: #2e2636;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: transform 0.3s ease;
}

#site-header.collapsed {
    transform: translateY(-104px);
}

/* ── Mobile layout ── */
.header-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 10px 14px;
    gap: 8px;
}

.logo {
    order: 1;
    flex: 0 0 auto;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: floralwhite;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
}
.logo span { color: #D92D35; }

.nav-primary { display: none; order: 2; }

.header-search-row {
    order: 3;
    flex: 1 1 100%;
    padding: 0 0 10px;
}

.header-actions {
    order: 2;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* search form shared styles */
.header-search-row form {
    display: flex;
    width: 100%;
    position: relative;
}

.header-search-row input {
    flex: 1;
    min-width: 0;
    padding: 8px 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-right: none;
    border-radius: 6px 0 0 6px;
    color: floralwhite;
    font-size: 16px; /* >=16px stops iOS Safari from zooming on focus */
}
.header-search-row input::placeholder { color: rgba(255,255,255,0.4); }

.header-search-row select {
    /* Strip the OS-native select chrome (rounded "pill" look on mobile) so it
       stays rectangular and flush between the input and the button. */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 8px 28px 8px 10px; /* right room for the custom caret below */
    background-color: rgba(255,255,255,0.1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23fffaf0' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 9px center;
    background-size: 11px;
    border: 1px solid rgba(255,255,255,0.15);
    border-right: none;
    border-radius: 0; /* square corners: flush with the input/button */
    color: floralwhite;
    font-size: 16px; /* >=16px stops iOS Safari from zooming on focus */
    cursor: pointer;
}
.header-search-row select option { background: #2e2636; }

.header-search-row button {
    padding: 8px 12px;
    background: #D92D35;
    border: none;
    border-radius: 0 6px 6px 0;
    color: #2e2636;
    cursor: pointer;
    font-size: 14px;
}

.header-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    color: floralwhite;
    font-size: 18px;
    cursor: pointer;
    border-radius: 6px;
    padding: 0;
    transition: background 0.2s;
}

.header-btn:hover { background: rgba(255,255,255,0.1); }

/* Staff notification dot: unseen uploads in the review queue. Sits on the
   hamburger (mobile), the Review header link (desktop), and the drawer link. */
.has-review-badge { position: relative; }
.has-review-badge::after {
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ff4d4d;
    box-shadow: 0 0 0 2px #241e2c;
}

.header-user-btn { width: auto; padding: 0 8px; gap: 6px; }

.header-username {
    font-size: 13px;
    font-weight: 600;
    color: #D92D35;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Personal links live in the slide-out drawer on mobile; on desktop the
   hamburger is hidden, so we surface them next to the username instead. */
.header-user-links { display: none; }

/* Slide-out drawer */
.nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 72%;
    max-width: 280px;
    background: #241e2c;
    z-index: 40;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.nav-drawer.open {
    transform: translateX(0);
}

.nav-drawer-head {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
}

.nav-drawer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
}

.nav-drawer-signout {
    display: block;
    padding: 6px 22px 14px;
    color: floralwhite;
    font-size: 15px;
    transition: background 0.15s;
}

.nav-drawer-signout:hover { background: rgba(255,255,255,0.06); }

.nav-drawer-signout i {
    width: 20px;
    margin-right: 10px;
    color: #D92D35;
}

.nav-drawer-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.nav-drawer-title span:first-child { color: floralwhite; }
.nav-drawer-title span:last-child  { color: #D92D35; }

.nav-drawer nav { flex: 1; padding: 10px 0; }

#nav-box-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#nav-box-list li a {
    display: block;
    padding: 13px 22px;
    color: floralwhite;
    font-size: 15px;
    transition: background 0.15s;
}

#nav-box-list li a:hover { background: rgba(255,255,255,0.06); }

#nav-box-list li a i {
    width: 20px;
    margin-right: 10px;
    color: #D92D35;
}

.ad-free-link { color: #fa5da2 !important; }

.drawer-divider {
    border-top: 1px solid rgba(255,255,255,0.07);
    margin: 6px 0;
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 35;
}

.nav-overlay.open { display: block; }

/* Model autocomplete dropdown */
.search-autocomplete {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #241e2c;
    border: 1px solid rgba(255,255,255,0.12);
    border-top: none;
    border-radius: 0 0 6px 6px;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 100;
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
    max-height: 260px;
    overflow-y: auto;
}

.search-autocomplete li {
    padding: 10px 14px;
    color: floralwhite;
    font-size: 14px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.search-autocomplete li:hover {
    background: rgba(217, 45, 53,0.15);
    color: #D92D35;
}

.nav-bottom {
    background-color: #241e2c;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 8px 0;
}

/* header upload button accent */
.header-upload-btn { color: #D92D35; }
.header-upload-btn:hover { color: floralwhite; }

/* Sparkle burst around the header Upload icon — script.js shows it for
   5 seconds on a visitor's first two page views (localStorage
   'uploadSparkles3'). position:relative so the absolutely positioned stars
   anchor to the button's box. */
.header-upload-btn {
    position: relative;
}
.upload-sparkle-star {
    position: absolute;
    font-size: 11px;
    line-height: 1;
    color: #ffd76e;
    text-shadow: 0 0 6px rgba(255, 215, 110, 0.9);
    pointer-events: none;
    opacity: 0;
    animation: upload-sparkle-twinkle 1s ease-in-out infinite;
}
.upload-sparkle-star:nth-child(odd) {
    color: #D92D35;
    text-shadow: 0 0 6px rgba(217, 45, 53, 0.9);
}
.upload-sparkle-star-0 { top: -4px; left: 6%; }
.upload-sparkle-star-1 { top: 50%; left: -10px; font-size: 15px; animation-delay: 0.15s; }
.upload-sparkle-star-2 { top: -8px; left: 55%; font-size: 14px; animation-delay: 0.3s; }
.upload-sparkle-star-3 { bottom: -5px; left: 28%; animation-delay: 0.45s; }
.upload-sparkle-star-4 { top: 35%; right: -12px; font-size: 13px; animation-delay: 0.6s; }
.upload-sparkle-star-5 { bottom: -8px; right: 15%; animation-delay: 0.75s; }
@keyframes upload-sparkle-twinkle {
    0%, 100% { opacity: 0; transform: scale(0.3) rotate(0deg); }
    50%      { opacity: 1; transform: scale(1.2) rotate(90deg); }
}
/* soft pulse on the icon itself while the stars twinkle */
.header-upload-btn.upload-sparkle-active {
    text-shadow: 0 0 12px rgba(217, 45, 53, 0.8);
}

.nav-bottom ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
    list-style: none;
    padding: 0 16px;
    margin: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.nav-bottom ul::-webkit-scrollbar {
    display: none;
}

.nav-bottom a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-bottom a:hover { color: #D92D35; }

/* ── Desktop layout ── */
@media (min-width: 1024px) {
    #site-header.collapsed { transform: none; }

    /* Row 1: Logo (left) | Search (center) | Actions (right) */
    .header-bar {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        grid-template-rows: auto;
        align-items: center;
        padding: 12px 40px;
        gap: 16px;
    }

    .logo {
        grid-column: 1; grid-row: 1;
        font-size: 32px; letter-spacing: 0.02em;
        justify-self: start;
        order: 0;
    }

    .header-search-row {
        grid-column: 2; grid-row: 1;
        width: 420px;
        padding: 0;
        justify-self: center;
        order: 0;
        flex: none;
    }

    .header-actions {
        grid-column: 3; grid-row: 1;
        justify-self: end;
        margin-left: 0;
        order: 0;
    }

    /* Surface the drawer's personal links beside the username on desktop. */
    .header-user-links {
        display: flex;
        align-items: center;
        gap: 4px;
        margin-left: 10px;
    }
    .header-user-links a {
        display: flex;
        align-items: center;
        gap: 5px;
        padding: 6px 10px;
        border-radius: 6px;
        color: floralwhite;
        font-size: 12px;
        font-weight: 600;
        white-space: nowrap;
        transition: background 0.15s, color 0.15s;
    }
    .header-user-links a i { color: #D92D35; font-size: 13px; }
    .header-user-links a:hover { background: rgba(255,255,255,0.1); color: #D92D35; }

    .nav-bottom { display: none; }

    /* Row 2: centered nav strip */
    .nav-primary {
        display: block;
        background: #241e2c;
        border-top: 1px solid rgba(255,255,255,0.06);
    }

    .nav-primary ul {
        display: flex;
        justify-content: center;
        align-items: center;
        list-style: none;
        padding: 0;
        margin: 0;
        gap: 8px;
    }

    .nav-primary a {
        display: block;
        padding: 11px 18px;
        color: floralwhite;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.4px;
        text-transform: uppercase;
        border-bottom: 2px solid transparent;
        transition: color 0.15s, border-color 0.15s;
        white-space: nowrap;
    }

    .nav-primary a:hover {
        color: #D92D35;
        border-bottom-color: #D92D35;
    }

    #all_content { margin-top: 110px; }
}

/* --- Rest of the legacy CSS --- */
.feature-content{
	font-size: 30px;
	text-align: center;
	align-content: center;
	align-items: center;
}
.feature-content img{
	display: block;
	margin-left: auto;
	margin-right: auto;
  	width: 50%;

}
#featured-model {
  /*display: flex;*/
	flex-direction: column;
	text-align: center;
	font-size: 20px;
	text-decoration: none;
	color:#fa5da2;
}

.top-btns {
	color:black;
	text-decoration: none;
	background: white;
	border-radius: 8px;
	padding: 5px;
	position: relative;
	bottom: 15px;
	font-size: 15px;

}

.title_start {
	position: relative;
	font-size: 30px;
	color: #D92D35;
	display: inline-block;
	align-content: center;
	margin: 2%;
	top: 0px;
	text-decoration: None;

}
#hamburger-btn{
	display: inherit;
    margin-left: auto;
	margin-right: auto;
}
#login a{
	text-decoration: none;
	color:floralwhite;
}
#hamburger-btn {
	left: 10px;
	display: inline-block;
	float: right;
	padding-right: 10px;
	padding-top: 10px;
	font-size: 40px;
	color: floralwhite;
	position: relative;
	bottom: 25px;
	/* left: 0px; */
	/* padding-right: 10px; */
	margin-right: 10px;

}
.icon-menu{
	color:#333;
	margin-right:10px;
}

header{
	align-items: center;
	width:100%;
	/*position: fixed;*/
	clear: both;
	background-color: #D92D35;

}
.title_start > span{
	color: white;
}
.title_start > span+span{
	color: #fa5da2;
}
.buy-membership {
	color: white;
	background: #E91E63;
	font-weight: bold;
}
#section-title {
	margin-left: 5px;
}
#profile-section{
	display: flex;
}
#model-info{
	display: block;
	margin-left: 10px;
}
#site-promotion{
    display: flex;
    align-items: center;
    width: fit-content;
    margin: 14px auto 0;
    padding: 8px 18px;
    color: var(--pink);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 1px solid rgba(250, 93, 162, 0.45);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.25);
    transition: border-color 0.15s, color 0.15s;
}
#site-promotion:hover{
    border-color: var(--pink);
    color: #fff;
}
#nav-break {
    width: 100%;
    display: block;
    border-bottom: 2px dotted white;
    margin-bottom: 10px;
}
#profile-photo{
	display: inline;
	height: 144px;
	width: 144px;
	border-radius: 100%;
	margin-left: 10px;
	position: relative;
}
#model-info{
	display: inline;
	font-weight: bold;

}
#line-br{
	margin-top: 15px;
	height: 2px;
	/*border-color: #D92D35;*/
	border: 2px solid #D92D35;
}
#follow-btn{
	display: block;
	/* height: 35px; */
	width: 95%;
	/* background-color: floralwhite; */
	border-radius: 10px;
	/* text-align: center; */
	/* margin-top: 20px; */
	text-decoration: none;
}

.dropdown {
	display: inline-block;
	position: relative;
	border-radius: 5px;
	margin-left: 5px;
	font-weight: bold;
	/* color: #eee; */
	/* margin-bottom: 20px; */
	position: relative; /* Makes .dropdown-options position from here */
	flex: 0 0 auto;
}
.btn-color{
	background-color: #D92D35;
}
.filter-link{
	border: 1px solid var(--line-strong);
	border-radius: 999px;
}

button{
	border:none;
	border-radius:5px;
	padding: 5px 10px;
	/* font-size:18px; */
	cursor:pointer;
}
#request-section{
	display: flex;
	gap: 5px;
	color: #fff;
}
#request-btn{
	/* background: #000000; */
	/* color: #fff; */
}

.model-hero {
	position: relative;
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 26px 20px;
	margin: 20px 0 28px;
	border-radius: 16px;
	border: 1px solid var(--line);
	background: var(--surface-2);
	overflow: hidden;
}
.model-hero-glow {
	position: absolute;
	top: -50%;
	left: -15%;
	width: 65%;
	height: 200%;
	background: radial-gradient(closest-side, rgba(250, 93, 162, 0.3), transparent 70%);
	pointer-events: none;
}
.model-avatar-ring {
	position: relative;
	z-index: 1;
	flex: 0 0 auto;
	display: block;
	width: 92px;
	height: 92px;
	border-radius: 50%;
	padding: 3px;
	background: linear-gradient(135deg, var(--pink), var(--brand-red));
}
.model-avatar {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid var(--surface-2);
	background: var(--panel);
}
.model-hero-info {
	position: relative;
	z-index: 1;
	min-width: 0;
}
.model-name {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	font-size: clamp(24px, 7vw, 40px);
	line-height: 1.03;
}
.model-hero .model-name {
	font-size: clamp(24px, 7vw, 52px) !important;
	margin-bottom: 0 !important;
}
.model-handle {
	margin: 3px 0 0;
	color: var(--muted);
	font-size: 12.5px;
	font-weight: 600;
}
.model-bio {
	margin: 10px 0 0;
	max-width: 560px;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.55;
}
.model-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 14px;
}
.model-stat {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 12px;
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.22);
	color: var(--ink);
	font-size: 12.5px;
	font-weight: 600;
	white-space: nowrap;
}
.model-stat i { color: var(--brand-red); font-size: 11px; }
.model-tags {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 12px;
}
.model-tags-label {
	margin-right: 3px;
	color: var(--muted);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}
.model-tag-chip {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--brand-red);
	border: 1px solid rgba(217, 45, 53, 0.4);
	border-radius: 999px;
	padding: 4px 11px;
	transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.model-tag-chip:hover {
	border-color: var(--brand-red);
	color: #fff;
	background: rgba(217, 45, 53, 0.14);
}
.model-tag-chip-active,
.model-tag-chip-active:hover {
	border-color: var(--brand-red);
	background: var(--brand-red);
	color: var(--panel);
}
.model-results-tags {
	margin-top: 22px;
	margin-bottom: 0;
}
.model-results-tags + #model-video-results .model-section-title {
	margin-top: 12px;
}
.model-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 16px;
}
.model-action-btn {
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 9px 20px;
	border-radius: 999px;
	border: 1px solid var(--brand-red);
	background: transparent;
	color: var(--brand-red);
	cursor: pointer;
	transition: background 0.15s, color 0.15s;
}
.model-action-btn:hover { background: rgba(217, 45, 53, 0.14); }
.model-actions #follow-btn,
.model-actions #request-btn {
	display: inline-flex;
	width: auto;
	border-radius: 999px;
}
.model-section-title {
	margin: 22px 0 4px;
	font-family: var(--font-display);
	font-weight: 800;
	text-transform: uppercase;
	font-size: clamp(19px, 3vw, 24px);
	color: var(--muted);
}
.model-results-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 14px;
}
.model-results-count {
	color: var(--muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
#model-video-results {
	transition: opacity 0.14s ease;
}
#model-video-results.model-video-results-loading {
	opacity: 0.48;
	pointer-events: none;
}
.model-results-empty {
	margin: 22px 0 60px;
	padding: 24px;
	border: 1px dashed var(--line-strong);
	border-radius: 12px;
	color: var(--muted);
	text-align: center;
}
.model-video-pagination {
	margin: 0 0 60px;
}
.model-video-grid { margin-bottom: 60px; }
.model-page #content-filter .content-btn {
	margin-right: 0 !important;
	font-size: 12px !important;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	background: transparent;
	border: 1px solid var(--line-strong);
	border-radius: 999px;
	padding: 8px 16px !important;
	color: var(--muted);
}
.model-page #content-filter .content-btn.active {
	background: var(--brand-red);
	border-color: var(--brand-red);
	color: var(--surface-2);
}
.model-page .filters-row {
	flex-wrap: wrap;
}
.model-page .filters-row #content-filter {
	flex: 0 0 auto;
}
.model-page .filters-row .video-filter-section {
	flex: 1 1 220px;
	min-width: 0;
}
@media (max-width: 639px) {
	.model-hero {
		display: grid;
		grid-template-columns: minmax(112px, 38%) minmax(0, 1fr);
		align-items: stretch;
		gap: 0;
		padding: 0;
	}
	.model-avatar-ring {
		width: 100%;
		height: auto;
		min-height: 0;
		border-radius: 0;
		padding: 0;
		background: none;
		border-right: 1px solid var(--line);
		overflow: hidden;
	}
	.model-avatar {
		position: absolute;
		inset: 0;
		border: 0;
		border-radius: 0;
		object-position: center top;
	}
	.model-hero-info {
		padding: 22px 16px;
	}
}
@media (min-width: 640px) {
	.model-hero { gap: 28px; padding: 32px 28px; }
	.model-avatar-ring { width: 128px; height: 128px; }
}
@media (min-width: 1024px) {
	.model-avatar-ring { width: 156px; height: 156px; }
}

.profile-avatar-letter {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 3px solid var(--surface-2);
	background: var(--panel);
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(38px, 8vw, 64px);
	line-height: 1;
	color: var(--pink);
	text-transform: uppercase;
	user-select: none;
}
.profile-photo-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
	grid-auto-rows: 170px;
	grid-auto-flow: dense;
	gap: 8px;
	margin: 12px 0 8px;
}
.profile-photo {
	display: block;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--panel);
}
.profile-photo-wide { grid-column: span 2; }
.profile-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.2s ease;
}
.profile-photo:hover img { transform: scale(1.04); }
.profile-empty {
	margin: 18px 0 60px;
	color: var(--muted);
	font-size: 14px;
}

.video-filter-section{
	display:inline-flex;
}
.video-filter-section {
  display: flex;
  overflow-x: auto;
  overflow-y: visible;
  white-space: nowrap;
  gap: 0.5rem;
  padding: 0.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
  /* padding: 5px 10px; */
  overflow-x: auto;
  overflow-y: visible;  /;
}
.video-filter-section::-webkit-scrollbar {
  display: none;
}

.dp-link.filter-link {
  flex: 0 0 auto;
  background: transparent;
  padding: 9px 16px;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  transition: border-color 0.15s, color 0.15s;
}

.dp-link.filter-link:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
}

.dp-link.filter-link.active {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: var(--surface-2);
}

.dropdown-wrapper {
  position: relative;
  flex: 0 0 auto;
}

.dropdown-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 4px;
  background: var(--panel);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  box-shadow: 0 16px 32px rgba(0,0,0,0.45);
  z-index: 1000;
  padding: 6px;
  min-width: 160px;
}

.dropdown-wrapper.open .dropdown-options {
  display: block;
}

#video-filter-btn{
	color: #fff;
	font-size: 1.2em;
	font-weight: bold;
	padding: 5px 10px;
}
.video-preview-container {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 5;
  overflow: hidden;
  border-radius: 11px 11px 0 0;
  background: var(--panel);
  flex: 0 0 auto;
}

.video-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.thumbnail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.video-preview-container:hover .thumbnail {
  display: none !important;
}

.video-preview-container:hover .video-preview {
  display: block !important;
}

button:hover{
	/* background-color: #d92d35; */
}

.video-filter-section {
  display: flex;
  overflow-x: auto;
  overflow-y: visible; /* <-- allow dropdown to overflow vertically */
  white-space: nowrap;
  gap: 0.5rem;
  padding: 0.5rem;
  position: relative;
  scrollbar-width: none;
}

.video-filter-section::-webkit-scrollbar {
  display: none;
}

.dropdown-options {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000; /* ensure it sits on top */
}

.video-filter-section {
  display: flex;
  overflow-x: auto;
  overflow-y: visible; /* <-- allow dropdown to overflow vertically */
  white-space: nowrap;
  gap: 0.5rem;
  padding: 0.5rem;
  position: relative;
  scrollbar-width: none;
}

.video-filter-section::-webkit-scrollbar {
  display: none;
}

.dropdown-options {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000; /* ensure it sits on top */
}
.request-section{
	color:#fff;
	font-size:18px;
	border: 2px solid #D92D35;
}
#content-filter {
    display: flex;
    position: absolute;
    right: 0;
}
.filters-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    width: 100%;
}
.filters-row #content-filter {
    display: flex;
    position: static;
    margin-right: 0;
}
.filters-row .dropdown {
    margin: 0;
    display: flex;
    align-items: center;
}
.follow-btn-active{
	background: #D92D35;
	color: #FFF
	;
}
.content-btn {
    margin-right: 10px;
    font-size: 1.5em;
    background-color: #ab7dc7;
    border-radius: 5px;
    padding: 5px;
    color: floralwhite;
}
#content-filter a{
	text-decoration:none;
}
.content-btn.active {
    background-color: #eee;
    color: #ab7dc7;
}
.dropdown:hover .dropdown-options {
  display: block;
}

.dropdown-options a {
  display: block;
  color: var(--ink);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
}
.dropdown-options a:hover {
  color: var(--brand-red);
  background-color: rgba(217, 45, 53, 0.16);
}
#all_content{
	width: 100%;
	padding-bottom: 5px;
	background-color: rgba(255, 255, 255, 0);
	margin-left: auto;
	margin-right: auto;
	margin-top: 165px;
}

#1036514{
	position: absolute;
	top: 0;
}

#head_bar{
	position: fixed;
	font-size: 14px;
	width: 100%;
	top: 0px;
	margin: 0px 0px 10px 0px;
	height: auto;
	background-color: #4D3E57;
	z-index: 20;
}
#page-title{
	font-size: 30px;
}
.section-title {
	font-size: 2em;
	text-decoration: none;
}
.section-title a{
	font-size: 2em;
	text-decoration: none;
	color: floralwhite;
}
.title-link{
	font-size: 1.15em;
}
#search_form{
	display: flex;
	width: 100%; /* Wider on mobile */
	background: #D92D35;
	border-radius: 8px;
    height: 45px; /* Larger height for easier interaction */
	/* border: none; */
}

#searchbar {
	width: 100%;
	margin-bottom: 5px;
	display: inline-flex;
	height: 45px; /* Matched height */
	position: relative;
}
@media (min-width: 576px) {
	#searchbar{
		width: 30%; /* Slightly wider on tablets */
	}

}
#search_input {
    /* border-radius: 10px; */
    /* float: left; */
    width: 60%;
    font-size: 18px; /* Larger font to prevent auto-zoom */
    background: none;
    color: #ffff;
    border: none;
    padding-left: 10px;
}
#search_form select{
	text-align: center;
	appearance: none;
	border: none;
	/* border-left: none; */ /* Prevent double borders */
	/* border-right: none; */ /* Prevent double borders */
	width: 100%;
	/* height: 17px; */
	top: 0;
	background: #D92D35;
	margin: 0 auto;
	position: relative;
	color: white;
    font-size: 16px;
}


#search-btn{
    background: none;
    color: white;
    cursor: pointer;
    display: inline;
    /* top: 3px; */
    position: relative;
    /* top: -27px; */
    /* left: 70px; */
    /* width: 100%; */
    /* height: auto; */
    border:none;
}
#search-qry{
	margin: 0;
	border-left: solid 1px floralwhite;
	display: flex;
}

button{
    background-color: #d92d3500;
    border: 1px solid white;
    box-shadow: none;
    /* width: 100%; */
}
button{
	/* width: 100%; */
}


#top-space{
	margin-top: 24px;
}
#top-space2{
	margin-top: 0px;
}
#nav_bar{
	background-color: #D92D35;
	position: fixed;
	text-align: center;
	font-size: 18px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0px;
	bottom: 0px;
	height: 40px;
	z-index: .1;
}
#nav-username{
	margin-top:50px;
	padding-left: 10px;
}
#login-box{
	margin-top: 50px;
	margin-bottom: 10px;
	display: flow-root;
	color: black;
}
#login-box a{
	border: 1px solid black;
	border-radius: 10%;
	padding: 5px;
	background-color: white;
	color: black;
}
#nav-login{
	float: left;
}
#nav-register{
	float: right;
}
#nav_bar li{
	list-style-type: none;
	display: inline-block;
	margin-left: 12px;
}
#nav_bar li a{
	color: white;
	text-decoration: none;
	/*font-size: 15px;*/
}

footer{
	clear: both;
}
.adv_banners {
	position: absolute;
	width: 280px;
	height: 400px;
	top: 300px;
	background-color: yellow;
	text-align: center;
}
#main_content{
	height: 100%;
	display: block;
	/* background-color: white; */
}
#main_content li{
	list-style-type: none;
}

.video_title{
	font-size: 15px;
	font-weight: 600;
	line-height: 1.35;
	color: var(--ink);
	text-decoration: none;
	margin: 10px 12px 12px;
	position: relative;
	overflow-wrap: anywhere;
	text-wrap: pretty;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 8;
	line-clamp: 8;
	overflow: hidden;
}
.video-data + .video_title,
.video_title:has(+ .video-data){
	margin-bottom: 8px;
}
.social-btns{
	font-size:22px;
}
.social-btns li{
	display: inline-block;
	margin-right: 20px;
	margin-bottom: 5px;

}
#sponsored {
	color:#101e0b;
}
#pop-box{
	display:none;
	position: fixed;
	/* width:fit-content; */
	font-size:20px;
	padding:10px;
	border-radius:10px;
	background-color: #26491b;
	top: 80%;
	left: 40%;
}
.video-data{
	display: flex;
	align-items: center;
	gap: 14px;
	text-decoration: none;
	position: relative;
	padding: 0 12px 12px;
	margin-top: auto;
}
.video-data i{
	margin: 0 6px 0 0;
	display: block;
	color: var(--muted);
	font-size: 12px;
}
.video-likes i{
	color: rgba(250, 93, 162, 0.8);
}
.video-views, .video-likes{
	display: flex;
	align-items: center;
}
.social-btns a{
	text-decoration: none;
	color: floralwhite;
}
#pop-box{
	display: none;
	position: fixed;
	width: fit-content;
	font-size: 20px;
	padding: 10px;
	border-radius: 10px;
	background-color: #fa5da2;
	bottom: 100px;
	margin: 0 auto;
	object-position: center;
	top: 50%;
	height: fit-content;
	left: 50%;
	transform: translate(-50%, -50%);
}
#left_adv{
	left: 50px;
}
#right_adv{
	right: 50px;
}
.grid-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 26px 10px;
	margin-top: 16px;
}

#grid-container-tags {
	display: grid;
	grid-template-columns: repeat(3, minmax(100px, 1fr));
	/*grid-template-columns: repeat(auto-fill); !* Two columns with equal width *!*/
	/*grid-gap: 10px;*/
	/*height: 100%;*/

	/*width: 100%;!* Spacing between grid items *!*/
}
.grid-item-tags p{
	display: inline-block;
	/*width: 100%;*/
	/*border-top-left-radius: 8px ;*/
	/*border-top-right-radius: 8px;*/
	border-radius: 8px;
	margin-right: 5px;
	padding: 10px;
	font-weight: bold;
	font-size: 15px;
	text-underline: none;

	color:#fa5da2;

}
.grid-item-tags a{
	text-decoration: none;
}

.grid-item a > img{
	display: block;
	width: 100%;
	border-radius: 11px 11px 0 0;
	aspect-ratio: 3 / 4;
	height: auto;
	object-fit: cover;
	object-position: 50% 30%;
	background-color: var(--panel);
}
grid-item a:link{
	text-decoration: none;
	color: white;
}
.grid-item a{
	text-decoration: none;
}
.grid-item:hover{
	text-decoration: none;
	/*box-shadow: 0px 8px 20px #D92D35;*/
}
.grid-item a:active{
	text-decoration: none;
}
.grid-container a{
	text-decoration: none;
}
.video-time{
	position: absolute;
	top: 8px;
	right: 8px;
	color: #fff;
	background: rgba(10, 6, 14, 0.72);
	border-radius: 6px;
	padding: 2px 7px;
	z-index: 2;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.video-time-container{
	display: contents;
}

#content-box video, #video-id_fluid_controls_container{
	background-color: inherit;
	/*margin-top: 100px;*/
	position:relative;
	/* display:block; */
}
video{
	height:50vh;
	width:100vw;
}
.featured-model h2{
	margin-top: 200px;
}
#misc-content{
	background-color: #69007833;
	margin: 0px;
}

.video_title a:link{
	text-decoration: none;
	color: white;
}
.video_title a:visited{
	text-decoration: none;
}
.video_title a:hover{
	text-decoration: underline;
}
.video_title a:active{
	text-decoration: none;
}
.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  /*height: 100vh; !* Set the height of the container as needed *!*/
}
#video-id {
    /* width: 100% !important; */
    /* height: auto !important; */
    /* max-height: 80vh; */
    display: block;
    margin: 0 auto;
}

#video-box {
    display: block;
    width: 100%;
    margin-bottom: 20px;
}
#page_video_title{
    font-size: 20px;
	color: white;

}
#video-id_fluid_controls_container{
	position: relative;
	display: block;
}
#description{
	font-size: 12px;
}
.step-links{
	font-size: 20px;
	display: inline-block;
	margin-top: 5px;
	margin-left: auto;
	margin-right: auto;
}
.step-links a{
	display: inline-block;
	background-color: transparent;
	border: 1px solid var(--line-strong);
	color: var(--ink);
	text-decoration: none;
	margin-left: 5px;
	border-radius: 8px;
	padding: 8px 13px;
	font-size: 15px;
	font-weight: 600;
	transition: border-color 0.15s, color 0.15s;
}
.step-links a:hover{
	border-color: var(--brand-red);
	color: var(--brand-red);
}
.step-links .page-link{
	display: inline-block;
	margin-left: 5px;
	border-radius: 8px;
	padding: 8px 13px;
	font-size: 15px;
	font-weight: 700;
	background-color: var(--brand-red);
	color: var(--panel);
}
.pagination{
	text-align: center;
	border-top: 1px solid var(--line);
	padding-top: 14px;
	margin-bottom: 120px;
	max-width: 100%;
	justify-content: center;
}
#top-dirty-stuff video{
    display: flex;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    /* width: 100px; */!important
    height: 100px;!important
;
    /* width: 100%; */
    height: 100px;
}
#top-dirty-stuff2 video{
	display: flex;
	justify-content: center;
	/* margin-bottom: 30px; */
	position: relative;
	/* width: 100%; */
	height: 100px;!important
	bottom:100px;
	bottom: 20px;
}
#mid-dirty-stuff video{
	width:300px;!important
	height:100px;!important
	position:relative;
	height: 100px;
	/* top: -180px; */!important
}

#dirty-stuff video{
	display: flex;
	justify-content: center;
	/*left: 50px;*/
	position: relative;
	margin: 0 auto;
	/*bottom: ;*/
	/* width: 100%; */
	height: 100px;
	bottom: 30px;
}
#dirty-stuff img{
	position: relative;

}
#dirty-stuff2 video{
    margin: 0 auto;
    display: block;
    position: relative;
    /* width: 100%; */!important
    text-align: center;
    height: 100px;
}
#dirty-stuff2 img {
	margin: 0 auto;
    position: relative;
    display: block;
}

#more-content-header{
	font-size: 20px;
	display: inline-block;
}
#more-content {
	display: grid;
	grid-template-columns: repeat(2, minmax(100px, 1fr)); /* Two columns with equal width */
	grid-gap: 10px;
	/*height: 100%;*/
	/*width: 100%;!* Spacing between grid items *!*/

}
.letters-container{
	display: flex;
	gap: 3px;
	width: 100%;
	padding: 2px 0 16px;
	margin-top: 2px;
}
.letter{
	flex: 1 1 0;
	min-width: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 28px;
	border-radius: 6px;
	font-family: var(--font-body);
	font-size: clamp(9px, 3vw, 13px);
	font-weight: 700;
	color: var(--muted);
	text-decoration: none;
	border: 1px solid transparent;
	transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.letter:hover {
	color: var(--ink);
	background: rgba(255, 255, 255, 0.06);
}
.letter.active {
	background: var(--brand-red);
	color: var(--surface-2);
}
.media-count{
	display: flex;
	gap: 16px;
	padding: 0 12px 12px;
	margin-top: auto;
}
.media-data{
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0;
}
.media-data i {
	position: static;
	margin-right: 6px;
	color: var(--muted);
	font-size: 12px;
}
.data-item{
	margin: 0;
	color: var(--muted);
	font-size: 13px;
	font-weight: 500;
}
.grid-item {
	position: relative;
	margin: 0;
	border: 1px solid var(--line);
	border-radius: 12px;
	color: var(--ink);
	text-decoration: none;
	background-color: var(--surface);
	transition: border-color 0.18s ease, transform 0.18s ease;
	display: flex;
	flex-direction: column;
}
.more-content-item img {
	width: 100%;
	height: 200px;
	object-fit:contain;/* Maintain the image's aspect ratio */
	background-color: black;
}
.more-content-grid a {
	font-size: 10px;
	color: #fa5da2;
	text-decoration: none;
}

#tagline{
	display: block;
	margin-left: 0px;

}
ul{
	padding: 0px;
}
#video-details {
    display: flex;
    flex-direction: column;
}
.video-data-section {
    display: inline-flex;
    flex-wrap: wrap;
}
.video-data-section >p {
    position: relative;
    bottom: 4px;
    font-weight: bold;
}
#tagline ul li{
	margin-right: 10px;
	/*padding: 10px;*/
	list-style: none;

}
.video-data-item {
    display: inline-flex;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 5px;
    object-fit: contain;
    text-decoration: none;
    font-size: 15px;
    list-style: none;
    margin-left: 0;
    margin-right: 10px;
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 5px;
    text-decoration: none;
    display: inline-block;
    color: floralwhite;
    text-decoration: none;
    padding: 0px 5px;
    align-items: center;
    line-height: 1px;
    height: fit-content;
    /* border: 2px solid black; */
}
#add-tag-icon{
	display: inline-flex; /* Keeps the circle tightly around the text */
	padding: .5em; /* Adjust as needed for spacing */
	border: 2px solid black; /* Customize the border */
	border-radius: 50%; /* Makes it a circle */
	background: #111;
}
#of-link{
	height: 47px;
	align-content: center;
}
#of-link a{
	display: inline-block;
}


#of-link img {
	display: inline-block;
	/*display: inline;*/
	position: relative;
	height: 30px;
	border-radius: 50%;
	top: 8px;

}

.sunray-button {
  position: relative;
  background-color: #ffcc00; /* Button color */
  padding: 10px 20px;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 16px;
  overflow: hidden;
}
@media (min-width: 720px)  {
	#all_content{
		margin-top: 165px;
	}
}
.animation-btn {

	animation: flashAnimation 2s 5;
}

@keyframes flashAnimation {
  0%, 50% {
    color: floralwhite; /* Initial color */
  }
  51%, 100% {
    color: #fa5da2; /* Flashing color */
  }
}
#help-btn{
	height: 200px;
}
#fix-tag-form li div{
	margin-bottom: 12px;
	font-size: 20px;
}
@media (min-width: 768px) {
    .grid-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 32px 18px;
        padding: 4px 0;
    }

    .video-preview-container {
        aspect-ratio: 4 / 5;
    }
}

@media (min-width: 1440px) {
    .grid-container {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

/* Video Player Enhancements */
@media (min-width: 1024px) {
    video {
        /* width: 100% !important; */
        /* height: auto !important; */
        /* max-height: 85vh !important; */
    }
    #video-box {
        max-width: 100%;
        margin: 0 auto !important;
    }
}

/* Model Profile Desktop UI Scaling */
@media (min-width: 1024px) {
    #profile-section {
        gap: 50px !important;
        margin-bottom: 50px !important;
        align-items: center !important;
    }

    #profile-photo {
        height: 380px !important;
        width: 380px !important;
    }

    .model-data {
        font-size: 1.8rem !important;
        margin-bottom: 15px !important;
    }

    #model-info .model-data:first-child {
        font-size: 4.5rem !important;
        font-weight: 900 !important;
        margin-bottom: 20px !important;
    }

    #section-title {
        font-size: 4.5rem !important;
        margin: 50px 0 !important;
    }

    .content-btn {
        font-size: 2.2rem !important;
        padding: 18px 45px !important;
        margin-right: 25px !important;
    }

    #video-filter-btn {
        font-size: 2rem !important;
        padding: 18px 50px !important;
    }

    .request-section {
        font-size: 1.6rem !important;
        padding: 18px 40px !important;
        height: auto !important;
    }

    .filters-row {
        gap: 40px !important;
        margin-bottom: 50px !important;
    }

    .pagination .step-links a,
    .pagination .step-links .page-link {
        font-size: 1.5rem !important;
        padding: 12px 20px !important;
        border-radius: 12px !important;
    }
}

#reels-banner {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 30px 0 4px;
    padding: 15px 18px;
    border-radius: 12px;
    background: linear-gradient(105deg, var(--ink), #254b83);
    border: 1px solid rgba(217, 45, 53, 0.62);
    box-shadow: 0 6px 18px rgba(23, 53, 104, 0.2);
    color: #fff;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
#reels-banner:hover {
    border-color: var(--brand-red);
    box-shadow: 0 8px 22px rgba(23, 53, 104, 0.28);
    transform: translateY(-1px);
}
#reels-banner > i:first-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--brand-red);
    color: #fff;
    font-size: 17px;
}
#reels-banner span { flex: 1; }
#reels-banner > i:last-child { color: #fffbea; font-size: 14px; transition: transform 0.2s ease; }
#reels-banner:hover > i:last-child { transform: translateX(4px); }

#main_content {
    max-width: 1720px;
    margin: 0 auto;
    padding: 0 clamp(10px, 2.5vw, 36px);
}

.section-head {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin: 38px 0 0;
}

.section-head h1,
.section-head h2 {
    margin: 0;
    font-size: clamp(27px, 4.2vw, 40px);
    line-height: 1.05;
}

.section-head .section-title a {
    font-size: inherit;
    color: var(--ink);
}

.section-head .section-title a:hover {
    color: var(--brand-red);
}

.section-source {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-red);
    border: 1px solid rgba(217, 45, 53, 0.4);
    border-radius: 999px;
    padding: 5px 12px;
    white-space: nowrap;
    position: relative;
    top: 2px;
}

.source-live {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--pink);
    border-color: rgba(250, 93, 162, 0.45);
}

.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--pink);
    animation: live-pulse 1.8s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(250, 93, 162, 0.55); }
    50%      { box-shadow: 0 0 0 5px rgba(250, 93, 162, 0); }
}

.grid-item a {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    color: inherit;
}

.rank-num {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 9px;
    border: 2px solid rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    background: var(--ink);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    line-height: 1;
    color: #fff;
    box-shadow: 0 3px 10px rgba(23, 53, 104, 0.32);
    pointer-events: none;
}

.grid-container--ranked .grid-item:nth-child(-n+3) .rank-num {
    background: var(--brand-red);
    box-shadow: 0 3px 10px rgba(217, 45, 53, 0.36);
}

@media (hover: hover) {
    .grid-item:hover {
        border-color: rgba(217, 45, 53, 0.55);
        transform: translateY(-3px);
    }
}

.home-blurb {
    max-width: 760px;
    margin: 44px auto 10px;
    padding: 0 16px;
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.65;
    text-align: center;
}

.home-blurb p {
    margin: 0;
}

.grid-item a:focus-visible,
.dp-link:focus-visible,
.step-links a:focus-visible,
#reels-banner:focus-visible,
#site-promotion:focus-visible {
    outline: 2px solid var(--brand-red);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .grid-item,
    #reels-banner,
    #reels-banner > i:last-child {
        transition: none;
    }
    .grid-item:hover {
        transform: none;
    }
    #reels-banner:hover {
        transform: none;
    }
    .live-dot {
        animation: none;
    }
}
