/* ==========================
   OnlyFans Directory - Complete Light Theme CSS
   ========================== */

/* CSS Custom Properties */
:root {
    /* Primary Colors */
    --primary-blue: #2aabee;
    --primary-blue-dark: #229ada;
    --primary-blue-light: #4fc3f7;
    --primary-pink: #ff4757;
    --primary-purple: #a55eea;

    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-surface: #ffffff;
    --bg-elevated: #f0f2f5;
    --bg-card: #ffffff;
    --bg-overlay: rgba(0, 0, 0, 0.5);

    /* Text Colors */
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --text-muted: #a0a0a0;
    --text-inverse: #ffffff;

    /* Accent Colors */
    --accent-success: #26d0ce;
    --accent-warning: #fed602;
    --accent-error: #ff4757;
    --accent-info: #5352ed;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2aabee 0%, #229ada 100%);
    --gradient-secondary: linear-gradient(135deg, #ff4757 0%, #ff3838 100%);
    --gradient-surface: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);

    /* Borders */
    --border-color: #dee2e6;
    --border-hover: rgba(42, 171, 238, 0.4);
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 20px;
    --border-radius-full: 50%;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;

    /* Typography */
    --font-family-primary: 'Inter', 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
    --font-family-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-black: 900;

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;

    /* Z-Index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
    --z-toast: 1080;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}
/* Division */
body > div:nth-child(2){
    padding-top:0px !important;
    transform:translatex(0px) translatey(0px);
}


h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p {
    margin-bottom: var(--space-4);
    color: var(--text-secondary);
    line-height: 1.7;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
}

a:hover {
    color: var(--primary-blue-dark);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

/* Navigation */
.navbar {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    z-index: var(--z-fixed);
}

.navbar-brand {
    font-family: var(--font-family-heading);
    font-weight: var(--font-weight-black);
    font-size: var(--text-xl);
    color: var(--primary-blue) !important;
}

.navbar-nav .nav-link {
    color: var(--text-secondary) !important;
    font-weight: var(--font-weight-medium);
    padding: var(--space-2) var(--space-4) !important;
    border-radius: var(--border-radius-md);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-blue) !important;
    background: rgba(42, 171, 238, 0.05);
}

.navbar-nav .nav-link.active {
    color: var(--primary-blue) !important;
    background: rgba(42, 171, 238, 0.1);
}

.navbar-toggler {
    border: none;
    padding: var(--space-2);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(42, 171, 238, 0.25);
}

.dropdown-menu {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    margin-top: var(--space-2);
}

.dropdown-item {
    color: var(--text-secondary);
    font-weight: var(--font-weight-medium);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--border-radius-md);
    margin: var(--space-1) var(--space-2);
}

.dropdown-item:hover {
    background: rgba(42, 171, 238, 0.1);
    color: var(--primary-blue);
}

.dropdown-divider {
    border-color: var(--border-color);
    margin: var(--space-2) var(--space-4);
}

/* Buttons */
.btn {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--border-radius-lg);
    border: none;
    padding: var(--space-3) var(--space-6);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-blue-dark);
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--bg-elevated);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: rgba(42, 171, 238, 0.1);
    color: var(--primary-blue);
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
    border-radius: var(--border-radius-xl);
}

.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
}

.btn-floating {
    position: fixed;
    bottom: var(--space-8);
    right: var(--space-8);
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-full);
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: var(--shadow-lg);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: var(--text-lg);
    z-index: var(--z-toast);
}

/* Hero Section */
.hero-section {
    background: var(--gradient-surface);
    padding: var(--space-16) 0;
    border-bottom: 1px solid var(--border-color);
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-6);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-10);
}

