@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');

:root {
    --purple-dark: #1a1a1a;
    --purple-nav: #141414;
    --purple-deep: #111111;
    --gold: #c9a84c;
    --gold-dark: #a88b3a;
    --gold-text: #c9a84c;
    --page-bg: #111111;
    --shell-bg: #161616;
    --nav-secondary-bg: #1a1a1a;
    --text-dark: #f0f0f0;
    --text-muted: #999999;
    --text-soft: #888888;
    --border: #2a2a2a;
    --border-light: #2a2a2a;
    --verified-green: #4caf50;
    --verified-dark: #555555;
    --badge-purple: #333333;
    --font-body: 'IBM Plex Sans', 'Segoe UI', system-ui, sans-serif;
    --font-heading: 'IBM Plex Sans', 'Segoe UI', system-ui, sans-serif;
    --transition: 0.2s ease;
    --ease-smooth: ease;
    --duration-fast: 0.2s;
    --duration-normal: 0.25s;
    --duration-slow: 0.3s;
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 10px;

    --bg-dark: #111111;
    --bg-card: #1a1a1a;
    --bg-elevated: #222222;
    --gold-light: #d4b96a;
    --text: #f0f0f0;
    --border-strong: rgba(201, 168, 76, 0.35);
    --shadow: none;

    --gradient-vip: #1a1a1a;
    --gradient-gold: #c9a84c;
    --gradient-luxury: #1a1a1a;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(12px);
    transition:
        opacity var(--duration-normal) ease,
        transform var(--duration-normal) ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-fade {
    opacity: 0;
    transform: none;
    transition: opacity var(--duration-slow) var(--ease-smooth);
}

.reveal-fade.is-visible {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal,
    .reveal-fade {
        opacity: 1;
        transform: none;
        transition: none;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.55;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.site-body,
.profile-body {
    background: #111111;
    position: relative;
    overflow-x: hidden;
}

.site-body::before,
.profile-body::before {
    display: none;
}

/* Header */
.site-header {
    transition: none;
}

.site-header-logo .header-banner {
    border-radius: 0;
}

.header-logo-only {
    justify-content: center;
    min-height: 56px;
}

.site-logo-text {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    text-decoration: none;
    line-height: 1;
}

.logo-word {
    font-size: 26px;
    font-weight: 700;
    color: #f0f0f0;
    letter-spacing: -0.02em;
}

.logo-accent {
    color: #c9a84c;
}

.locations-bar,
.categories-bar {
    background: #161616;
    border-bottom: 1px solid #2a2a2a;
}

.locations-bar-inner,
.categories-bar-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    padding: 10px 0;
    overflow: visible;
    justify-content: center;
}

.location-chip,
.category-chip {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 500;
    color: #ccc;
    text-decoration: none;
    border: none;
    border-radius: 0;
    background: transparent;
    white-space: nowrap;
}

.location-chip:hover,
.category-chip:hover {
    color: #c9a84c;
    background: transparent;
    border-color: transparent;
}

.categories-bar {
    background: #141414;
}

.category-chip {
    color: #c9a84c;
}

.home-locations,
.home-categories {
    margin-top: 1.5rem;
}

.name-index {
    margin: 1.5rem 0;
}

.name-index-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 16px;
    padding: 0;
    margin: 0.75rem 0 0;
}

.name-index-list a {
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
}

.name-index-list a:hover,
.name-index-list strong {
    color: #c9a84c;
}

.profile-seo-line {
    color: #999;
    font-size: 13px;
    margin: 0 0 12px;
}

.keyword-cloud {
    margin: 1.25rem 0;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 16px;
}

.header-banner {
    background: #111111;
    border-bottom: 1px solid #2a2a2a;
    border-radius: 0;
    overflow: hidden;
}

.header-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 72px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.header-search-bar {
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 35%),
        linear-gradient(180deg, #5c1a47 0%, var(--purple-dark) 100%);
    padding: 12px 0;
}

.navbar-search-centered {
    max-width: 500px;
    margin: 0 auto;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    transition: opacity var(--transition);
    margin-top: 8px;
}

.site-logo:hover {
    opacity: 0.88;
}

.site-logo img {
    height: 52px;
    width: auto;
    display: block;
}

.site-logo-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
}

.site-logo-svg {
    height: 120px;
    width: auto;
    display: block;
}

.hot-text {
    background: linear-gradient(90deg, #ff6b6b, #ff8e8e, #ff6b6b);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: hotText 3s linear infinite;
}

@keyframes hotText {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.site-logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-sm);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.02em;
    position: relative;
}

.site-logo-mark::before {
    content: '♛';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: var(--gold);
}

.site-logo-name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.15;
}

