/*
Theme Name: xplay theme
Theme URI: http://vidxtube.com
Author: vidxtube
Author URI: http://vidxtube.com
Description: A WordPress video sharing theme that allows users to create accounts, upload videos, and manage profiles for community-driven platforms.
Version: 1.0.3
Tested up to: 6.9
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: xplay-theme
Tags: custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, responsive-layout
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# CSS Variables
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
# Layouts
# Components
	- Header
	- Navigation
	- Video Grid
	- Pornstars Archive
	- Image Gallery
	- Categories
	- Register page / Login pag
	- My Account page
	- My Videos page
	- Porfile page
	- Tags page
	- Pagination
	- Footer
	- Comments
	- Widgets
# Utilities
	- Accessibility
	- Alignments
# Media Queries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# CSS Variables
--------------------------------------------------------------*/
:root {
     /* Brand / UI */
    --link-color: #e3d5d6;
    --link-hover-color: #ffffff;
    --link-active-color:#e3d5d6;
    --link-muted-color: #999;

	/* Colors */
	--primary-color: #cacccf;
	--secondary-color: #b1b3b5;
	--text-color: #b5b1b1;
	--dark-text: #1a1a1a;
	--light-bg: #f8f9fa;
	--border-color: #e5e7eb;
	--error-color: #ef4444;
	--success-color: #74818f;
	
	/* Spacing */
	--spacing-xs: 8px;
	--spacing-sm: 12px;
	--spacing-md: 16px;
	--spacing-lg: 24px;
	--spacing-xl: 40px;
	
	/* Z-index scale */
	--z-dropdown: 100;
	--z-sticky: 200;
	--z-modal: 300;
	--z-overlay: 400;
	--z-top: 500;
	
	/* Transitions */
	--transition-fast: 0.2s ease;
	--transition-normal: 0.3s ease;
}

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
/* Normalize
--------------------------------------------- */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	box-sizing: border-box;
	scroll-behavior: smooth;
	overflow-x: hidden;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

body {
	margin: 0;
	overflow-x: hidden;
	
}