.hero-stat {
    text-align: center;
    padding: var(--space-6);
    background: var(--bg-surface);
    border-radius: var(--border-radius-xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.hero-stat-number {
    display: block;
    font-size: var(--text-3xl);
    font-weight: var(--font-weight-black);
    color: var(--primary-blue);
    margin-bottom: var(--space-2);
}

.hero-stat-label {
    font-size: var(--text-sm);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: var(--font-weight-semibold);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
}

/* Text Gradient */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: var(--font-weight-black);
}

/* Breadcrumb */
.breadcrumb-section {
    background: var(--bg-secondary);
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
    background: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    color: var(--text-muted);
    font-weight: var(--font-weight-bold);
}

.breadcrumb-item a {
    color: var(--text-secondary);
}

.breadcrumb-item.active {
    color: var(--text-primary);
}

/* Search Section */
.search-section {
    background: var(--bg-secondary);
    padding: var(--space-12) 0;
    border-bottom: 1px solid var(--border-color);
}

.search-container {
    max-width: 600px;
    margin: 0 auto var(--space-8);
}

.search-input-group {
    position: relative;
    background: var(--bg-surface);
    border-radius: var(--border-radius-xl);
    padding: var(--space-1);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.search-input-group.focused {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.search-input {
    background: transparent;
    border: none;
    outline: none;
    width: calc(100% - 120px);
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-base);
    color: var(--text-primary);
    font-weight: var(--font-weight-medium);
}

.search-button {
    position: absolute;
    right: var(--space-1);
    top: var(--space-1);
    bottom: var(--space-1);
    width: 120px;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--border-radius-lg);
    color: white;
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
}

/* Category Filters */
.category-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-3);
}

.category-link {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    box-shadow: var(--shadow-sm);
}

.category-link:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.category-link.active {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-blue);
}

.category-icon {
    font-size: var(--text-lg);
}

.category-count {
    font-size: var(--text-sm);
    opacity: 0.8;
}

/* Models Section */
.models-section {
    padding: var(--space-16) 0;
    background: var(--bg-primary);
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-12);
}

/* Model Card */
.model-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    position: relative;
}

.model-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.model-image-container {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.model-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(15px);
}

/* Badges */
.verified-badge,
.featured-badge {
    position: absolute;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--border-radius-lg);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-semibold);
    display: flex;
    align-items: center;
    gap: var(--space-1);
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
}

.verified-badge {
    top: var(--space-4);
    right: var(--space-4);
    background: var(--accent-success);
    color: white;
}

.featured-badge {
    top: var(--space-4);
    left: var(--space-4);
    background: var(--accent-warning);
    color: var(--text-primary);
}

/* Model Overlay */
.model-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 4;
}

.model-card:hover .model-overlay {
    opacity: 1;
}

/* Model Content */
.model-content {
    padding: var(--space-6);
}

.model-name {
    font-size: var(--text-xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-3);
    color: var(--text-primary);
}

.model-bio {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    line-height: 1.6;
    margin-bottom: var(--space-4);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Model Stats */
.model-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-5);
    background: var(--bg-secondary);
    padding: var(--space-3);
    border-radius: var(--border-radius-lg);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
    font-size: var(--text-sm);
    color: var(--text-muted);
    font-weight: var(--font-weight-medium);
}

.stat-icon {
    font-size: var(--text-base);
}

.stat-value {
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
}

.stat-label {
    font-size: var(--text-xs);
}

/* Model Meta */
.model-meta {
    margin-bottom: var(--space-4);
}

.model-info {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-3);
}

.info-item {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

/* Model Tags */
.model-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

/* Model Footer */
.model-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid var(--border-color);
}

/* Category Badge */
.category-badge {
    background: rgba(42, 171, 238, 0.1);
    color: var(--primary-blue);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--border-radius-lg);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(42, 171, 238, 0.1);
}