.site-logo-name strong {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.site-logo-name span {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.88;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.header-tagline {
    flex: 1;
    text-align: center;
    font-size: clamp(15px, 2.5vw, 22px);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.01em;
}

.navbar-search {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 16px;
    max-width: 300px;
    width: 100%;
    transition: all var(--transition);
}

.navbar-search:focus-within {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 14px;
    padding: 0;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    color: white;
    transform: scale(1.1);
}

.navbar-language {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 14px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.flag-icon {
    width: 20px;
    height: 15px;
    display: inline-block;
    border-radius: 2px;
    object-fit: cover;
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 8px;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 100;
}

.navbar-language:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.language-option:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.language-option.active {
    background: rgba(99, 102, 241, 0.2);
    color: #ffffff;
}

.nav-primary {
    background: var(--purple-nav);
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.nav-primary-inner,
.nav-secondary-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 36px;
}

.nav-primary-links,
.nav-secondary-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.nav-primary-links a {
    display: inline-block;
    padding: 10px 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.nav-primary-links a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.navbar-search-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 12px;
}

.search-input-inline {
    padding: 6px 12px;
    font-size: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-elevated);
    color: var(--text);
    width: 140px;
    transition: border-color var(--transition), width var(--transition);
}

.search-input-inline:focus {
    outline: none;
    border-color: var(--gold);
    width: 180px;
}

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

.search-btn-inline {
    padding: 6px 10px;
    background: var(--gold);
    border: none;
    border-radius: var(--radius-sm);
    color: #ffffff;
    cursor: pointer;
    transition: background var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn-inline:hover {
    background: #d4a847;
}

.nav-secondary {
    background: var(--nav-secondary-bg);
    border-bottom: 1px solid #d5d5d5;
}

.nav-secondary-links a {
    display: inline-block;
    padding: 9px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-text);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}

.nav-secondary-links a:hover {
    color: var(--gold-dark);
    background: rgba(255, 255, 255, 0.6);
}

.nav-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px 5px 6px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.nav-login-btn:hover {
    border-color: var(--gold);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}

.nav-login-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

/* Page layout */
.page-main {
    padding: 12px 0 32px;
    position: relative;
    z-index: 1;
}

.page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 16px 18px 20px;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.page-layout::before {
    display: none;
}

@keyframes backgroundShift {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, 20px);
    }
}

.page-content {
    min-width: 0;
}

.page-sidebar {
    min-width: 0;
}

.content-section + .content-section {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.content-section:first-child {
    position: relative;
}

.content-section:first-child::before {
    display: none;
}

@keyframes sectionGlow {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

/* Ad and Telegram Container */
.ad-telegram-container {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    margin-bottom: 20px;
    align-items: center;
}

/* Telegram Contact Section */
.telegram-contact-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 90px;
    min-width: 140px;
}

.telegram-contact-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
}

.telegram-contact-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.telegram-contact-icon {
    width: 32px;
    height: 32px;
    fill: white;
}

.telegram-contact-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.telegram-contact-title {
    font-size: 14px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.telegram-contact-subtitle {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

/* Ad Banner Link */
.ad-banner-link {
    display: block;
    text-decoration: none;
}

/* Ad Banner */
.ad-banner {
    width: 100%;
    height: 90px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border: 3px solid #075e54;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ad-banner-link:hover .ad-banner {
    transform: none;
    box-shadow: none;
}

.ad-banner-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ad-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" x="50" font-size="40" fill="rgba(255,255,255,0.1)" text-anchor="middle" dominant-baseline="middle" transform="rotate(-30 50 50)">WhatsApp</text></svg>');
    background-size: 150px 150px;
    opacity: 0.15;
    animation: adPattern 20s linear infinite;
    pointer-events: none;
}

@keyframes adPattern {
    0% { background-position: 0 0; }
    100% { background-position: 150px 150px; }
}

.ad-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #ffffff;
    position: absolute;
    z-index: 1;
}

.ad-banner-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: textPulse 2s ease-in-out infinite;
}