main {
	display: block;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

a {
	background-color: transparent;
}

abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

b,
strong {
	font-weight: bolder;
}

code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

img {
	border-style: none;
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

fieldset {
	padding: 0.35em 0.75em 0.625em;
}

legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

progress {
	vertical-align: baseline;
}

textarea {
	overflow: auto;
}

[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

details {
	display: block;
}

summary {
	display: list-item;
}

template {
	display: none;
}

[hidden] {
	display: none;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
	background: #000;
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

embed,
iframe,
object {
	max-width: 100%;
}

img {
	height: auto;
	max-width: 100%;
}

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/* Links
--------------------------------------------- */
/* ---------------------------------------------
   Base link styles (theme controlled)
--------------------------------------------- */

a {
    color: var(--link-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:visited {
    color: var(--link-color);
}

a:hover,
a:focus {
    color: var(--link-hover-color);
    text-decoration: none;
}

a:active {
    color: var(--link-active-color);
}


/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: 0.6em 1em 0.4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
.site-main {
	max-width: 1400px;
	margin: 0 auto;
	padding: 20px;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.site-header {
    background: #000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    overflow: visible;
    position: relative;
    z-index: 100;
}

.header-container {
	max-width: 1920px;
	margin: 0 auto;
	padding: 12px var(--spacing-lg);
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: var(--spacing-lg);
}

/* Header Left */
.header-left {
	display: flex;
	align-items: center;
	gap: var(--spacing-md);
}

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: transparent;
	border: none;
	padding: var(--spacing-xs);
	cursor: pointer;
	border-radius: 4px;
	transition: background var(--transition-fast);
}

.mobile-menu-toggle:hover {
	background: #f0f0f0;
}

.hamburger-line {
	width: 24px;
	height: 2px;
	background: #333;
	border-radius: 2px;
	transition: all var(--transition-normal);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

.site-branding {
	display: flex;
	align-items: center;
}

.site-logo {
	display: inline-block;
	line-height: 0;
}

/* UPDATED: Removed hover transition */
.site-logo img,
.custom-logo-link img {
	max-width: 450px;
	max-height: 70px;
	width: auto;
	height: auto;
	display: block;
}

/* UPDATED: Removed hover transition */
.site-logo-text {
	display: flex;
	align-items: center;
	gap: var(--spacing-xs);
	text-decoration: none;
	color: var(--primary-color);
	font-weight: 700;
	font-size: 20px;
	transition: color 0.2s;
}

.site-logo-text:hover {
	color: #ffffff;
}

.logo-icon {
	width: 32px;
	height: 32px;
	background: red;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.logo-icon svg {
	width: 18px;
	height: 18px;
}

.logo-text {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	letter-spacing: -0.5px;
}

/* Header Center - Search */
.header-center {
	max-width: 600px;
	width: 100%;
	justify-self: center;
}

.search-form {
	width: 100%;
}

.search-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	background: #1a1a1a;
	border: 1px solid #333333;
	border-radius: 24px;
	overflow: hidden;
	transition: all var(--transition-normal);
	padding-left: 4px;
}

.search-wrapper:focus-within {
	background: #1a1a1a;
	border-color: #666666;
}

.search-field {
	flex: 1;
	padding: 10px 14px 10px 12px;
	border: none;
	background: #fff;
	font-size: 15px;
	color: var(--dark-text);
	outline: none;
}

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

.search-submit {
	padding: 10px 20px;
	background: transparent;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-color);
	transition: color var(--transition-fast);
}

.search-submit:hover {
	color: var(--primary-color);
}

.search-submit svg {
	width: 20px;
	height: 20px;
}

/* Header Right - Navigation & Actions */
.header-right {
	display: flex;
	align-items: center;
	gap: 20px;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: var(--spacing-sm);
}

.header-action-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: var(--spacing-xs) var(--spacing-md);
	border-radius: 20px;
	background: transparent;
	border: 1px solid #333333;
	color: #999999;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: all var(--transition-fast);
	white-space: nowrap;
	border: none;
	cursor: pointer;
}

.header-action-btn:hover {
	background: #1a1a1a;
	color: #ffffff;
	border-color: #666666;
}

.header-action-btn svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.header-action-btn .btn-text {
	display: none;
}

.upload-btn {
	background: #333;
	border-color: #ff4444;
	color: #ffffff;
}

.upload-btn:hover {
	background: #ff6666;
	border-color: #ff6666;
	color: #ffffff;
}

.register-btn {
	background: #1a1a1a;
	border-color: #666666;
	color: #ffffff;
}

.upload-btn:hover,
.register-btn:hover {
	background: #333;
	color: #fff;
}

/* User Menu */
.user-menu-wrapper {
	position: relative;
}

.user-menu-toggle {
	padding: var(--spacing-xs) var(--spacing-md);
}

.user-dropdown-menu {
	position: absolute;
	top: 100%;
	right: 0;
	margin-top: 12px;
	background: #fff;
	border: 1px solid var(--border-color);
	border-radius: 8px;
	min-width: 220px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all var(--transition-normal);
	z-index: var(--z-dropdown);
	overflow: hidden;
}

.user-dropdown-menu.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.user-dropdown-menu a {
	display: flex;
	align-items: center;
	gap: var(--spacing-sm);
	padding: var(--spacing-sm) var(--spacing-md);
	color: var(--dark-text);
	text-decoration: none;
	font-size: 14px;
	transition: background var(--transition-fast);
}

.user-dropdown-menu a:hover {
	background: #333333;
	color: #ffffff;
}

.user-dropdown-menu a svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	color:  #999999;
}

.menu-divider {
	height: 1px;
	background: var(--border-color);
	margin: var(--spacing-xs) 0;
}

.logout-link {
	color: var(--error-color) !important;
}

.logout-link svg {
	color: var(--error-color) !important;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
.main-navigation {
	display: flex;
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: var(--spacing-xs);
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
	padding: var(--spacing-xs) var(--spacing-md);
	color: var(--text-color);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	border-radius: 4px;
	transition: all var(--transition-fast);
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
	background: #f0f0f0;
	color: var(--dark-text);
}

.main-navigation .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	border-radius: 8px;
	min-width: 200px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all var(--transition-normal);
	flex-direction: column;
	gap: 0;
	padding: var(--spacing-xs) 0;
	margin-top: var(--spacing-xs);
}

.main-navigation li:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.main-navigation .sub-menu a {
	padding: 10px 20px;
	border-radius: 0;
}

.main-navigation .sub-menu a:hover {
	background: var(--light-bg);
}

/* Main Menu Section */
.header-main-menu {
	background: #0a0a0a;
	border-top: 1px solid #1a1a1a;
	border-bottom: 1px solid #1a1a1a;
	overflow-x: hidden;
}

.main-menu-container {
	max-width: 1920px;
	margin: 0 auto;
	padding: 0 var(--spacing-lg);
	max-width: 100%;
	overflow-x: hidden;
}

.main-menu-container ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 0;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	align-items: center;
	height: 48px;
}

.main-menu-container ul::-webkit-scrollbar {
	height: 4px;
}

.main-menu-container ul::-webkit-scrollbar-thumb {
	background: #d1d5db;
	border-radius: 2px;
}

.main-menu-container li {
	flex-shrink: 0;
}

.main-menu-container a {
	color: var(--primary-color);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	padding: 0 var(--spacing-md);
	height: 100%;
	display: flex;
	align-items: center;
	white-space: nowrap;
	border-bottom: 3px solid transparent;
	transition: all var(--transition-fast);
}

.main-menu-container a:hover {
	color: #fff;
	background: rgba(0, 0, 0, 0.04);
}

.main-menu-container .current-menu-item > a,
.main-menu-container a.active {
	color: var(--primary-color);
	border-bottom-color: var(--primary-color);
}

/* Tags Section */
.header-tags-section {
	background: #000;
	border-bottom: 1px solid var(--border-color);
	overflow-x: hidden;
}

.tags-container {
	max-width: 1920px;
	margin: 0 auto;
	padding: 0 var(--spacing-lg);
	max-width: 100%;
	overflow-x: hidden;
}

.tags-scroll-wrapper {
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	max-width: 100%;
}

.tags-scroll-wrapper::-webkit-scrollbar {
	height: 4px;
}

.tags-scroll-wrapper::-webkit-scrollbar-thumb {
	background: #d1d5db;
	border-radius: 2px;
}

.tags-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 0;
	align-items: center;
	height: 44px;
}

.tags-list li {
	flex-shrink: 0;
}

.tags-list a {
	color: var(--primary-color);
	text-decoration: none;
	font-size: 13px;
	font-weight: 400;
	padding: 0 14px;
	height: 100%;
	display: flex;
	align-items: center;
	white-space: nowrap;
	border-bottom: 2px solid transparent;
	transition: all var(--transition-fast);
}

.tags-list a:hover {
	color: #fff;
	background: rgba(0, 0, 0, 0.03);
}

.tags-list a.current-tag {
	color: var(--primary-color);
	border-bottom-color: var(--primary-color);
	font-weight: 500;
}

/* Custom Links Section */
.header-custom-links {
	background: 000;
	border-bottom: 1px solid var(--border-color);
	overflow-x: hidden;
}

.custom-links-container {
	max-width: 1920px;
	margin: 0 auto;
	padding: 0 var(--spacing-lg);
	display: flex;
	gap: 0;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	align-items: center;
	height: 48px;
	max-width: 100%;
}

.custom-links-container::-webkit-scrollbar {
	height: 4px;
}

.custom-links-container::-webkit-scrollbar-thumb {
	background: #d1d5db;
	border-radius: 2px;
}

.custom-links-container a {
	color: var(--primary-color);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	padding: 0 var(--spacing-md);
	height: 100%;
	display: flex;
	align-items: center;
	white-space: nowrap;
	border-bottom: 3px solid transparent;
	transition: all var(--transition-fast);
	position: relative;
}

.custom-links-container a:hover {
	color: var(--link-hover-color);
	background: rgba(0, 0, 0, 0.04);
}

.custom-links-container a:active,
.custom-links-container a.active {
	color: var(--primary-color);
	border-bottom-color: var(--primary-color);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
	position: fixed;
	top: 64px;
	left: 0;
	width: 280px;
	height: calc(100vh - 64px);
	background: #fff;
	box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
	transform: translateX(-100%);
	transition: transform var(--transition-normal);
	overflow-y: auto;
	z-index: var(--z-overlay);
}

.mobile-nav-overlay.active {
	transform: translateX(0);
}

.mobile-navigation {
	padding: 20px 0;
}

.mobile-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mobile-navigation li {
	border-bottom: 1px solid #f0f0f0;
}

.mobile-navigation a {
	display: block;
	padding: 14px var(--spacing-lg);
	color: var(--dark-text);
	text-decoration: none;
	font-size: 15px;
	transition: background var(--transition-fast);
}

.mobile-navigation a:hover,
.mobile-navigation .current-menu-item > a {
	background: var(--light-bg);
	color: var(--primary-color);
}

.mobile-navigation .sub-menu {
	background: var(--light-bg);
}

.mobile-navigation .sub-menu a {
	padding-left: 40px;
	font-size: 14px;
}

/* Accessibility */
.skip-link {
	position: absolute;
	top: -40px;
	left: 0;
	background: var(--primary-color);
	color: #fff;
	padding: var(--spacing-xs) var(--spacing-md);
	text-decoration: none;
	z-index: var(--z-top);
}

.skip-link:focus {
	top: 0;
}

/*--------------------------------------------------------------
# MOBILE HEADER FIXES - Place at the END
--------------------------------------------------------------*/

/* Hide hamburger when no menu exists */
body:not(.has-primary-menu) .mobile-menu-toggle {
    display: none !important;
}

/* Tablet & Mobile - Show hamburger only when needed */
@media (max-width: 1024px) {
	.main-navigation {
		display: none;
	}
	
	.mobile-menu-toggle {
		display: flex;
	}
	
	/* But hide if no menu exists */
	body:not(.has-primary-menu) .mobile-menu-toggle {
		display: none !important;
	}
}

/* Mobile Large - Improved spacing */
@media (max-width: 768px) {
    .header-container {
        gap: 20px !important;
        padding: 12px 16px;
    }
    
    .header-left {
        gap: 16px !important;
    }
    
    .header-right {
        gap: 20px !important;
        margin-left: auto;
    }
    
    /* Extra space between logo and user actions */
    .site-branding {
        margin-right: 16px;
    }
    
    /* Control logo size */
    	.site-logo img,
	.custom-logo-link img {
		max-height: 50px;
		max-width: 300px;
	}

    
    /* UPDATED: Show site name on mobile */
    .logo-text {
        display: block !important;
    }
}

/* Mobile Small - Tighter spacing */
@media (max-width: 480px) {
    .header-container {
        padding: 10px 16px !important;
        gap: 16px !important;
    }
    
    .header-left {
        gap: 12px !important;
    }
    
    .header-right {
        gap: 12px !important;
    }
    
    .header-actions {
        gap: 10px !important;
    }
    
    /* Smaller logo on small screens */
    .site-logo img,
	.custom-logo-link img {
		max-height: 45px;
		max-width: 250px;
	}
    
    /* UPDATED: Show site name on mobile */
    .site-logo-text {
        max-width: 150px;
        font-size: 16px;
    }
    
    .logo-text {
        display: block !important;
    }
    
    /* Proper button sizing */
    .header-action-btn {
        min-width: 36px;
        min-height: 36px;
    }
}


/* Extra small screens */
@media (max-width: 375px) {
    .header-container {
        padding: 8px 12px !important;
        gap: 12px !important;
    }
    
    .header-left {
        gap: 10px !important;
    }
    
    .header-actions {
        gap: 8px !important;
    }
    
    .site-logo img,
	.custom-logo-link img {
		max-height: 40px;
		max-width: 200px;
	}
    
    /* UPDATED: Smaller site name for tiny screens */
    .site-logo-text {
        max-width: 120px;
        font-size: 14px;
    }
    
    .logo-text {
        display: block !important;
    }
}

/*--------------------------------------------------------------
# Video Grid
--------------------------------------------------------------*/
.video-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	max-width: 1320px;
	margin: 0 auto;
	padding-inline: 16px;
	justify-items: center; /* ADD THIS */
}

.video-card {
	background: transparent;
	border-radius: 0;
	overflow: hidden;
	box-shadow: none;
	border: none;
	transition: none;
	width: 100%; /* ADD THIS */
	max-width: 400px; /* ADD THIS - prevents cards from getting too wide */
}

.video-card:hover {
	transform: none;
	box-shadow: none;
}

.video-card-link {
	text-decoration: none;
	color: inherit;
	display: block;
}

.video-thumbnail {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	background: #000;
	overflow: hidden;
}

.thumbnail-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity var(--transition-normal);
}

.trailer-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	pointer-events: none;
	transition: opacity var(--transition-normal);
}

.video-thumbnail.has-trailer:hover .trailer-video {
	opacity: 1;
}

.video-thumbnail.has-trailer:hover .thumbnail-image {
	opacity: 0;
}