/* Category-specific badges */
.category-lifestyle { background: #e8f5e9; color: #4caf50; border-color: rgba(76, 175, 80, 0.2); }
.category-fitness { background: #fff3e0; color: #ff9800; border-color: rgba(255, 152, 0, 0.2); }
.category-gaming { background: #f3e5f5; color: #9c27b0; border-color: rgba(156, 39, 176, 0.2); }
.category-art { background: #e3f2fd; color: #2196f3; border-color: rgba(33, 150, 243, 0.2); }

/* Pagination */
.pagination-section {
    margin-top: var(--space-16);
    text-align: center;
}

.pagination {
    display: inline-flex;
    background: var(--bg-surface);
    border-radius: var(--border-radius-xl);
    padding: var(--space-2);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    gap: var(--space-1);
}

.page-item {
    list-style: none;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: var(--space-2) var(--space-3);
    color: var(--text-secondary);
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    border-radius: var(--border-radius-lg);
    border: none;
    background: transparent;
}

.page-link:hover {
    background: var(--bg-secondary);
    color: var(--primary-blue);
}

.page-item.active .page-link {
    background: var(--gradient-primary);
    color: white;
}

.page-item.disabled .page-link {
    color: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.5;
}

.pagination-info {
    margin-top: var(--space-4);
    color: var(--text-muted);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: var(--space-16) var(--space-8);
    background: var(--bg-surface);
    border-radius: var(--border-radius-xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.empty-icon {
    font-size: var(--text-6xl);
    margin-bottom: var(--space-6);
    opacity: 0.5;
}

.empty-title {
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

.empty-description {
    color: var(--text-secondary);
    font-size: var(--text-lg);
    margin-bottom: var(--space-8);
}

.empty-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* Features Section */
.features-section {
    padding: var(--space-16) 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.features-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.features-header h2 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-4);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.feature-card {
    background: var(--bg-surface);
    padding: var(--space-8);
    border-radius: var(--border-radius-xl);
    border: 1px solid var(--border-color);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    background: var(--gradient-primary);
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    box-shadow: var(--shadow-md);
}

.feature-icon i {
    font-size: var(--text-2xl);
    color: white;
}

.feature-title {
    font-size: var(--text-xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Model Profile Page */
.model-profile-image-wrapper {
    margin-bottom: var(--space-8);
    margin-right: var(--space-8);
}

.model-profile-image {
    width: 300px;
    height: 300px;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    border: 3px solid rgba(42, 171, 238, 0.2);
}

.model-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(15px);
}

.model-profile-info {
    flex: 1;
}

.model-profile-info .model-name {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-4);
    font-weight: var(--font-weight-black);
}

.model-profile-info .model-bio {
    font-size: var(--text-lg);
    margin-bottom: var(--space-6);
}

/* Model Gallery */
.model-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.gallery-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    border: 2px solid var(--border-color);
    filter: blur(15px);
}

.gallery-modal-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    filter: blur(15px);
}

.gallery-modal-actions {
    margin-top: var(--space-6);
    display: flex;
    justify-content: center;
    gap: var(--space-4);
}

/* Model Info List */
.model-info-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.model-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--border-color);
}

.info-label {
    font-weight: var(--font-weight-semibold);
    color: var(--text-secondary);
    font-size: var(--text-sm);
}

.info-value {
    color: var(--text-primary);
    font-weight: var(--font-weight-medium);
}

/* Rating System */
.rating-stars {
    display: flex;
    gap: var(--space-2);
    justify-content: center;
}

.rating-star {
    font-size: var(--text-2xl);
    color: var(--text-muted);
    cursor: pointer;
}

.rating-star:hover,
.rating-star.active {
    color: var(--accent-warning);
}

.rating-text {
    margin-top: var(--space-3);
}

/* Model Sidebar */
.model-sidebar {
    width: 100%;
    max-width: 350px;
}

/* Ad Card */
.ad-card {
    background: var(--bg-secondary);
}

.ad-placeholder {
    padding: var(--space-8);
    opacity: 0.5;
}

.ad-placeholder i {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-4);
}

/* Footer */
footer {
    background: var(--bg-surface) !important;
    border-top: 1px solid var(--border-color) !important;
    padding: var(--space-16) 0 var(--space-8) !important;
    margin-top: var(--space-20) !important;
}

footer h5, footer h6 {
    color: var(--text-primary);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-4);
}

footer p, footer .text-muted {
    color: var(--text-secondary) !important;
    line-height: 1.6;
}

footer a {
    color: var(--text-muted) !important;
}

footer a:hover {
    color: var(--primary-blue) !important;
    text-decoration: none;
}

.social-links a {
    display: inline-block;
    padding: var(--space-2);
    border-radius: var(--border-radius-md);
}

/* Newsletter Form */
.newsletter-form .input-group {
    max-width: 300px;
}

.newsletter-form .form-control {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: var(--border-radius-lg) 0 0 var(--border-radius-lg);
}

.newsletter-form .form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(42, 171, 238, 0.25);
}

.newsletter-form .btn {
    border-radius: 0 var(--border-radius-lg) var(--border-radius-lg) 0;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    padding: var(--space-4) 0;
    z-index: var(--z-toast);
    box-shadow: var(--shadow-lg);
}

.cookie-consent p {
    margin: 0;
    color: var(--text-secondary);
    font-size: var(--text-sm);
}

.cookie-consent .btn {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
}

/* Loading Spinner - DEVRE DIŞI */
.loading-spinner {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

#loadingSpinner {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Modal */
.modal-content {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
    padding: var(--space-6);
}

.modal-title {
    color: var(--text-primary);
    font-weight: var(--font-weight-bold);
}

.modal-body {
    padding: var(--space-6);
}

.modal-footer {
    border-top: 1px solid var(--border-color);
    padding: var(--space-6);
}

.btn-close {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: var(--text-xl);
    cursor: pointer;
    padding: var(--space-2);
    border-radius: var(--border-radius-md);
    opacity: 0.7;
}

/* Forms */
.form-control {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    color: var(--text-primary);
    padding: var(--space-3) var(--space-4);
    font-weight: var(--font-weight-medium);
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(42, 171, 238, 0.25);
}

.input-group {
    position: relative;
}

/* Image Fallback */
.image-fallback {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    color: var(--text-muted);
}

.image-fallback i {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-3);
}

