/* ============================================
   LUXURY DARK THEME - Model Showcase Website
   ============================================ */

/* CSS Custom Properties
   ---------------------------------------- */
:root {
    /* Core Colors */
    --bg-primary: #080808;
    --bg-secondary: #0f0f0f;
    --bg-tertiary: #141414;
    --bg-card: rgba(20, 20, 20, 0.7);
    
    /* Accent Colors */
    --gold: #D4AF78;
    --gold-light: #E8C89A;
    --gold-dark: #B8945E;
    --rose: #C9788A;
    --rose-light: #D994A6;
    
    /* Text Colors */
    --text-primary: #F5F5F5;
    --text-secondary: #B8B8B8;
    --text-muted: #6B6B6B;
    
    /* Platform Colors */
    --telegram: #229ED9;
    --instagram-gradient: linear-gradient(135deg, #833AB4, #FD1D1D, #FCAF45);
    --onlyfans: #00A8E3;
    --fansly: #FF3B6A;
    --privacy: #E91E63;
    --x: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 0 20px rgba(212, 175, 120, 0.3);
    --shadow-rose: 0 0 20px rgba(201, 120, 138, 0.3);
    
    /* Border */
    --border-subtle: 1px solid rgba(255, 255, 255, 0.06);
    --border-gold: 1px solid rgba(212, 175, 120, 0.3);
}

/* Reset & Base
   ---------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Grain Texture Overlay
   ---------------------------------------- */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Typography
   ---------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    font-weight: 300;
    color: var(--text-secondary);
}

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

a:hover {
    color: var(--gold-light);
}

/* Images
   ---------------------------------------- */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--spacing-md) var(--spacing-lg);
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(8, 8, 8, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: var(--border-subtle);
    padding: var(--spacing-sm) var(--spacing-lg);
}

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

.navbar-logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.navbar-logo:hover {
    color: var(--gold-light);
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    list-style: none;
}

.navbar-link {
    color: var(--text-secondary);
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color var(--transition-fast);
}

.navbar-link:hover {
    color: var(--gold);
}

.navbar-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary);
    padding: 0.75rem 1.75rem;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.navbar-cta:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--bg-primary);
    box-shadow: var(--shadow-gold);
}

/* Mobile Menu Toggle
   ---------------------------------------- */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.navbar-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: all var(--transition-fast);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-secondary);
    border-top: var(--border-subtle);
    padding: var(--spacing-xl) var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-sm);
}

.footer-description {
    color: var(--text-muted);
    font-size: 0.875rem;
    max-width: 300px;
}

.footer-heading {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: 1400px;
    margin: var(--spacing-lg) auto 0;
    padding-top: var(--spacing-lg);
    border-top: var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.footer-legal {
    display: flex;
    gap: var(--spacing-md);
    list-style: none;
}

.footer-legal a {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    position: relative;
    background: radial-gradient(ellipse at center, rgba(212, 175, 120, 0.08) 0%, transparent 70%);
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    border: var(--border-gold);
    padding: 0.5rem 1.5rem;
    margin-bottom: var(--spacing-md);
}

.hero-title {
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.hero-scroll {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
    padding: var(--spacing-xl) var(--spacing-lg);
}

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

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-badge {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: var(--spacing-sm);
}

.section-title {
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   MODEL CARDS
   ============================================ */
.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-md);
}

.models-grid--featured {
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: var(--spacing-lg);
}

.models-grid--super {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

.model-card {
    position: relative;
    background: var(--bg-card);
    border: var(--border-subtle);
    overflow: hidden;
    transition: all var(--transition-medium);
    cursor: pointer;
}

.model-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
    opacity: 0.7;
    transition: opacity var(--transition-medium);
}

.model-card:hover {
    transform: scale(1.03);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.model-card:hover::before {
    opacity: 1;
}

.model-card-image-wrapper {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.model-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.model-card:hover .model-card-image {
    transform: scale(1.1);
}

.model-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-md);
    z-index: 2;
}

.model-card-name {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    font-family: var(--font-heading);
}

.model-card-badges {
    display: flex;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
}

.model-card-badge {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border: 1px solid;
}

.model-card-badge--featured {
    color: var(--gold);
    border-color: var(--gold);
}

.model-card-badge--super {
    color: var(--rose);
    border-color: var(--rose);
    box-shadow: var(--shadow-rose);
}

.model-card-social {
    display: flex;
    gap: var(--spacing-xs);
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-medium);
}

.model-card:hover .model-card-social {
    opacity: 1;
    transform: translateY(0);
}

.model-card-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-fast);
}

.model-card-social a:hover {
    border-color: currentColor;
    box-shadow: 0 0 15px currentColor;
}

.model-card-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ============================================
   PROFILE PAGE
   ============================================ */
.profile-header {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.profile-header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(8, 8, 8, 0.9) 70%, var(--bg-primary) 100%);
    display: flex;
    align-items: flex-end;
    padding: var(--spacing-xl) var(--spacing-lg);
}