.duration-badge,
.views-badge {
	position: absolute;
	bottom: 10px;
	background: rgba(0, 0, 0, 0.85);
	color: #fff;
	padding: 4px var(--spacing-xs);
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	z-index: 2;
}

.duration-badge {
	right: 10px;
}

.views-badge {
	left: 10px;
}

.play-overlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60px;
	height: 60px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity var(--transition-normal), transform var(--transition-normal);
	z-index: 2;
	pointer-events: none;
}

.video-thumbnail:hover .play-overlay {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
	width: 30px;
	height: 30px;
	color: #000;
	margin-left: 3px;
}

.video-info {
	padding: 15px;
}

.video-title {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	margin: 0 0 10px 0;
	color: var(--primary-color);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.video-meta {
	display: flex;
	flex-wrap: wrap;
	gap: var(--spacing-xs);
	font-size: 13px;
	color: var(--text-color);
}

.video-author {
	font-weight: 500;
	color: green;
}

.video-views,
.video-date {
	color: var(--text-color);
}

.video-meta span:not(:last-child)::after {
	content: "•";
	margin-left: var(--spacing-xs);
	color: #aaa;
}

.video-thumbnail.loading .trailer-video {
	background: #000;
}

.featured-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ff9800;
    color: #000;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 10;
    pointer-events: none;
}

/* Premium Badge */
.premium-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(135deg, #ff9800 0%, #ffb74d 100%);
    color: #000;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 10;
    pointer-events: none;
}

/*---------------------------
# Native Video Ad Styling
---------------------------*/
.ad-card {
    max-width: 400px;
    width: 100%;
}

.ad-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    overflow: hidden;
}

.ad-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    font-size: 11px;
    padding: 3px 6px;
    border-radius: 4px;
    z-index: 2;
}

/* Force third-party ads to fit container */
.ad-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ad-media > * {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
}

.ad-media img,
.ad-media iframe,
.ad-media video,
.ad-media ins,
.ad-media div {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

/* Target common ad networks */
.ad-media .adsbygoogle,
.ad-media [id*="google_ads"],
.ad-media [class*="ad-"],
.ad-media [id*="ad-"] {
    width: 100% !important;
    height: 100% !important;
}

.ad-card .video-info {
    padding: 15px;
}

.ad-card .video-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ad-card .video-meta {
    display: flex;
    gap: 5px;
    font-size: 13px;
    color: var(--text-color);
}

.ad-card .video-author {
    font-weight: 500;
    color: green;
}

/*--------------------------------------------------------------
# Archive Pages
--------------------------------------------------------------*/
.archive-header {
	padding: var(--spacing-xl) var(--spacing-lg);
	text-align: center;
	background: #333;
	color: white;
	margin-bottom: var(--spacing-xl);
}

.archive-header .page-title {
	font-size: 32px;
	margin: 0 0 10px 0;
	font-weight: 700;
}

.archive-header .archive-description {
	font-size: 16px;
	margin: 0;
	opacity: 0.9;
}

/* Pornstars Archive */
.alphabet-filter {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--spacing-xs);
	padding: 20px var(--spacing-lg);
	max-width: 1200px;
	margin: 0 auto var(--spacing-xl);
	background: #333;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.filter-letter {
	padding: var(--spacing-xs) var(--spacing-sm);
	background: var(--light-bg);
	border: 2px solid var(--border-color);
	border-radius: 6px;
	color: var(--text-color);
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: all var(--transition-fast);
	min-width: 40px;
	text-align: center;
}

.filter-letter:hover {
	border-color: var(--primary-color);
	color: var(--primary-color);
	background: #f0f4ff;
}

.filter-letter.active {
	background: var(--primary-color);
	border-color: var(--primary-color);
	color: white;
}

.pornstars-gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: var(--spacing-xl);
}

.pornstar-card {
	background: transparent;
	border-radius: 0;
	overflow: hidden;
	transition: none;
	box-shadow: none;
	border: none;
}

.pornstar-card:hover {
	transform: none;
	box-shadow: none;
}

.pornstar-link {
	text-decoration: none;
	color: inherit;
	display: block;
}

.pornstar-thumbnail {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	background: #000;
	overflow: hidden;
}

.pornstar-thumbnail img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity var(--transition-normal);
}

.pornstar-card:hover .pornstar-thumbnail img {
	transform: none;
}

.pornstar-no-thumb {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #000;
}

.pornstar-placeholder {
	width: 60px;
	height: 60px;
	color: #999;
}

.pornstar-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
	padding: var(--spacing-sm);
	color: white;
	z-index: 2;
}

.pornstar-count {
	font-size: 13px;
	font-weight: 600;
}

.pornstar-info {
	padding: 15px;
	text-align: left;
}

.pornstar-name {
	font-size: 15px;
	font-weight: 600;
	margin: 0 0 5px 0;
	color: var(--primary-color);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.4;
}

.pornstar-videos {
	font-size: 13px;
	color: var(--text-color);
	margin: 0;
}

/* Gallery Page */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: var(--spacing-md);
	padding: var(--spacing-lg);
	max-width: 1920px;
	margin: 0 auto;
}

.gallery-item {
	display: block;
	position: relative;
	overflow: hidden;
	background: #f0f0f0;
	border-radius: 8px;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 16 / 9;
	transition: transform var(--transition-normal);
	display: block;
}

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

/* Categories Page */
.categories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: var(--spacing-lg);
	padding: 0 var(--spacing-lg) 60px;
	max-width: 1920px;
	margin: 0 auto;
}

.category-card {
	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.category-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.category-link {
	text-decoration: none;
	color: inherit;
	display: block;
}

.category-thumbnail {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	background: #f0f0f0;
	overflow: hidden;
}

.category-thumbnail img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-normal);
}

.category-card:hover .category-thumbnail img {
	transform: scale(1.05);
}

.category-no-thumb {
	display: flex;
	align-items: center;
	justify-content: center;
}

.category-placeholder {
	width: 60px;
	height: 60px;
	color: #999;
}

.category-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
	padding: var(--spacing-sm);
	color: white;
}

.category-count {
	font-size: 13px;
	font-weight: 500;
}

.category-info {
	padding: var(--spacing-md);
}

.category-name {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	color: var(--dark-text);
}

/* Register page / Login Page */
/* Reuse styles from login page */
.user-auth-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #0a0a0a;
}

.auth-container {
    width: 100%;
    max-width: 450px;
}

.auth-box {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h1 {
    font-size: 28px;
    margin: 0 0 10px;
    color: #fff;
}

.auth-header p {
    color: #999;
    margin: 0;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 500;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    background: #2a2a2a;
    border: 1px solid #333;
    border-radius: 6px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s;
}

.auth-form input:focus {
    outline: none;
    border-color: #e50914;
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.1);
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary {
    background: #e50914;
    color: #fff;
}

.btn-primary:hover {
    background: #f40612;
}

.btn-primary:disabled {
    background: #666;
    cursor: not-allowed;
}

.spinner {
    animation: rotate 2s linear infinite;
    width: 20px;
    height: 20px;
}

.spinner .path {
    stroke: #fff;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

@keyframes dash {
    0% { stroke-dasharray: 1, 150; stroke-dashoffset: 0; }
    50% { stroke-dasharray: 90, 150; stroke-dashoffset: -35; }
    100% { stroke-dasharray: 90, 150; stroke-dashoffset: -124; }
}

.form-message {
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}

.form-message.error {
    background: rgba(229, 9, 20, 0.1);
    border: 1px solid #e50914;
    color: #ff4444;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid #4caf50;
    color: #4caf50;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.auth-footer p {
    color: #999;
    margin: 0;
}

.auth-footer a {
    color: #e50914;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.checkbox-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.forgot-password-link {
    color: #ff0066;
    text-decoration: none;
    font-size: 14px;
}

.forgot-password-link:hover {
    text-decoration: underline;
}

/* My Account Page */
/* ============================================
   MY ACCOUNT PAGE - COMPLETE NO CONFLICT STYLES
   All My Account-specific classes prefixed with 'ma-'
   Shared/safe classes remain unchanged
   ============================================ */

.my-account-page {
    min-height: calc(100vh - 200px);
    padding: 40px 20px;
    background: #0a0a0a;
}

.account-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================
   ALERTS (ma- prefix)
   ============================================ */

.ma-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.ma-alert svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.ma-alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.ma-alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* ============================================
   ACCOUNT HEADER (ma- prefix)
   ============================================ */

.ma-account-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
}

.ma-user-info {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ma-user-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    object-fit: cover;
}

.ma-user-details h1 {
    margin: 0 0 5px;
    color: var(--primary-color);
    font-size: 28px;
}

.ma-user-details p {
    margin: 0;
    color: var(--primary-color);
}

.ma-user-meta {
    font-size: 14px;
    margin-top: 8px !important;
}

/* ============================================
   TABS (ma- prefix)
   ============================================ */

.ma-settings-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    border-bottom: 2px solid #2a2a2a;
    overflow-x: auto;
}