.ad-banner-subtext {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    animation: textFloat 3s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes textFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Reklam Banner Section */
.ad-banner-section {
    margin-bottom: 20px;
}

.ad-banner-section .ad-banner-link {
    display: block;
    text-decoration: none;
}

.ad-banner-section .ad-banner-text {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #000000;
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ad-banner-section .ad-banner-link:hover .ad-banner-text {
    transform: none;
    box-shadow: none;
}

/* Banner Marquee (Continuous Scroll) */
.ad-banner-link-full {
    display: block;
    width: 100%;
    text-decoration: none;
}

.ad-banner-marquee {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
    background: linear-gradient(90deg, #0D0D0D, #2B0A0A);
}

.ad-banner-marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 20s linear infinite;
}

.ad-banner-marquee-item {
    width: 300px;
    height: 120px;
    object-fit: contain;
    object-position: center;
    flex-shrink: 0;
    border-radius: var(--radius-md);
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Ad Banner Card */
.ad-banner-card {
    background: linear-gradient(90deg, #0D0D0D, #2B0A0A);
    border: 2px solid rgba(212, 175, 55, 0.3);
    cursor: pointer;
    text-decoration: none;
}

.ad-banner-card:hover {
    border-color: inherit;
    box-shadow: none;
    transform: none;
}

.ad-banner-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(184, 146, 42, 0.1) 100%);
}

.ad-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    padding: 15px;
}

.ad-banner-logo {
    width: 100%;
    max-width: 100px;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

/* Navbar Logo Image */
.site-logo-image {
    height: 56px;
    width: auto;
    max-width: min(220px, 52vw);
    object-fit: contain;
    display: block;
}

.ad-banner-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ad-banner-title {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.ad-banner-subtitle {
    font-size: 9px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.01em;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* 18+ Age Verification Modal */
.age-verification-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.age-verification-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.age-verification-content {
    position: relative;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 28px 24px;
    max-width: 320px;
    width: 90%;
    text-align: center;
}

.age-verification-title {
    font-size: 28px;
    font-weight: 700;
    color: #c9a84c;
    margin: 0 0 8px;
}

.age-verification-text {
    font-size: 14px;
    color: #ccc;
    margin: 0 0 20px;
    line-height: 1.4;
}

.age-verification-icon,
.age-verification-warning,
.age-verification-legal,
.age-badge,
.btn-icon {
    display: none !important;
}

.age-verification-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn-verify-yes,
.btn-verify-no {
    min-width: 96px;
    padding: 10px 16px;
    border-radius: 6px;
    border: 1px solid #333;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.btn-verify-yes {
    background: #c9a84c;
    color: #111;
    border-color: #c9a84c;
}

.btn-verify-no {
    background: transparent;
    color: #ccc;
}

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

.age-verification-icon {
    margin-bottom: 20px;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    font-size: 36px;
    font-weight: 900;
    color: var(--gold);
    border: 4px solid var(--gold);
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
        transform: scale(1.05);
    }
}

.age-verification-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.age-verification-text {
    font-size: 16px;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 20px;
}

.age-verification-warning {
    background: rgba(255, 87, 34, 0.2);
    border: 1px solid rgba(255, 87, 34, 0.5);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #ff5722;
    margin-bottom: 30px;
}

.age-verification-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.btn-verify-yes,
.btn-verify-no {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.btn-verify-yes {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #000000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-verify-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}

.btn-verify-no {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-muted);
}

.btn-verify-no:hover {
    border-color: rgba(255, 87, 34, 0.5);
    color: #ff5722;
    background: rgba(255, 87, 34, 0.1);
}

.btn-icon {
    font-size: 20px;
    font-weight: 900;
}

.age-verification-legal {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

.age-verification-legal a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.age-verification-legal a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

/* Floating Chat Bot Icon */
.floating-chat-icon {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: #0088cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    z-index: 1000;
    transition: opacity 0.2s ease;
    text-decoration: none;
    animation: none;
}

.floating-chat-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 136, 204, 0.7);
}

.floating-chat-icon svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes chatBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: auto;
}

.modal-content {
    background-color: var(--bg-card);
    margin: 5% auto;
    padding: 24px;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    position: relative;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-strong);
}

.modal-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    font-weight: 300;
    color: var(--text-muted);
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background var(--transition), color var(--transition);
}

.modal-close:hover {
    background: var(--border-strong);
    color: var(--text);
}

.section-bar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.section-bar-text h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 6px;
}

.section-bar-text.vip-section h2 {
    color: var(--gold);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 3s linear infinite;
    position: relative;
}

.section-bar-text.vip-section h2::before {
    content: '♛';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--gold);
    animation: crownFloat 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

@keyframes crownFloat {
    0%, 100% {
        transform: translateY(-50%) rotate(-5deg);
    }
    50% {
        transform: translateY(-55%) rotate(5deg);
    }
}

@keyframes goldShimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.section-bar-text p {
    margin-top: 0;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    font-weight: 500;
}

.section-bar-text.vip-section p {
    color: rgba(255, 255, 255, 0.7);
}

.section-count {
    flex-shrink: 0;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--purple-dark);
    background: rgba(74, 20, 60, 0.07);
    border-radius: 999px;
    white-space: nowrap;
}

.section-count.vip-count {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(184, 146, 42, 0.15) 100%);
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.section-bar-sidebar h2 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-bar-sub h2 {
    font-size: 16px;
}

/* Escort grid */
.escort-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    perspective: 1000px;
}

.escort-grid .escort-card {
    animation: cardEntrance 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px) rotateX(10deg);
}