.profile-header-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.profile-name {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.profile-badges {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.profile-badge {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.5rem 1.25rem;
    border: 1px solid;
}

.profile-badge--featured {
    color: var(--gold);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.profile-badge--super {
    color: var(--rose);
    border-color: var(--rose);
    box-shadow: var(--shadow-rose);
}

.profile-badge--active {
    color: #4CAF50;
    border-color: #4CAF50;
}

/* Profile Main Content
   ---------------------------------------- */
.profile-main {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--spacing-xl);
    padding: var(--spacing-xl) var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto;
}

/* Photo Gallery
   ---------------------------------------- */
.gallery-section {
    margin-bottom: var(--spacing-xl);
}

.gallery-section-title {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
}

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

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    border: var(--border-subtle);
}

.gallery-item:hover {
    border-color: var(--gold);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

/* Lightbox
   ---------------------------------------- */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 8, 0.98);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border: var(--border-gold);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: var(--spacing-sm);
    transition: color var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--gold);
}

.lightbox-close svg {
    width: 32px;
    height: 32px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: var(--spacing-md);
    transition: color var(--transition-fast);
}

.lightbox-nav:hover {
    color: var(--gold);
}

.lightbox-nav svg {
    width: 40px;
    height: 40px;
}

.lightbox-prev { left: -80px; }
.lightbox-next { right: -80px; }

/* Profile Sidebar
   ---------------------------------------- */
.profile-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.profile-description {
    background: var(--bg-card);
    border: var(--border-subtle);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.profile-description-title {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
}

.profile-description-text {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 0.95rem;
}

/* Social Links Sidebar
   ---------------------------------------- */
.social-links {
    background: var(--bg-card);
    border: var(--border-subtle);
    padding: var(--spacing-lg);
}

.social-links-title {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
}

.social-links-list {
    list-style: none;
}

.social-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    border-bottom: var(--border-subtle);
    transition: all var(--transition-fast);
}

.social-link:last-child {
    border-bottom: none;
}

.social-link:hover {
    transform: translateX(5px);
}

.social-link svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.social-link-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.social-link:hover .social-link-label {
    color: var(--text-primary);
}

/* Platform Colors
   ---------------------------------------- */
.social-link--telegram svg { fill: var(--telegram); }
.social-link--telegram:hover { color: var(--telegram); }
.social-link--telegram:hover .social-link-label { color: var(--telegram); }