.ma-tab-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: #999;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.ma-tab-button svg {
    width: 20px;
    height: 20px;
}

.ma-tab-button:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.ma-tab-button.active {
    color: #e50914;
    border-bottom-color: #e50914;
}

.ma-tab-content {
    display: none;
}

.ma-tab-content.active {
    display: block;
}

/* ============================================
   FORM STYLES (ma- prefix)
   ============================================ */

.ma-account-edit {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
}

.ma-account-edit h2 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 24px;
}

.ma-section-description {
    color: #999;
    margin: 0 0 30px;
    font-size: 15px;
}

.ma-profile-form,
.ma-password-form {
    margin-top: 30px;
}

.ma-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.ma-form-group {
    margin-bottom: 24px;
}

.ma-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.ma-required {
    color: #e50914;
    margin-left: 4px;
}

.ma-form-group input[type="text"],
.ma-form-group input[type="email"],
.ma-form-group input[type="password"],
.ma-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: #2a2a2a;
    border: 2px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s;
}

.ma-form-group input[type="text"]:focus,
.ma-form-group input[type="email"]:focus,
.ma-form-group input[type="password"]:focus,
.ma-form-group textarea:focus {
    outline: none;
    border-color: #e50914;
    background: #333;
}

.ma-form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.ma-helper-text {
    display: block;
    margin-top: 6px;
    color: #666;
    font-size: 13px;
}

/* ============================================
   DANGER ZONE (Scoped + Dark Theme Safe)
   ============================================ */

.ma-danger-zone {
    margin-top: 2rem;
    padding: 1.5rem 1.8rem;
    border: 1px solid #444;
    background: #2a2a2a;
    border-radius: 8px;
    border-left: 4px solid #d32f2f;
}

/* Title */
.ma-danger-zone .ma-danger-title {
    margin: 0 0 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ef4444;
}

/* Warning text */
.ma-danger-zone .ma-danger-text {
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    color: #fca5a5;
    line-height: 1.5;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    padding: 0.75rem;
    border-radius: 6px;
}

/* Form */
.ma-danger-zone .ma-delete-account-form {
    max-width: 520px;
}

/* Labels */
.ma-danger-zone .ma-form-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
}

/* Required star */
.ma-danger-zone .ma-required {
    color: #ef4444;
}

/* Password input */
.ma-danger-zone .ma-form-group input[type="password"] {
    width: 100%;
    padding: 12px 14px;
    background: #1f1f1f;
    border: 2px solid #444;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s;
}

.ma-danger-zone .ma-form-group input[type="password"]:focus {
    outline: none;
    border-color: #ef4444;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.3);
    background: #262626;
}

/* Danger button */
.ma-btn-danger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    background: #dc2626;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.ma-btn-danger:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.ma-btn-danger:active {
    transform: scale(0.98);
}

.ma-btn-danger:focus-visible {
    outline: 3px solid rgba(220, 38, 38, 0.5);
    outline-offset: 2px;
}

/* Mobile tweaks */
@media (max-width: 480px) {
    .ma-danger-zone {
        padding: 1rem;
    }
}

/* ============================================
   PASSWORD INPUT WITH TOGGLE (ma- prefix)
   ============================================ */

.ma-password-input-wrapper {
    position: relative;
}

.ma-password-input-wrapper input {
    padding-right: 50px;
}

.ma-toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s;
}

.ma-toggle-password:hover {
    color: #999;
}

.ma-toggle-password svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   PASSWORD STRENGTH METER (ma- prefix)
   ============================================ */

.ma-password-strength {
    margin-top: 12px;
}

.ma-strength-meter {
    height: 4px;
    background: #2a2a2a;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 8px;
}

.ma-strength-meter-fill {
    height: 100%;
    width: 0%;
    transition: all 0.3s;
    border-radius: 2px;
}

.ma-strength-text {
    font-size: 13px;
    font-weight: 600;
}

/* ============================================
   PASSWORD REQUIREMENTS (ma- prefix)
   ============================================ */

.ma-password-requirements {
    background: #2a2a2a;
    border-radius: 8px;
    padding: 20px;
    margin: 24px 0;
}

.ma-password-requirements h4 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 14px;
}

.ma-password-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ma-password-requirements li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #999;
    font-size: 14px;
    transition: color 0.3s;
}

.ma-password-requirements li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.ma-password-requirements li.met {
    color: #10b981;
}

.ma-password-requirements li.met svg {
    display: none;
}

.ma-password-requirements li.met::before {
    content: '✓';
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #10b981;
    border-radius: 50%;
    font-weight: bold;
    font-size: 12px;
    color: #fff;
}

/* ============================================
   AVATAR UPLOAD (ma- prefix)
   ============================================ */

.ma-avatar-upload-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
}

.ma-current-avatar {
    flex-shrink: 0;
}

.ma-current-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #333;
    object-fit: cover;
}

.ma-upload-controls {
    flex: 1;
}

.ma-form-group input[type="file"] {
    display: none;
}

.ma-upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #2a2a2a;
    border: 2px solid #444;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.ma-upload-btn:hover {
    background: #333;
    border-color: #e50914;
}

.ma-upload-btn svg {
    width: 18px;
    height: 18px;
}

/* ============================================
   FORM ACTIONS (ma- prefix)
   ============================================ */

.ma-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #2a2a2a;
}

.ma-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #e50914;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.ma-btn-primary:hover {
    background: #f40612;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.4);
}

.ma-btn-primary svg {
    width: 18px;
    height: 18px;
}

/* ============================================
   ACCOUNT STATS (SAFE - no prefix needed)
   ============================================ */

.account-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(170,170,170);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 30px;
    height: 30px;
    color: #e50914;
}

.stat-info h3 {
    margin: 0;
    font-size: 32px;
    color: #fff;
}

.stat-info p {
    margin: 5px 0 0;
    color: #999;
}

/* ============================================
   CONTENT SECTIONS (SAFE - no prefix needed)
   ============================================ */

.account-content {
    display: block;
}

.content-section {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.section-header h2 {
    margin: 0;
    color: #fff;
    font-size: 22px;
}

.view-all {
    color: #e50914;
    text-decoration: none;
    font-weight: 600;
}

.view-all:hover {
    text-decoration: underline;
}

/* ============================================
   QUICK ACTIONS (SAFE - no prefix needed)
   ============================================ */

.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.action-btn svg {
    width: 20px;
    height: 20px;
}

.action-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.action-btn.primary {
    background: #e50914;
    border-color: #e50914;
}

.action-btn.primary:hover {
    background: #f40612;
}

/* ============================================
   VIDEO LIST (SAFE - no prefix needed)
   ============================================ */

.videos-list {
    display: grid;
    gap: 15px;
}

.video-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #2a2a2a;
    border-radius: 8px;
    transition: background 0.3s;
}

.video-item:hover {
    background: #333;
}

.video-thumb {
    width: 120px;
    height: 68px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    background: #1a1a1a;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-thumb {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.no-thumb svg {
    width: 30px;
    height: 30px;
}