/* Scale In Animation */
.scale-in {
    opacity: 0;
    transform: scale(0.9);
}

.scale-in.stagger-1 { animation-delay: 0.1s; }
.scale-in.stagger-2 { animation-delay: 0.2s; }
.scale-in.stagger-3 { animation-delay: 0.3s; }
.scale-in.stagger-4 { animation-delay: 0.4s; }
.scale-in.stagger-5 { animation-delay: 0.5s; }

/* Slide In Animations */
.slide-in-left,
.slide-in-up,
.slide-in-right {
    opacity: 0;
    transform: translateY(20px);
}

/* Text Colors */
.text-primary { color: var(--text-primary) !important; }
.text-secondary { color: var(--text-secondary) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-danger { color: var(--accent-error) !important; }
.text-warning { color: var(--accent-warning) !important; }
.text-success { color: var(--accent-success) !important; }
.text-info { color: var(--accent-info) !important; }

/* Background Colors */
.bg-primary { background-color: var(--bg-primary) !important; }
.bg-secondary { background-color: var(--bg-secondary) !important; }
.bg-dark { background-color: var(--bg-surface) !important; }
.bg-light { background-color: var(--bg-elevated) !important; }

/* Badge Colors */
.badge {
    padding: var(--space-1) var(--space-2);
    border-radius: var(--border-radius-sm);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-semibold);
}

.bg-primary { background-color: var(--primary-blue) !important; }
.bg-success { background-color: var(--accent-success) !important; }
.bg-danger { background-color: var(--accent-error) !important; }
.bg-warning { background-color: var(--accent-warning) !important; }
.bg-info { background-color: var(--accent-info) !important; }

/* Border Utilities */
.border { border: 1px solid var(--border-color) !important; }
.border-top { border-top: 1px solid var(--border-color) !important; }
.border-bottom { border-bottom: 1px solid var(--border-color) !important; }
.border-secondary { border-color: var(--border-color) !important; }

/* Spacing Utilities */
.m-0 { margin: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: var(--space-2) !important; }
.mb-3 { margin-bottom: var(--space-3) !important; }
.mb-4 { margin-bottom: var(--space-4) !important; }
.mt-3 { margin-top: var(--space-3) !important; }
.mt-4 { margin-top: var(--space-4) !important; }
.mt-5 { margin-top: var(--space-12) !important; }
.me-1 { margin-right: var(--space-1) !important; }
.me-2 { margin-right: var(--space-2) !important; }
.me-3 { margin-right: var(--space-3) !important; }
.mr-2 { margin-right: var(--space-2) !important; }
.mr-auto { margin-right: auto !important; }
.mr-lg-8 { margin-right: var(--space-8) !important; }
.my-4 { margin-top: var(--space-4) !important; margin-bottom: var(--space-4) !important; }

.p-0 { padding: 0 !important; }
.py-2 { padding-top: var(--space-2) !important; padding-bottom: var(--space-2) !important; }
.py-5 { padding-top: var(--space-12) !important; padding-bottom: var(--space-12) !important; }

/* Text Utilities */
.text-center { text-align: center !important; }
.text-start { text-align: start !important; }
.text-end { text-align: end !important; }
.text-md-end { text-align: end !important; }
.text-decoration-none { text-decoration: none !important; }
.text-uppercase { text-transform: uppercase !important; }

/* Display Utilities */
.d-flex { display: flex !important; }
.d-block { display: block !important; }
.d-inline-block { display: inline-block !important; }
.d-none { display: none !important; }

/* Flex Utilities */
.flex-column { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.flex-grow-1 { flex-grow: 1 !important; }
.flex-column { flex-direction: column !important; }
.flex-lg-row { flex-direction: row !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.align-items-center { align-items: center !important; }
.align-items-start { align-items: flex-start !important; }

/* Position Utilities */
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }
.position-fixed { position: fixed !important; }

/* Size Utilities */
.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }

/* Other Utilities */
.overflow-hidden { overflow: hidden !important; }
.cursor-pointer { cursor: pointer !important; }
.list-unstyled { list-style: none !important; padding-left: 0 !important; }
.small { font-size: var(--text-sm) !important; }