.escort-grid .escort-card:nth-child(1) { animation-delay: 0.1s; }
.escort-grid .escort-card:nth-child(2) { animation-delay: 0.15s; }
.escort-grid .escort-card:nth-child(3) { animation-delay: 0.2s; }
.escort-grid .escort-card:nth-child(4) { animation-delay: 0.25s; }
.escort-grid .escort-card:nth-child(5) { animation-delay: 0.3s; }
.escort-grid .escort-card:nth-child(6) { animation-delay: 0.35s; }
.escort-grid .escort-card:nth-child(7) { animation-delay: 0.4s; }
.escort-grid .escort-card:nth-child(8) { animation-delay: 0.45s; }
.escort-grid .escort-card:nth-child(9) { animation-delay: 0.5s; }
.escort-grid .escort-card:nth-child(10) { animation-delay: 0.55s; }

@keyframes cardEntrance {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.escort-grid-compact {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

/* Escort cards */
.escort-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-smooth);
    box-shadow: var(--shadow);
}

.escort-card-vip {
    background: linear-gradient(145deg, rgba(26, 10, 50, 0.95) 0%, rgba(24, 24, 24, 0.98) 100%);
    border: 2px solid rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
    animation: vipPulse 3s ease-in-out infinite;
}

@keyframes vipPulse {
    0%, 100% {
        box-shadow: 0 0 0 rgba(212, 175, 55, 0);
    }
    50% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }
}

.escort-card-vip::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent,
        rgba(212, 175, 55, 0.1),
        transparent 30%
    );
    animation: rotate 4s linear infinite;
    pointer-events: none;
    z-index: 1;
}

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

.escort-card-vip::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: linear-gradient(145deg, rgba(26, 10, 50, 0.98) 0%, rgba(24, 24, 24, 0.99) 100%);
    border-radius: calc(var(--radius-lg) - 2px);
    z-index: 1;
    pointer-events: none;
}

/* Subtle hover feedback */
.escort-card:hover {
    border-color: rgba(212, 175, 55, 0.6);
    opacity: 0.95;
}

.escort-card-vip:hover {
    border-color: rgba(212, 175, 55, 0.8);
    opacity: 0.95;
}

.escort-card-media {
    position: relative;
    aspect-ratio: 3 / 4;
    background: var(--bg-elevated);
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.escort-card-vip .escort-card-media {
    position: relative;
    z-index: 2;
}

.escort-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform var(--duration-normal) var(--ease-smooth);
}

.escort-card:hover .escort-card-media img {
    transform: scale(1.08);
}

.escort-card-vip:hover .escort-card-media img {
    transform: scale(1.12);
    filter: brightness(1.1) contrast(1.05);
}

/* Disable image zoom on hover */
.escort-card:hover .escort-card-media img,
.escort-card-vip:hover .escort-card-media img {
    transform: none;
    filter: none;
}

/* Sparkle effect for VIP cards */
.escort-card-vip .escort-card-media::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-smooth);
    pointer-events: none;
    z-index: 3;
}