.video-status {
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.video-status  {
    background: #10b981;
    color: #fff;
}

.status-pending {
    background: #ff9800;
    color: #fff;
}

.status-draft {
    background: #666;
    color: #fff;
}

.video-info h3 {
    margin: 0 0 8px;
    font-size: 16px;
}

.video-info h3 a {
    color: yellow;
    text-decoration: none;
}

.video-info h3 a:hover {
    color: #e50914;
}

.video-meta {
    margin: 0;
    color: #999;
    font-size: 13px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .ma-user-info {
        flex-direction: column;
        text-align: center;
    }

    .ma-settings-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .ma-form-grid {
        grid-template-columns: 1fr;
    }

    .ma-avatar-upload-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .action-buttons {
        grid-template-columns: 1fr;
    }

    .video-item {
        flex-direction: column;
        align-items: stretch;
    }

    .video-thumb {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .video-info {
        padding-top: 10px;
    }

    .ma-account-header {
        padding: 24px;
    }

    .ma-account-edit {
        padding: 24px;
    }

    .stat-card {
        padding: 20px;
    }

    .ma-tab-button {
        padding: 12px 16px;
        font-size: 14px;
    }

    .account-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .ma-settings-tabs {
        gap: 8px;
    }

    .ma-tab-button {
        padding: 10px 14px;
        font-size: 13px;
    }

    .ma-tab-button svg {
        width: 18px;
        height: 18px;
    }

    .stat-card {
        padding: 16px;
        gap: 15px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
    }

    .stat-icon svg {
        width: 24px;
        height: 24px;
    }

    .stat-info h3 {
        font-size: 24px;
    }
}
    
/* My Videos page */
.my-videos-page {
    min-height: calc(100vh - 200px);
    padding: 40px 20px;
    background: #000;
}

.my-videos-container {
    max-width: 1400px;
    margin: 0 auto;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e5e7eb;
}

.header-content h1 {
    margin: 0 0 8px;
    font-size: 32px;
    color: #fff;
}

.header-content p {
    margin: 0;
    color: #606060;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-primary {
    background: #667eea;
    color: #fff;
}

.btn-primary:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

.btn svg {
    width: 20px;
    height: 20px;
}

.filter-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
    overflow-x: auto;
}

.filter-tab {
    padding: 10px 20px;
    background: #333;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    color: #606060;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.2s;
}

.filter-tab:hover {
    border-color: #667eea;
    color: #667eea;
}

.filter-tab.active {
    background: #667eea;
    border-color: #667eea;
    color: #fff;
}

.dashboard-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.my-videos-page .video-card {
    background: #fff; /* or whatever dark color */
    border-radius: 0;       /* match dashboard design */
    box-shadow: none;       /* remove shadow */
    transition: none;       /* optional, if you don't want hover effects */
}

.my-videos-page .video-card:hover {
    transform: none;
    box-shadow: none;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    background: #f0f0f0;
}

.video-thumbnail a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
}

.no-thumbnail svg {
    width: 60px;
    height: 60px;
}

.video-status {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.my-videos-page .status-publish {
    background: #059669; /* darker green for dark UI */
    color: #fff;
}

.status-pending {
    background: #f59e0b;
    color: #fff;
}

.status-draft {
    background: #6b7280;
    color: #fff;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.overlay-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.overlay-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.overlay-btn svg {
    width: 20px;
    height: 20px;
}

.delete-btn:hover {
    background: #ef4444;
}

.video-info {
    padding: 16px;
}

.video-info h3 {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.4;
}

.video-info h3 a {
    color: #1a1a1a;
    text-decoration: none;
}

.video-info h3 a:hover {
    color: #667eea;
}

.video-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #606060;
    font-size: 13px;
}

.meta-item svg {
    width: 14px;
    height: 14px;
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
}

.empty-icon svg {
    width: 60px;
    height: 60px;
}

.empty-state h2 {
    margin: 0 0 12px;
    font-size: 28px;
    color: #1a1a1a;
}

.empty-state p {
    margin: 0 0 30px;
    color: #606060;
    font-size: 16px;
}

@media (max-width: 768px) {
    .page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .dashboard-videos-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .dashboard-videos-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ADD THESE STYLES TO YOUR MY ACCOUNT CSS
   New Profile Fields: Gender, Age, Country, Website
   ============================================ */

/* 3-Column Grid for Demographic Fields */
.ma-form-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

@media (max-width: 992px) {
    .ma-form-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .ma-form-grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Select Dropdown Styling */
.ma-form-group select {
    width: 100%;
    padding: 14px 16px;
    padding-right: 40px;
    background: #2a2a2a;
    border: 2px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
}

.ma-form-group select:hover {
    border-color: #e50914;
}

.ma-form-group select:focus {
    outline: none;
    border-color: #e50914;
    background-color: #333;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23e50914' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

.ma-form-group select option {
    background: #2a2a2a;
    color: #fff;
    padding: 10px;
}

/* Number Input (Birth Year) */
.ma-form-group input[type="number"] {
    width: 100%;
    padding: 14px 16px;
    background: #2a2a2a;
    border: 2px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s;
    -moz-appearance: textfield;
}

.ma-form-group input[type="number"]::-webkit-inner-spin-button,
.ma-form-group input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.ma-form-group input[type="number"]:focus {
    outline: none;
    border-color: #e50914;
    background: #333;
}

/* URL Input (Website) */
.ma-form-group input[type="url"] {
    width: 100%;
    padding: 14px 16px;
    background: #2a2a2a;
    border: 2px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-family: 'Courier New', Courier, monospace;
    transition: all 0.3s;
}

.ma-form-group input[type="url"]:focus {
    outline: none;
    border-color: #e50914;
    background: #333;
}

.ma-form-group input[type="url"]::placeholder {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #666;
}

/* Label with Icon Enhancement */
.ma-form-group label svg {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.ma-form-group:focus-within label svg {
    opacity: 1;
    color: #e50914;
}

/* Tags Page*/
.tags-cloud-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--spacing-lg) 60px;
}

.tags-display-options {
	display: flex;
	gap: var(--spacing-sm);
	margin-bottom: 32px;
	justify-content: center;
}

.display-toggle {
	padding: 10px var(--spacing-lg);
	background: #fff;
	border: 2px solid var(--border-color);
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	color: #333;
	cursor: pointer;
	transition: all var(--transition-fast);
}

.display-toggle:hover {
	border-color: var(--primary-color);
	color: var(--primary-color);
}

.display-toggle.active {
	background: #333;
	border-color: var(--primary-color);
	color: white;
}

.tags-cloud {
	display: none;
	text-align: center;
	line-height: 2;
}

.tags-cloud.active {
	display: block;
}

.tag-cloud-item {
	display: inline-block;
	margin: var(--spacing-xs) var(--spacing-sm);
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 500;
	transition: all var(--transition-fast);
}

.tag-cloud-item:hover {
	color: var(--secondary-color);
	transform: scale(1.1);
}

.tags-alphabetical {
	display: none;
}

.tags-alphabetical.active {
	display: block;
}

.tags-letter-group {
	margin-bottom: 32px;
}

.letter-heading {
	font-size: 24px;
	font-weight: 700;
	color: var(--primary-color);
	margin: 0 0 var(--spacing-md) 0;
	padding-bottom: var(--spacing-xs);
	border-bottom: 2px solid var(--primary-color);
}

.tags-letter-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: var(--spacing-sm);
}

.tag-list-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: var(--spacing-sm) var(--spacing-md);
	background: white;
	border-radius: 6px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	transition: all var(--transition-fast);
}

.tag-list-item:hover {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	transform: translateX(4px);
}

.tag-name {
	color: var(--dark-text);
	text-decoration: none;
	font-weight: 500;
	font-size: 15px;
}

.tag-name:hover {
	color: var(--primary-color);
}

.tag-count {
	color: #999;
	font-size: 13px;
}

.no-results {
	text-align: center;
	padding: 60px 20px;
	color: #666;
	font-size: 18px;
}

/*--------------------------------------------------------------
# Pagination & Navigation
--------------------------------------------------------------*/
.site-pagination {
	margin-top: var(--spacing-xl);
	padding: 20px 0;
	border-top: 1px solid #e9ecef;
	display: flex;
	justify-content: center;
}

.site-pagination .nav-links {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	align-items: center;
}

.site-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 var(--spacing-sm);
	background: #333;
	color: #fff;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 500;
	transition: background var(--transition-normal), transform 0.15s ease;
}

.site-pagination .page-numbers:hover {
	background: var(--secondary-color);
	transform: translateY(-1px);
}

.site-pagination .page-numbers.current {
	background: #a9acb0;
	cursor: default;
}

.site-pagination .page-numbers.dots {
	background: transparent;
	color: #6c757d;
}

.site-pagination .page-numbers.prev,
.site-pagination .page-numbers.next {
	padding: 0 var(--spacing-md);
	font-weight: 600;
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: end;
	flex: 1 0 50%;
}

.related-footer-cta {
	text-align: center;
	margin: 30px 0 10px;
}

.watch-more-btn {
	display: inline-block;
	padding: var(--spacing-sm) 26px;
	background-color: var(--primary-color);
	color: #000;
	font-weight: 600;
	font-size: 15px;
	border-radius: 6px;
	text-decoration: none;
	transition: background-color 0.25s ease, transform 0.15s ease;
}

.watch-more-btn:hover {
	background-color: #333;
	transform: translateY(-1px);
	color: #fff;
}

.watch-more-btn:focus-visible {
	outline: 2px solid #000;
	outline-offset: 3px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.site-footer {
	background: #242424;
	color: #b3b3b3;
	margin-top: 60px;
}

/* ============================================
   FOOTER ADS - MINIMAL APPROACH
   ============================================ */
.footer-ads-section {
	background: #242424;
	padding: var(--spacing-xl) 0;
	border-bottom: 1px solid #333;
	overflow: hidden;
}

.footer-ads-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	justify-items: center;
	align-items: start;
}