/* Logo */
.logo {
    max-width: 185px;
    height: auto;
}

/* Section */
.section {
    padding: var(--space-16) 0;
}

/* Main Content */
.main-content {
    min-height: 80vh;
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

    .models-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: var(--space-6);
    }

    .hero-title {
        font-size: var(--text-4xl);
    }

    .model-profile-image {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    .hero-title {
        font-size: var(--text-3xl);
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--space-6);
    }

    .models-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: var(--space-5);
    }

    .model-profile-image {
        width: 220px;
        height: 220px;
    }

    .flex-lg-row {
        flex-direction: column !important;
    }

    .mr-lg-8 {
        margin-right: 0 !important;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
        padding: 0 var(--space-3);
    }

    .hero-section {
        padding: var(--space-12) 0;
    }

    .hero-title {
        font-size: var(--text-2xl);
    }

    .hero-subtitle {
        font-size: var(--text-lg);
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .search-container {
        margin-bottom: var(--space-6);
    }

    .category-filters {
        justify-content: center;
        gap: var(--space-2);
    }

    .category-link {
        padding: var(--space-2) var(--space-3);
        font-size: var(--text-sm);
    }

    .models-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: var(--space-4);
    }

    .features-section {
        padding: var(--space-12) 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .pagination {
        flex-wrap: wrap;
        gap: var(--space-1);
        padding: var(--space-3);
    }

    .page-link {
        min-width: 40px;
        height: 40px;
        font-size: var(--text-sm);
    }

    .btn-floating {
        bottom: var(--space-6);
        right: var(--space-6);
    }

    .navbar-nav {
        margin-top: var(--space-3);
    }

    .dropdown-menu {
        border-radius: var(--border-radius-md);
        box-shadow: var(--shadow-lg);
    }

    footer {
        padding: var(--space-12) 0 var(--space-6) !important;
    }

    .cookie-consent {
        padding: var(--space-3) 0;
    }

    .cookie-consent .d-flex {
        flex-direction: column;
        gap: var(--space-3);
        text-align: center;
    }

    .model-profile-image {
        width: 180px;
        height: 180px;
        margin: 0 auto var(--space-6);
    }

    .model-profile-info .model-name {
        font-size: var(--text-3xl);
    }

    .model-profile-info {
        text-align: center;
    }

    .model-profile-image-wrapper {
        margin-right: 0;
    }

    .text-md-end {
        text-align: center !important;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 var(--space-2);
    }

    .hero-title {
        font-size: var(--text-xl);
    }

    .hero-subtitle {
        font-size: var(--text-base);
    }

    .search-input-group {
        flex-direction: column;
        gap: var(--space-2);
    }

    .search-input {
        width: 100%;
        text-align: center;
    }

    .search-button {
        position: static;
        width: 100%;
        border-radius: var(--border-radius-lg);
    }

    .models-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .model-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .btn-floating {
        bottom: var(--space-4);
        right: var(--space-4);
        width: 45px;
        height: 45px;
        font-size: var(--text-base);
    }

    .pagination {
        padding: var(--space-2);
    }

    .page-link {
        min-width: 35px;
        height: 35px;
        padding: var(--space-1) var(--space-2);
    }

    .empty-state {
        padding: var(--space-12) var(--space-4);
    }

    .empty-actions {
        flex-direction: column;
        align-items: stretch;
    }

    h1 { font-size: var(--text-3xl); }
    h2 { font-size: var(--text-2xl); }
    h3 { font-size: var(--text-xl); }
    h4 { font-size: var(--text-lg); }
    h5 { font-size: var(--text-base); }
    h6 { font-size: var(--text-sm); }

    .model-profile-image {
        width: 150px;
        height: 150px;
    }

    .model-profile-info .model-name {
        font-size: var(--text-2xl);
    }

    .model-profile-info .model-bio {
        font-size: var(--text-base);
    }

    .model-gallery {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: var(--space-2);
    }

    .model-image,
    .gallery-image,
    .model-profile-image img,
    .gallery-modal-image {
        filter: blur(10px) !important;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
        color: black;
    }

    .navbar,
    .btn-floating,
    .cookie-consent,
    .loading-spinner,
    footer {
        display: none !important;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }

    .model-card {
        break-inside: avoid;
        margin-bottom: var(--space-4);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: var(--border-radius-sm);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue-dark);
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-blue) var(--bg-secondary);
}