.escort-card-vip:hover .escort-card-media::after {
    opacity: 0;
    animation: none;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.escort-badge {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    line-height: 1.2;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.escort-badge-crown {
    top: 12px;
    left: 12px;
    width: 32px;
    height: 32px;
    padding: 0;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    color: var(--gold);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 4;
}

.escort-card-vip .escort-badge-crown {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(184, 146, 42, 0.2) 100%);
    border: 1px solid rgba(212, 175, 55, 0.5);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
}

.escort-badge-vip {
    top: 12px;
    left: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #000000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.escort-badge-vip-top {
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #000000;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 5;
}

.escort-card-vip .escort-badge-vip-top {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    background-size: 200% auto;
    animation: vipBadgeShimmer 2s linear infinite;
    box-shadow:
        0 4px 20px rgba(212, 175, 55, 0.6),
        0 0 30px rgba(212, 175, 55, 0.3),
        0 0 40px rgba(255, 215, 0, 0.2);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

@keyframes vipBadgeShimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.escort-badge-verified {
    background: rgba(34, 197, 94, 0.9);
    color: #ffffff;
    border: 1px solid rgba(34, 197, 94, 0.3);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.escort-card-vip .escort-badge-verified {
    background: rgba(34, 197, 94, 0.95);
    border: 1px solid rgba(34, 197, 94, 0.4);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.escort-badge-inline {
    position: static;
    margin-left: 8px;
    font-size: 9px;
    padding: 3px 7px;
    width: auto;
    height: auto;
    border-radius: 6px;
}

.escort-badge-top-left {
    top: 10px;
    left: 10px;
}

.escort-badge-available {
    top: 12px;
    right: 12px;
    background: rgba(34, 197, 94, 0.9);
    color: #ffffff;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.escort-badge-video {
    top: 8px;
    right: 8px;
    background: var(--badge-purple);
    color: #ffffff;
}

.escort-card-vip .escort-badge-available {
    top: 42px;
}

.escort-card-status {
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 8px;
    z-index: 2;
    display: flex;
    align-items: stretch;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.escort-status {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 5px 8px;
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
}

.escort-status-verified {
    background: var(--verified-green);
}

.escort-status-unverified {
    background: var(--verified-dark);
}

.escort-badge-discount {
    position: static;
    flex: 0 0 auto;
    background: #e53935;
    color: #ffffff;
    border-radius: 0;
    padding: 5px 10px;
}

.escort-card-body {
    padding: 10px 12px 12px;
    background: var(--bg-card);
    border-top: 1px solid var(--border-strong);
    position: relative;
    z-index: 2;
}

.escort-card-vip .escort-card-body {
    background: linear-gradient(180deg, rgba(26, 10, 50, 0.95) 0%, rgba(24, 24, 24, 0.98) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.escort-card-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.4;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.escort-card-vip .escort-card-name {
    color: var(--gold-light);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.escort-card-name span {
    font-weight: 400;
}

.escort-card-name-muted {
    color: var(--text-soft);
}

.escort-card-location {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.escort-card-empty {
    cursor: default;
}

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

.escort-card-media-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
    color: var(--text-muted);
    font-size: 13px;
    text-align: center;
    padding: 20px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    border: 1px dashed var(--border-strong);
}

/* Agency sidebar */
.agency-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.agency-card {
    text-align: center;
    transition: transform var(--transition);
}

.agency-card:hover {
    transform: translateY(-2px);
}

.agency-card-media {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #f5f5f7;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 8px;
    transition: box-shadow var(--transition), border-color var(--transition);
}

.agency-card:hover .agency-card-media {
    border-color: #d0d0d8;
    box-shadow: 0 4px 14px rgba(74, 20, 60, 0.08);
}

.agency-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.45s ease;
}

.agency-card:hover .agency-card-media img {
    transform: scale(1.03);
}

.agency-card-media-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: var(--purple-dark);
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    padding: 10px;
    border-radius: var(--radius-md);
}

.agency-crown {
    top: 8px;
    left: 8px;
    width: 24px;
    height: 24px;
    padding: 0;
    justify-content: center;
    background: rgba(60, 60, 60, 0.75);
    color: var(--gold);
    border-radius: var(--radius-sm);
}

.agency-card-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-text);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

/* Sidebar widgets */
.sidebar-widget {
    background: #fafafa;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 14px;
    margin-bottom: 14px;
}

.sidebar-widget-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.sidebar-widget-note p {
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-muted);
}

.sidebar-search {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-search input {
    width: 100%;
    padding: 10px 12px;
    font-family: var(--font-body);
    font-size: 13px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: #ffffff;
    color: var(--text-dark);
    transition: border-color var(--transition);
}

.sidebar-search input:focus {
    outline: none;
    border-color: var(--purple-dark);
}

.district-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.district-chip {
    display: inline-block;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    background: #f4f4f6;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.district-chip:hover {
    background: var(--purple-dark);
    border-color: var(--purple-dark);
    color: #ffffff;
}

.content-section-districts {
    padding-top: 8px;
}

/* Profile page */
.profile-empty {
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    background: var(--shell-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.profile-empty h1 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 12px;
    color: var(--text-dark);
}

.profile-empty p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.profile-detail {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 24px;
    margin-bottom: 0;
    align-items: start;
}

.profile-detail-side {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: sticky;
    top: 20px;
    max-width: 280px;
    width: 100%;
}

.profile-detail-media {
    position: relative;
    background: #f5f5f7;
    border: none;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(74, 20, 60, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-detail-media .profile-badge {
    position: absolute;
    z-index: 2;
}

.profile-detail-media img {
    width: 100%;
    display: block;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.3s ease;
}

.profile-badge-float {
    top: 10px;
    right: 10px;
}

.profile-crown {
    top: 10px;
    left: 10px;
}

.profile-detail-info {
    padding: 0;
}

.profile-head {
    margin-bottom: 20px;
    padding-bottom: 0;
    border-bottom: none;
}

.profile-detail-name {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.profile-head .profile-details {
    margin-bottom: 14px;
}

.profile-meta {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 12px;
}

.profile-meta li {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-size: 14px;
    color: var(--text);
    padding-right: 14px;
    margin-right: 14px;
    border-right: 1px solid var(--border-light);
}

.profile-meta li:last-child {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
}

.profile-meta li span {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.profile-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.profile-contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid transparent;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}

.profile-contact-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.profile-contact-call {
    background: var(--purple-dark);
    color: #ffffff;
}

.profile-contact-whatsapp {
    background: #25d366;
    color: #ffffff;
}

.profile-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.profile-badge {
    display: inline-block;
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 600;
    border-radius: 4px;
    line-height: 1.2;
}

.profile-badge-verified {
    background: rgba(34, 197, 94, 0.9);
    color: #ffffff;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.profile-badge-available {
    background: rgba(212, 175, 55, 0.9);
    color: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.profile-badge-vip {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: #000000;
    border: 1px solid rgba(212, 175, 55, 0.4);
    font-weight: 700;
}

.profile-block {
    margin-bottom: 18px;
}

.profile-block-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}

.profile-detail-desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-muted);
}

.profile-detail-desc-muted {
    color: var(--text-soft);
    font-style: italic;
}

.profile-details {
    padding: 16px 18px;
    background: #fafafa;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
}

.profile-details-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.profile-details-list li {
    display: flex;
    flex-direction: column;
    padding: 12px 14px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    background: #ffffff;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.profile-details-list li span {
    color: var(--text-soft);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 5px;
}

.profile-gallery {
    padding: 6px;
    background: #fafafa;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
}

.profile-gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.profile-gallery-item {
    display: block;
    width: 52px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 4px;
    background: none;
    cursor: pointer;
    text-align: left;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.profile-gallery-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(74, 20, 60, 0.12);
}

.profile-gallery-item.is-active {
    border-color: var(--purple-dark);
}

.profile-gallery-thumb {
    width: 52px;
    height: 68px;
    border-radius: 4px;
    overflow: hidden;
    background: #eee;
}

.profile-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.profile-gallery-label {
    display: none;
}

.profile-summary-list {
    list-style: none;
}

.profile-summary-list li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    font-size: 13px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-light);
}

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

.profile-summary-list li span {
    color: var(--text-soft);
    font-size: 12px;
}

.page-layout-profile {
    grid-template-columns: minmax(0, 1fr);
}

.profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.profile-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.profile-contact-btn:hover {
    transform: translateY(-1px);
}

.profile-contact-whatsapp {
    background: #25d366;
    color: #ffffff;
    border: 1px solid #25d366;
}

.profile-contact-whatsapp:hover {
    background: #1ebe57;
    border-color: #1ebe57;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.profile-contact-call {
    background: var(--purple-dark);
    color: #ffffff;
    border: 1px solid var(--purple-dark);
}

.profile-contact-call:hover {
    background: #3a1030;
    border-color: #3a1030;
    box-shadow: 0 4px 12px rgba(74, 20, 60, 0.25);
}

.profile-contact-note {
    font-size: 13px;
    color: var(--text-soft);
    margin: 0;
}

.profile-related {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.profile-related .escort-grid-compact {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.btn-gold,
.btn-primary {
    background: var(--gold);
    color: #ffffff;
    border-color: var(--gold);
}

.btn-gold:hover,
.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.btn-outline,
.btn-outline-dark {
    background: transparent;
    color: var(--text-dark);
    border-color: #aaaaaa;
}

.btn-outline:hover,
.btn-outline-dark:hover {
    border-color: var(--gold);
    color: var(--gold-text);
}

.btn-danger {
    background: #8b2020;
    color: #fff;
    border-color: #8b2020;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 11px;
}

.btn-full {
    width: 100%;
}

/* Footer */
.site-footer {
    background: #111111;
    border-top: 1px solid #2a2a2a;
    padding: 28px 0 0;
    margin-top: 8px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 24px;
    padding-bottom: 24px;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li + li {
    margin-top: 8px;
}

.footer-col a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-about {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    max-width: 280px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 0 18px;
}

.footer-brand {
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: -0.02em;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
}

/* Admin */
.admin-body {
    background: var(--bg-dark);
    min-height: 100vh;
    color: var(--text);
}

.admin-login-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.admin-login-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    width: 100%;
    max-width: 380px;
    box-shadow: var(--shadow);
}

.back-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 12px;
    transition: color var(--transition);
}

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

.login-header {
    margin: 24px 0;
}

.login-header h1 {
    font-size: 28px;
    color: var(--gold-light);
    margin-bottom: 6px;
}

.login-header p {
    color: #9ca3af;
    font-size: 13px;
}

.login-hint {
    margin-top: 20px;
    font-size: 11px;
    color: #9ca3af;
    text-align: center;
}

.admin-header {
    background: rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 0;
}

.admin-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-brand {
    font-size: 22px;
    color: var(--gold-light);
}

.admin-nav a {
    color: #9ca3af;
    text-decoration: none;
    margin-left: 20px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color var(--transition);
}

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

.admin-main {
    padding: 30px 0;
}

.admin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.admin-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px;
}

.admin-card h2 {
    font-size: 22px;
    color: var(--gold-light);
    margin-bottom: 20px;
}

/* Stats Card Styles */
.stats-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pages-stats {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 16px;
}

.pages-stats h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.page-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-stat:last-child {
    border-bottom: none;
}

.page-name {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.page-count {
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
}

/* SEO Content Section */
.seo-content-section {
    margin-bottom: 24px;
    padding: 16px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
}

.seo-content-section p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    font-size: 14px;
}

.seo-content-section strong {
    color: var(--gold-light);
    font-weight: 600;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9ca3af;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bg-elevated);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 14px;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.file-drop {
    border: 1px dashed var(--border-strong);
    padding: 28px;
    text-align: center;
    position: relative;
    background: var(--bg-elevated);
    transition: border-color var(--transition);
}

.file-drop:hover {
    border-color: var(--gold);
}

.file-drop input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.file-drop-text {
    font-size: 13px;
    color: #9ca3af;
}

.file-preview {
    margin-top: 12px;
}

.file-preview img {
    max-width: 150px;
    max-height: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.alert {
    padding: 12px 14px;
    margin-bottom: 18px;
    border: 1px solid;
    font-size: 13px;
}

.alert-success {
    background: rgba(40, 120, 60, 0.15);
    border-color: rgba(80, 180, 100, 0.4);
    color: #7dd99a;
}

.alert-error {
    background: rgba(140, 40, 40, 0.15);
    border-color: rgba(180, 80, 80, 0.4);
    color: #e88888;
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.badge {
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4px 10px;
}

.empty-text {
    color: #9ca3af;
    text-align: center;
    padding: 30px;
    font-size: 13px;
}

.admin-image-list {
    max-height: 500px;
    overflow-y: auto;
}

.admin-image-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-image-item img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    object-position: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.item-info {
    flex: 1;
}

.item-info strong {
    display: block;
    font-size: 13px;
    color: var(--text);
}

.item-info small {
    color: #9ca3af;
    font-size: 11px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .page-layout {
        grid-template-columns: 1fr;
    }

    .page-sidebar {
        border-top: 1px solid var(--border-light);
        padding-top: 20px;
    }

    .agency-list {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .escort-grid,
    .escort-grid-compact {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .profile-detail {
        grid-template-columns: minmax(200px, 260px) minmax(0, 1fr);
        gap: 20px;
    }

    .profile-detail-side {
        position: static;
        max-width: 260px;
    }
}

@media (max-width: 768px) {
    .header-banner-inner {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding: 16px 16px 12px;
        gap: 12px;
    }

    .site-logo {
        margin-top: 0;
    }

    .header-tagline {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .navbar-search {
        max-width: 100%;
        margin: 0 auto;
    }

    .nav-primary-links,
    .nav-secondary-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 4px;
    }

    .nav-primary-links a,
    .nav-secondary-links a {
        padding: 6px 10px;
        font-size: 11px;
    }

    .escort-grid,
    .escort-grid-compact {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .escort-card-media {
        max-height: 200px;
    }

    .agency-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-logo img {
        height: 48px;
    }

    .site-logo-svg {
        height: 100px;
    }

    .site-logo-name strong {
        font-size: 18px;
    }

    .site-logo-name span {
        font-size: 11px;
    }

    .page-layout {
        padding: 16px 14px 20px;
    }

    .profile-detail {
        grid-template-columns: 1fr;
    }

    .profile-detail-side {
        position: static;
        order: -1;
        max-width: 280px;
        margin: 0 auto;
    }

    .profile-meta li {
        padding-right: 10px;
        margin-right: 10px;
        margin-bottom: 6px;
    }

    .profile-details-list {
        grid-template-columns: 1fr;
    }

    .profile-contact-btn {
        flex: 1 1 calc(50% - 5px);
        justify-content: center;
    }

    .admin-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-about {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .header-banner-inner {
        padding: 12px 12px 10px;
        gap: 10px;
    }

    .header-tagline {
        font-size: 13px;
    }

    .navbar-search {
        padding: 6px 12px;
    }

    .search-input {
        font-size: 13px;
    }

    .nav-primary-links,
    .nav-secondary-links {
        gap: 2px;
    }

    .nav-primary-links a,
    .nav-secondary-links a {
        padding: 5px 8px;
        font-size: 10px;
    }

    .escort-grid,
    .escort-grid-compact,
    .agency-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .escort-card-media {
        max-height: 180px;
    }

    .escort-card-body {
        padding: 8px 10px 10px;
    }

    .escort-card-name {
        font-size: 11px;
    }

    .escort-card-location {
        font-size: 9px;
    }

    .page-layout {
        padding: 12px 10px 16px;
    }

    .section-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .section-count {
        font-size: 10px;
        padding: 4px 10px;
    }

    .site-logo img {
        height: 40px;
    }

    .site-logo-svg {
        height: 80px;
    }

    .site-logo-name strong {
        font-size: 16px;
    }

    .site-logo-name span {
        font-size: 10px;
    }

    .ad-banner {
        height: 70px;
    }

    .ad-banner-text {
        font-size: 18px;
    }

    .ad-banner-subtext {
        font-size: 11px;
    }
}

@media (max-width: 360px) {
    .escort-grid,
    .escort-grid-compact {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .escort-card-media {
        max-height: 280px;
    }

    .section-bar-text h2 {
        font-size: 18px;
    }

    .section-bar-text p {
        font-size: 12px;
    }
}

/* ===== Home catalog redesign ===== */
.home-shell {
    max-width: 1280px;
    padding-top: 8px;
    padding-bottom: 32px;
}

.catalog-head {
    margin: 0 0 18px;
    padding: 16px 0 14px;
    border-bottom: 1px solid #2a2a2a;
}

.crumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.3;
}

.crumbs a {
    color: #c9a84c;
    text-decoration: none;
    font-weight: 500;
}

.crumbs a:hover {
    text-decoration: underline;
}

.crumbs-sep {
    color: #666;
}

.crumbs-current {
    color: #f0f0f0;
    font-weight: 600;
}

.catalog-title,
.seo-heading {
    margin: 0 0 8px;
    font-size: clamp(1.25rem, 2.4vw, 1.75rem);
    font-weight: 700;
    line-height: 1.25;
    color: #f5f5f5;
    letter-spacing: -0.02em;
}

.catalog-lead {
    margin: 0;
    max-width: 52rem;
    font-size: 14px;
    line-height: 1.5;
    color: #a0a0a0;
}

.catalog-grid-wrap {
    margin: 0 0 28px;
}

.catalog-seo {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #2a2a2a;
}

/* Legacy breadcrumbs (district/profile) */
.breadcrumbs {
    margin: 0 0 12px;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
}

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #f0f0f0;
}

.breadcrumbs li + li::before {
    content: '/';
    color: #666;
    margin-right: 2px;
}

.breadcrumbs a {
    color: #c9a84c;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* ===== Photo-first gallery layout ===== */
.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.gallery-layout {
    max-width: 1280px;
}

.gallery-layout::before {
    display: none;
}

.seo-content-compact {
    margin-bottom: 16px;
    padding: 12px 16px;
}

.seo-content-compact p {
    font-size: 13px;
    line-height: 1.55;
    color: #b0b0b0;
}

.seo-subheading {
    font-size: 1rem;
    margin: 1.25rem 0 0.65rem;
    color: #c9a84c;
    font-weight: 600;
}

.photo-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.photo-grid-dense {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
}

.photo-card-ad {
    border: 1px dashed rgba(212, 175, 55, 0.45) !important;
    background: #161616 !important;
}

.photo-card-ad:hover {
    border-color: rgba(212, 175, 55, 0.85) !important;
    background: #1c1c1c !important;
}

.escort-card-media-ad {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 3 / 4;
    background: #141414;
    padding: 12px;
    text-align: center;
}

.ad-card-text {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.35;
    color: #e8c878;
    text-transform: uppercase;
}

.photo-card {
    border: none;
    border-radius: 8px;
    background: #111;
    box-shadow: none;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

.photo-card.escort-card-vip {
    border: 1px solid rgba(212, 175, 55, 0.45);
    animation: none !important;
}

.photo-card.escort-card-vip::before {
    display: none;
}

.photo-card.escort-card-vip::after {
    display: none;
}

.photo-card .escort-card-media {
    position: relative;
    aspect-ratio: 3 / 4;
    max-height: none;
    overflow: hidden;
}

.photo-card .escort-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.photo-card:hover .escort-card-media img {
    transform: scale(1.04);
}

.photo-card-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px 10px 10px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.photo-card-caption .escort-card-name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.photo-card-caption .escort-card-location {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.gallery-empty {
    text-align: center;
    color: var(--text-muted);
    padding: 2rem;
}

.related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0 0.5rem;
}

.related-links a {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    border: 1px solid rgba(201, 168, 76, 0.5);
    color: #c9a84c;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.85rem;
}

.related-links a:hover {
    background: #c9a84c;
    color: #111;
}

.seo-faq-compact .faq-item {
    margin-bottom: 0.85rem;
    padding: 0.85rem 1rem;
    background: rgba(26, 26, 46, 0.8);
    border-radius: 6px;
    border-left: 3px solid #c9a84c;
}

.seo-faq-compact .faq-item h3 {
    color: #c9a84c;
    font-size: 0.95rem;
    margin: 0 0 0.35rem;
}

.seo-faq-compact .faq-item p {
    color: #ccc;
    font-size: 0.85rem;
    margin: 0;
}

.profile-detail-photos {
    gap: 1.25rem;
}

@media (max-width: 1100px) {
    .photo-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .photo-grid-dense {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .photo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
    }

    .photo-grid-dense {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .photo-card-caption .escort-card-name {
        font-size: 12px;
    }

    .ad-card-text {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .photo-grid,
    .photo-grid-dense {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