.footer-ad-widget {
	width: 100%;
	text-align: center;
}

/* Let ad content flow naturally - no forced dimensions */
.footer-ad-widget * {
	max-width: 100%;
}

/* Ad placeholder only */
.ad-placeholder {
	width: 300px;
	height: 250px;
	background: #2a2a2a;
	border: 2px dashed #404040;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--spacing-xs);
	color: #666;
	font-size: 14px;
	transition: all var(--transition-normal);
	margin: 0 auto;
}

.ad-placeholder:hover {
	border-color: var(--primary-color);
	background: #2f2f2f;
}

.ad-placeholder span {
	font-weight: 600;
	font-size: 16px;
}

.ad-placeholder small {
	font-size: 12px;
	color: #555;
}

/* ============================================
   FOOTER CONTENT & NAVIGATION
   ============================================ */
.footer-content {
	padding: 50px 0 30px;
	border-bottom: 1px solid #333;
}

.footer-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: var(--spacing-xl);
}

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

.footer-title {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 20px 0;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--primary-color);
}

.footer-description {
	font-size: 14px;
	line-height: 1.6;
	color: #b3b3b3;
	margin: 0;
}

.footer-column ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-column li {
	margin-bottom: 10px;
}

.footer-column a {
	color: #b3b3b3;
	text-decoration: none;
	font-size: 14px;
	transition: color var(--transition-fast);
	display: inline-block;
}

.footer-column a:hover {
	color: var(--primary-color);
}

/* ============================================
   FOOTER BOTTOM
   ============================================ */
.footer-bottom {
	padding: 25px 0;
	background: #141414;
}

.footer-bottom-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.site-info {
	margin: 0;
}

.site-info p {
	margin: 0;
	font-size: 14px;
	color: #808080;
}

.footer-social {
	display: flex;
	align-items: center;
	gap: 15px;
}

.powered-by {
	margin: 0;
	font-size: 13px;
	color: #666;
}

.powered-by a {
	color: #808080;
	text-decoration: none;
	transition: color var(--transition-fast);
}

.powered-by a:hover {
	color: var(--primary-color);
}

/* ============================================
   FOOTER RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
	.footer-ads-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
	
	.footer-container {
		grid-template-columns: 1fr 1fr;
		gap: 30px;
	}
}

@media (max-width: 768px) {
	.footer-ads-section {
		padding: 30px 0;
	}
	
	.footer-ads-container {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 0 10px;
	}
	
	.footer-content {
		padding: 40px 0 20px;
	}
	
	.footer-container {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.footer-column:first-child {
		border-bottom: 1px solid #333;
		padding-bottom: 20px;
	}
	
	.footer-bottom-container {
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.footer-title {
		font-size: 16px;
	}
	
	.footer-bottom {
		padding: 20px 0;
	}
	
	.site-info p,
	.footer-column a {
		font-size: 13px;
	}
}
/*--------------------------------------------------------------
# Search & Posts
--------------------------------------------------------------*/
.page-header {
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e5e5e5;
}

.page-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--primary-color);
	margin: 0;
}

.page-title span {
	color: var(--primary-color);
	font-weight: 700;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

.sticky {
	display: block;
}

.post,
.page {
	margin: 0 0 1.5em;
}

.updated:not(.published) {
	display: none;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

.widget select {
	max-width: 100%;
}

.home-top-ad-wrap {
    max-width: 900px;
    margin: 20px auto;
    text-align: center;
}

.home-bottom-ad-wrap {
    max-width: 900px;
    margin: 20px auto;
    text-align: center;
}

.page-top-ad-wrap {
    max-width: 900px;
    margin: 20px auto;
    text-align: center;
}

/* Remove extra bottom margin from the widget */
.page-top-ad-wrap.widget {
    margin-bottom: 0;
}

.page-bottom-ad-wrap {
    max-width: 900px;
    margin: 20px auto 0; /* 20px top margin, no extra bottom space */
    text-align: center;
}

/* Remove extra bottom margin from global .widget */
.page-bottom-ad-wrap.widget {
    margin-bottom: 0;
}


/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

.custom-logo-link {
	display: inline-block;
}

.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments */
.alignleft {
	float: left;
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {
	float: right;
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}

/*--------------------------------------------------------------
# Media Queries
--------------------------------------------------------------*/

/* Desktop Large */
@media (max-width: 1200px) {
	.video-grid {
			grid-template-columns: repeat(5, 1fr);
		gap: 18px;
	}
	
	.pornstars-gallery {
	grid-template-columns: repeat(4, 1fr);
		gap: 18px;
	}
	
	.gallery-grid {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
		gap: 14px;
	}
	
	.footer-ads-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
	
	.footer-container {
		grid-template-columns: 1fr 1fr;
		gap: 30px;
	}
}

/* Tablet */
@media (max-width: 1024px) {
	.header-container {
		gap: var(--spacing-md);
		padding: var(--spacing-sm) var(--spacing-md);
	}
	
	.main-navigation {
		display: none;
	}
	
	.mobile-menu-toggle {
		display: flex;
	}
	
	.main-menu-container,
	.tags-container,
	.custom-links-container {
		padding: 0 var(--spacing-md);
	}
	
	.search-results .video-grid,
	#primary .video-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	}
	
	.search-results .video-card,
	#primary .video-card {
		max-width: 400px;
	}
}

/* Mobile Large */
@media (max-width: 768px) {
	.site-main {
		padding: 15px;
	}
	
	.header-container {
		grid-template-columns: auto 1fr auto;
		gap: var(--spacing-sm);
	}
	
	.header-center {
		max-width: none;
		grid-column: 1 / -1;
		order: 3;
	}
	
	.header-left {
		gap: var(--spacing-sm);
	}
	
	.logo-text {
		display: none;
	}
	
	.search-wrapper {
		border-radius: 20px;
	}
	
	.search-field {
		padding: var(--spacing-xs) var(--spacing-md);
		font-size: 14px;
	}
	
	.search-submit {
		padding: var(--spacing-xs) var(--spacing-md);
	}
	
	.video-grid {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
		gap: 15px;
	}
	
	.video-title {
		font-size: 14px;
	}
	
	.video-meta {
		font-size: 12px;
	}
	
	.play-overlay {
		width: 50px;
		height: 50px;
	}
	
	.play-icon {
		width: 24px;
		height: 24px;
	}
	
	.header-action-btn {
		padding: var(--spacing-xs) var(--spacing-sm);
	}
	
	.header-action-btn .btn-text {
		display: none;
	}
	
	.user-menu-toggle .btn-text {
		display: none;
	}
	
	.upload-btn,
	.register-btn {
		padding: var(--spacing-xs);
		border-radius: 50%;
	}
	
	.main-menu-container,
	.tags-container,
	.custom-links-container {
		padding: 0 var(--spacing-sm);
	}
	
	.main-menu-container a {
		padding: 0 var(--spacing-sm);
		font-size: 13px;
	}
	
	.tags-list a {
		padding: 0 var(--spacing-sm);
		font-size: 12px;
	}
	
	.custom-links-container a {
		padding: 0 var(--spacing-sm);
		font-size: 13px;
	}
	
	.archive-header {
		padding: 30px var(--spacing-md);
	}
	
	.archive-header .page-title {
		font-size: 24px;
	}
	
	.alphabet-filter {
		padding: var(--spacing-md);
		gap: 6px;
	}
	
	.filter-letter {
		padding: 6px 10px;
		font-size: 13px;
		min-width: 36px;
	}
	
	.pornstars-gallery {
	grid-template-columns: repeat(3, 1fr);
		gap: 15px;
	}
	
	.pornstar-info {
		padding: var(--spacing-sm);
	}
	
	.pornstar-name {
		font-size: 14px;
	}
	
	.gallery-grid {
		grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
		gap: var(--spacing-sm);
		padding: var(--spacing-md);
	}
	
	.categories-grid {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
		gap: var(--spacing-md);
		padding: 0 var(--spacing-md) 40px;
	}
	
	.tags-cloud-container {
		padding: 0 var(--spacing-md) 40px;
	}
	
	.tags-letter-list {
		grid-template-columns: 1fr;
	}
	
	.tags-display-options {
		flex-direction: column;
	}
	
	.footer-ads-section {
		padding: 30px 0;
	}
	
	.footer-ads-container {
		grid-template-columns: 1fr;
		gap: 20px;
		justify-items: center;
		padding: 0 10px;
		margin: 0 auto;
	}
	
	.footer-ad-widget {
		justify-content: center;
		max-width: 300px;
		width: 100%;
		margin: 0 auto;
	}
	
	.ad-placeholder {
		width: 100%;
		max-width: 300px;
		margin: 0 auto;
	}
	
	.footer-content {
		padding: 40px 0 20px;
	}
	
	.footer-container {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.footer-column:first-child {
		border-bottom: 1px solid #333;
		padding-bottom: 20px;
	}
	
	.footer-bottom-container {
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}
	
	.page-header {
		margin-bottom: 40px;
	}

	.page-title {
		font-size: 2rem;
	}

	.no-results .page-title {
		font-size: 2.4rem;
	}
	
	.search-results .video-grid,
	#primary .video-grid {
		grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
		gap: 20px;
	}
	
	.search-results .video-card,
	#primary .video-card {
		max-width: 350px;
	}
}

/* Mobile Small */
@media (max-width: 480px) {
	.site-main {
		padding: 15px;
		max-width: 100%;
	}
	
	.header-container {
		padding: 10px var(--spacing-sm);
	}
	
	.header-actions {
		gap: 6px;
	}
	
	.header-action-btn {
		padding: 6px 10px;
	}
	
	.header-action-btn {
		width: 36px;
		height: 36px;
	}
	
	.header-action-btn svg {
		width: 18px;
		height: 18px;
	}
	
	.user-dropdown-menu {
		min-width: 180px;
		right: -10px;
	}
	
	.user-dropdown-menu a {
		padding: 10px 14px;
		font-size: 13px;
	}
	
	.video-grid {
		grid-template-columns: 1fr;
		gap: 15px;
		justify-items: center;
		width: 100%;
	}
	
	.video-card {
		max-width: 100%;
		width: 100%;
	}
	
	.video-info {
		padding: var(--spacing-sm);
	}
	
	.main-menu-container ul,
	.custom-links-container {
		height: 44px;
	}
	
	.tags-list {
		height: 40px;
	}
	
	.main-menu-container a,
	.tags-list a,
	.custom-links-container a {
		padding: 0 10px;
		font-size: 12px;
	}
	
	.pornstars-gallery {
		grid-template-columns: 1fr;
		gap: var(--spacing-sm);
	}
	
	.gallery-grid {
		grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
		gap: 10px;
		padding: var(--spacing-sm);
	}
	
	.footer-ads-section {
		padding: 20px 0;
	}
	
	.footer-content {
		padding: 30px 0 15px;
	}
	
	.footer-title {
		font-size: 16px;
	}
	
	.footer-bottom {
		padding: 20px 0;
	}
	
	.site-info p,
	.footer-column a {
		font-size: 13px;
	}
}

/* Desktop with button text */
@media (min-width: 769px) {
	.header-action-btn .btn-text {
		display: inline;
		margin-left: 5px;
	}
}

/* Print Styles */
@media print {
	.mobile-menu-toggle,
	.header-actions,
	.search-form,
	.mobile-nav-overlay,
	.header-main-menu,
	.header-tags-section,
	.header-custom-links {
		display: none;
	}
	
	.site-header {
		box-shadow: none;
		border-bottom: 1px solid #000;
	}
}

/* Dark Mode Header Styles */
.site-header[style*="background-color: #"] .header-main-menu,
.site-header[style*="background-color: #"] .header-custom-links {
	background: rgba(0, 0, 0, 0.2);
	border-top-color: rgba(255, 255, 255, 0.1);
	border-bottom-color: rgba(255, 255, 255, 0.1);
}

.site-header[style*="background-color: #"] .main-menu-container a,
.site-header[style*="background-color: #"] .custom-links-container a {
	color: rgba(255, 255, 255, 0.7);
}

.site-header[style*="background-color: #"] .main-menu-container a:hover,
.site-header[style*="background-color: #"] .custom-links-container a:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
}