.social-link--instagram svg { fill: url(#instagram-gradient); }
.social-link--instagram:hover { color: #FD1D1D; }
.social-link--instagram:hover .social-link-label { color: #FD1D1D; }

.social-link--onlyfans svg { fill: var(--onlyfans); }
.social-link--onlyfans:hover { color: var(--onlyfans); }
.social-link--onlyfans:hover .social-link-label { color: var(--onlyfans); }

.social-link--fansly svg { fill: var(--fansly); }
.social-link--fansly:hover { color: var(--fansly); }
.social-link--fansly:hover .social-link-label { color: var(--fansly); }

.social-link--privacy svg { fill: var(--privacy); }
.social-link--privacy:hover { color: var(--privacy); }
.social-link--privacy:hover .social-link-label { color: var(--privacy); }

.social-link--x svg { fill: var(--x); }
.social-link--x:hover { color: var(--x); }
.social-link--x:hover .social-link-label { color: var(--x); }

.social-link--website svg { fill: var(--gold); }
.social-link--website:hover { color: var(--gold); }
.social-link--website:hover .social-link-label { color: var(--gold); }

/* Videos Section
   ---------------------------------------- */
.videos-section {
    margin-bottom: var(--spacing-xl);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.video-item {
    background: var(--bg-card);
    border: var(--border-subtle);
    overflow: hidden;
}

.video-item video,
.video-item iframe {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.video-item-title {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ============================================
   FILTER SECTION
   ---------------------------------------- */
.filter-section {
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.filter-input {
    background: var(--bg-card);
    border: var(--border-subtle);
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    width: 100%;
    max-width: 400px;
    transition: border-color var(--transition-fast);
}

.filter-input::placeholder {
    color: var(--text-muted);
}

.filter-input:focus {
    outline: none;
    border-color: var(--gold);
}

/* ============================================
   RESPONSIVE DESIGN
   ---------------------------------------- */
@media (max-width: 1200px) {
    .profile-main {
        grid-template-columns: 1fr;
    }
    
    .profile-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 2.5rem;
        --spacing-lg: 1.5rem;
    }
    
    .navbar-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(8, 8, 8, 0.98);
        flex-direction: column;
        padding: var(--spacing-lg);
        border-bottom: var(--border-subtle);
    }
    
    .navbar-nav.active {
        display: flex;
    }
    
    .navbar-toggle {
        display: flex;
    }
    
    .models-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .models-grid--featured {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lightbox-nav {
        display: none;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-description {
        max-width: none;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .models-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ============================================
   UTILITY CLASSES
   ---------------------------------------- */
.text-gold { color: var(--gold); }
.text-rose { color: var(--rose); }
.text-center { text-align: center; }
.hidden { display: none; }

/* SVG Gradients Definition (hidden)
   ---------------------------------------- */
.svg-defs {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

/* ============================================
   PROFILE PAGE STYLES
   ============================================ */

/* Profile Hero
   ---------------------------------------- */
.profile-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
}

.profile-hero-bg {
    position: absolute;
    inset: 0;
}

.profile-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.profile-hero-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
}

.profile-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(8, 8, 8, 0.3) 0%,
        rgba(8, 8, 8, 0.6) 50%,
        var(--bg-primary) 100%
    );
}

.profile-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 3rem;
}

.profile-hero-content .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Breadcrumb
   ---------------------------------------- */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span:not(:last-child) {
    opacity: 0.5;
}

/* Profile Name & Badges
   ---------------------------------------- */
.profile-name {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.profile-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.875rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge--super {
    background: linear-gradient(135deg, rgba(201, 120, 138, 0.2) 0%, rgba(201, 120, 138, 0.1) 100%);
    color: var(--rose-light);
    border: 1px solid rgba(201, 120, 138, 0.3);
}

.badge--featured {
    background: linear-gradient(135deg, rgba(212, 175, 120, 0.2) 0%, rgba(212, 175, 120, 0.1) 100%);
    color: var(--gold-light);
    border: 1px solid rgba(212, 175, 120, 0.3);
}

.badge--active {
    background: rgba(76, 175, 80, 0.15);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

/* Social Links
   ---------------------------------------- */
.profile-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--bg-tertiary);
    border: var(--border-subtle);
    border-radius: 2rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 400;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--bg-card);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.social-link span {
    display: inline;
}

@media (max-width: 640px) {
    .social-link {
        padding: 0.8rem 1.25rem;
        flex: 1 1 auto;
        justify-content: center;
        min-width: 140px;
        font-size: 0.9rem;
    }
}

.social-link--onlyfans:hover { color: var(--onlyfans); border-color: var(--onlyfans); }
.social-link--fansly:hover { color: var(--fansly); border-color: var(--fansly); }
.social-link--privacy:hover { color: var(--privacy); border-color: var(--privacy); }
.social-link--instagram:hover { color: #FD1D1D; border-color: #FD1D1D; }
.social-link--x:hover { color: var(--text-primary); border-color: var(--text-muted); }
.social-link--telegram:hover { color: var(--telegram); border-color: var(--telegram); }
.social-link--website:hover { color: var(--gold); border-color: var(--gold); }
.social-link--ref:hover { color: var(--rose); border-color: var(--rose); }

/* Profile Section & Grid
   ---------------------------------------- */
.profile-section {
    padding: 4rem 0;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .profile-grid {
        grid-template-columns: 1fr 340px;
        gap: 3rem;
    }
}

/* Profile Cards
   ---------------------------------------- */
.profile-card {
    background: var(--bg-card);
    border: var(--border-subtle);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.profile-card--compact {
    padding: 1.5rem;
}

.profile-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: var(--border-subtle);
}

.profile-card-subtitle {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.profile-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Video Gallery
   ---------------------------------------- */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.video-player {
    width: 100%;
    border-radius: 0.5rem;
    background: var(--bg-tertiary);
    aspect-ratio: 16 / 9;
}

.external-video-list {
    list-style: none;
}

.external-video-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--bg-tertiary);
    border-radius: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
    margin-bottom: 0.5rem;
}

.external-video-link:hover {
    background: var(--bg-secondary);
    color: var(--gold);
}

/* Photo Gallery
   ---------------------------------------- */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition-medium);
}

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

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

/* Profile Info List
   ---------------------------------------- */
.profile-info-list {
    list-style: none;
}

.profile-info-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: var(--border-subtle);
}

.profile-info-list li:last-child {
    border-bottom: none;
}

.profile-info-label {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.profile-info-value {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Share Buttons
   ---------------------------------------- */
.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--bg-tertiary);
    border: var(--border-subtle);
    border-radius: 2rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.share-btn:hover {
    background: var(--bg-secondary);
    color: var(--gold);
    border-color: var(--gold);
}

/* Related Models
   ---------------------------------------- */
.related-models {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.related-model-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.related-model-link:hover {
    background: var(--bg-tertiary);
}

.related-model-image {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.related-model-name {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Responsive Adjustments
   ---------------------------------------- */
@media (max-width: 768px) {
    .profile-hero {
        height: 50vh;
        min-height: 300px;
    }
    
    .profile-section {
        padding: 2rem 0;
    }
    
    .profile-card {
        padding: 1.5rem;
    }
    
    .photo-gallery {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}