.site-header[style*="background-color: #"] .main-menu-container a:active,
.site-header[style*="background-color: #"] .main-menu-container a.active,
.site-header[style*="background-color: #"] .custom-links-container a:active,
.site-header[style*="background-color: #"] .custom-links-container a.active {
	color: #fff;
	border-bottom-color: #fff;
}

.site-header[style*="background-color: #"] .header-tags-section {
	background: rgba(0, 0, 0, 0.15);
	border-bottom-color: rgba(255, 255, 255, 0.1);
}

.site-header[style*="background-color: #"] .tags-list a {
	color: rgba(255, 255, 255, 0.65);
}

.site-header[style*="background-color: #"] .tags-list a:hover {
	color: rgba(255, 255, 255, 0.9);
	background: rgba(255, 255, 255, 0.08);
}

.site-header[style*="background-color: #"] .tags-list a.current-tag {
	color: #fff;
	border-bottom-color: #fff;
}

.site-header[style*="background-color: #"] .user-dropdown-menu {
	background: #1a1a1a;
	border-color: #333;
}

.site-header[style*="background-color: #"] .user-dropdown-menu a {
	color: rgba(255, 255, 255, 0.9);
}

.site-header[style*="background-color: #"] .user-dropdown-menu a:hover {
	background: rgba(255, 255, 255, 0.1);
}

.site-header[style*="background-color: #"] .user-dropdown-menu a svg {
	color: rgba(255, 255, 255, 0.7);
}

.site-header[style*="background-color: #"] .menu-divider {
	background: rgba(255, 255, 255, 0.1);
}

.site-header[style*="background-color: #"] .header-action-btn {
	color: rgba(255, 255, 255, 0.7);
}

.site-header[style*="background-color: #"] .header-action-btn:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.site-header[style*="background-color: #"] .upload-btn,
.site-header[style*="background-color: #"] .register-btn {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
}

.site-header[style*="background-color: #"] .upload-btn:hover,
.site-header[style*="background-color: #"] .register-btn:hover {
	background: rgba(255, 255, 255, 0.25);
}

/* Header Style Variations */
.header-style-tube .header-container {
	padding: var(--spacing-xs) var(--spacing-md);
	max-width: 100%;
}

.header-style-tube .site-branding img,
.header-style-tube .site-logo img {
	max-height: 60px;
}

.header-style-tube .search-wrapper {
	border: 1px solid #ccc;
	background: #fff;
}

.header-style-tube .search-wrapper:focus-within {
	border-color: #1c62b9;
	box-shadow: none;
}

.header-style-tube .header-main-menu,
.header-style-tube .header-custom-links {
	background: #fff;
	border-bottom: 1px solid var(--border-color);
}

.header-style-minimal .header-container {
	padding: var(--spacing-md) var(--spacing-lg);
	border-bottom: 1px solid var(--border-color);
}

.header-style-minimal .search-wrapper {
	background: transparent;
	border: 1px solid var(--border-color);
}

.header-style-minimal .main-navigation a {
	padding: 6px var(--spacing-sm);
}

.header-style-minimal .header-main-menu,
.header-style-minimal .header-custom-links {
	background: transparent;
	border: none;
}

@media (max-width: 480px) {
	.header-style-tube .header-container {
		padding: 6px var(--spacing-sm);
	}
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

.infinity-end.neverending .site-footer {
	display: block;
}

/* End of Stylesheet */
/* ============================================================================
   USER PROFILE PAGE - COMPLETE STYLES
   Matches JavaScript functionality for cropper and profile display
   ============================================================================ */

/* ============================================================================
   CROPPER MODAL STYLES
   ============================================================================ */

#cropper-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cropper-container-wrapper {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    max-width: 90%;
    max-height: 90%;
    width: 800px;
    display: flex;
    flex-direction: column;
}

.cropper-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e1e8ed;
}

.cropper-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #14171a;
}

.cropper-image-container {
    flex: 1;
    max-height: 500px;
    overflow: hidden;
    margin-bottom: 15px;
}

#cropper-image {
    max-width: 100%;
    display: block;
}

.cropper-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

#crop-cancel,
#crop-save {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

#crop-cancel {
    background: #fff;
    color: #14171a;
    border: 1px solid #cfd9de;
}

#crop-cancel:hover {
    background: #f7f9fa;
}

#crop-save {
    background: #1da1f2;
    color: #fff;
}

#crop-save:hover {
    background: #1a91da;
}

/* ============================================================================
   DIRECTORY PAGE (ALL USERS)
   ============================================================================ */

.up-directory {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.up-directory-container {
    width: 100%;
}

.up-directory-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 10px 0;
}

.up-directory-description {
    text-align: center;
    font-size: 16px;
    color: var(--primary-color);
    margin: 0 0 40px 0;
}

.up-users-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.up-user-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.up-user-card:hover {
    border-color: #333;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(38, 34, 49, 0.56);
}

.up-user-card-link {
    text-decoration: none;
    color: inherit;
}

.up-user-card-avatar {
    margin-bottom: 15px;
}

.up-user-card-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.up-user-card h3 {
    color: var(--primary-color);
    margin: 0 0 8px 0;
    font-size: 1.2em;
}

.up-user-card-username {
    color:var(--primary-color);
    margin: 0 0 10px 0;
    font-size: 0.9em;
}

.up-user-card-videos {
    color: #888;
    margin: 0;
    font-size: 0.9em;
}

/* ============================================================================
   ERROR PAGE
   ============================================================================ */

.up-error {
    max-width: 600px;
    margin: 100px auto;
    padding: 40px 20px;
    text-align: center;
}

.up-error-content h1 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #fff;
}

.up-error-content p {
    font-size: 16px;
    color: #888;
    margin-bottom: 30px;
}

.up-error-content .btn {
    display: inline-block;
    padding: 12px 24px;
    background: #e50914;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s ease;
}

.up-error-content .btn:hover {
    background: #f40612;
}

/* ============================================================================
   INDIVIDUAL USER PROFILE - TWITTER-STYLE HEADER
   ============================================================================ */

.up-page {
    background: #0a0a0a;
    min-height: 100vh;
}

.up-container {
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
}

/* Header Wrapper - Contains banner and content */
.up-header-wrapper {
    position: relative;
}

/* Header Banner (Like Twitter's cover photo) */
.up-header-banner {
    height: 300px;
    background-size: cover;
    background-position: center;
    background-color: #cfd9de;
}

/* Default gradient banner when no image is set */
.up-header-banner-default {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Profile Content - Contains avatar and info */
.up-header-content {
    padding: 0 20px;
}

/* Avatar Wrapper - Positions avatar over the banner */
.up-avatar-wrapper {
    margin-top: -75px;
    margin-bottom: 15px;
}

.up-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.up-avatar img,
.up-avatar .avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Profile Info Section */
.up-info {
    padding-bottom: 20px;
    border-bottom: 1px solid #e1e8ed;
}

.up-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 5px 0;
}

.up-username {
    font-size: 16px;
    color: var(--primary-color);
    margin: 0 0 15px 0;
}

/* Bio Section */
.up-bio {
    margin: 15px 0;
}

.up-bio p {
    margin: 0;
    color: var(--primary-color);
    line-height: 1.6;
    font-size: 16px;
}

/* Profile Meta Information - Inline badges */
.up-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px 0;
}

.up-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--primary-color);
}

.up-meta-item svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

/* Website Link */
.up-website {
    margin: 15px 0;
}

.up-website-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #60a1e6;
    text-decoration: none;
    font-size: 0.95em;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 8px;
    background: #2a2a2a;
    border: 2px solid #444;
    transition: all 0.3s ease;
}


.up-website-link:hover {
    color: #1a91da;
    text-decoration: underline;
}

.up-website-link svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

/* ============================================================================
   PROFILE STATS
   ============================================================================ */

.up-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 30px 20px;
    border-bottom: 1px solid #e1e8ed;
}

.up-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #1a1a1a;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.up-stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #333;
    border-radius: 50%;
    flex-shrink: 0;
}

.up-stat-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.up-stat-content {
    display: flex;
    flex-direction: column;
}

.up-stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.up-stat-label {
    font-size: 13px;
    color: var(--primary-color);
    margin-top: 4px;
}

/* ============================================================================
   VIDEOS SECTION
   ============================================================================ */

.up-videos-section {
    padding: 30px 20px;
}

.up-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e1e8ed;
}

.up-section-header h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.up-section-header h2 svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.up-video-count {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
}

/* Videos Grid - uses main .video-grid styles from theme */
/* Only profile-specific adjustments here if needed */

/* No Videos State */
.up-no-videos {
    text-align: center;
    padding: 60px 20px;
}

.up-no-videos svg {
    width: 64px;
    height: 64px;
    color: #cfd9de;
    margin-bottom: 20px;
}

.up-no-videos h3 {
    font-size: 20px;
    color: #14171a;
    margin: 0 0 10px 0;
}

.up-no-videos p {
    font-size: 16px;
    color: #657786;
    margin: 0;
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */

@media (max-width: 768px) {
    .up-header-banner {
        height: 200px;
    }
    
    .up-avatar-wrapper {
        margin-top: -50px;
    }
    
    .up-avatar {
        width: 100px;
        height: 100px;
    }
    
    .up-name {
        font-size: 20px;
    }
    
    .up-stats {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 15px;
    }
    
    .up-users-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .up-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    #cropper-modal {
        padding: 10px;
    }
    
    .cropper-container-wrapper {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .up-header-banner {
        height: 100px;
        
    }
    
    .up-avatar {
        width: 80px;
        height: 80px;
    }
    
    .up-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .up-users-grid {
        grid-template-columns: 1fr;
    }
    
    .cropper-actions {
        flex-direction: column;
    }
    
    #crop-cancel,
    #crop-save {
        width: 100%;
    }
}

/*--------------------------------------------------------------
# Age Verification Refined
--------------------------------------------------------------*/
#age-verification-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95); /* Slightly darker for better focus */
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px); /* Adds a professional blur to background content */
}

#age-verification-modal {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 16px; /* Slightly rounder for a modern look */
    padding: 40px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5); /* Adds depth */
}

/* Button Group Adjustment */
.age-gate-buttons {
    display: flex;
    flex-direction: column; /* Stacked by default for mobile */
    gap: 12px;
}

@media (min-width: 480px) {
    .age-gate-buttons {
        flex-direction: row; /* Side-by-side on larger screens */
    }
    #age-gate-enter, #age-gate-exit {
        flex: 1; /* Makes buttons equal width */
    }
}

#age-gate-enter {
    background: #e00;
    color: #fff;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.1s, background 0.2s;
}

#age-gate-enter:active {
    transform: scale(0.98); /* Tactile feedback on click */
}

#age-gate-exit {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #aaa;
    border: 1px solid #444;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}

#age-gate-exit:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #888;
    color: #fff;
}

/* subcription */

.subscribe-page-simple {
    max-width: 1320px;
    background: #000;
    min-height: 100vh;
    padding: 60px 20px;
}

.subscribe-container {
    max-width: 1200px;
    margin: 0 auto;
}

.subscription-notification {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    animation: slideIn 0.5s ease-out;
}

.subscription-notification svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.subscription-notification strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.subscription-notification p {
    margin: 0;
    opacity: 0.95;
}

.subscription-notification.canceled {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subscribe-header {
    text-align: center;
    margin-bottom: 50px;
}

.subscribe-header h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
}

.subscribe-header p {
    font-size: 18px;
    color: #9ca3af;
}

.current-subscription-notice {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border: 1px solid #374151;
    color: white;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.current-subscription-notice > div {
    flex: 1;
}

.cancel-btn {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 2px solid #ef4444;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.cancel-btn:hover {
    background: #ef4444;
    color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-card {
    background: #1a1a1a;
    border: 1px solid #2d2d2d;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    position: relative;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #404040;
}

.pricing-card.featured {
    border: 2px solid #667eea;
    transform: scale(1.03);
    background: #1f1f1f;
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.savings-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #10b981;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.card-header h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin: 20px 0;
}

.price .currency {
    font-size: 20px;
    color: #667eea;
    font-weight: 600;
}

.price .amount {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
}

.price .period {
    font-size: 16px;
    color: #9ca3af;
}

.monthly-equivalent {
    text-align: center;
    color: #10b981;
    font-size: 14px;
    font-weight: 600;
    margin-top: 5px;
}

.features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.features li {
    padding: 12px 0;
    border-bottom: 1px solid #2d2d2d;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d1d5db;
}

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

.features li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #10b981;
}

.features li.disabled {
    opacity: 0.4;
}

.features li.disabled svg {
    color: #ef4444;
}

.plan-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
    text-align: center;
}

.plan-btn:hover:not(:disabled) {
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
    transform: translateY(-2px);
}

.plan-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #374151;
    color: #6b7280;
}

.free-btn {
    background: #374151;
    border: 1px solid #4b5563;
}

.free-btn:hover {
    background: #4b5563;
    box-shadow: 0 10px 25px rgba(75, 85, 99, 0.4);
}

.yearly-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.benefits-section {
    margin-top: 80px;
    text-align: center;
}

.benefits-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: #1a1a1a;
    border: 1px solid #2d2d2d;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: #404040;
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
}

.benefit-card p {
    color: #9ca3af;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .subscribe-header h1 {
        font-size: 32px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .current-subscription-notice {
        flex-direction: column;
        text-align: center;
    }
    
    .price .amount {
        font-size: 38px;
    }
}

