
        :root {
            --bg-main: #fcfbfe;
            --bg-surface: #ffffff;
            --bg-surface-elevated: #f6f3f8;
            --primary: #d60e52;
            --primary-hover: #b50741;
            --primary-glow: rgba(214, 14, 82, 0.15);
            --accent: #c48200;
            --accent-glow: rgba(196, 130, 0, 0.1);
            --text-main: #1c151a;
            --text-muted: #635760;
            --border-color: #e5deea;
            --border-glow: rgba(214, 14, 82, 0.08);

            --max-width: 1200px;
            --radius-sm: 6px;
            --radius-md: 12px;
            --radius-lg: 20px;

            --space-xs: 0.5rem;
            --space-sm: 1rem;
            --space-md: 1.5rem;
            --space-lg: 2.5rem;
            --space-xl: 4rem;

            --font-fallback: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            --font-display: "Playfair Display", "Didot", Georgia, var(--font-fallback);
            --font-sans: "Inter", "Segoe UI", var(--font-fallback);
        }

        @media (max-width: 768px) {
            :root {
                --space-md: 1rem;
                --space-lg: 1.5rem;
                --space-xl: 2.5rem;
            }
        }

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

        body {
            background-color: var(--bg-main);
            color: var(--text-main);
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: all 0.2s ease;
        }

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

        /* Utility Components */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 20px;
            font-size: clamp(0.85rem, 3.5vw, 0.95rem);
            font-weight: 700;
            border-radius: var(--radius-sm);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            border: none;
        }

        .btn--cta {
            background: linear-gradient(135deg, var(--primary), #b50741);
            color: #ffffff;
            box-shadow: 0 4px 15px var(--primary-glow);
        }

        .btn--cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(214, 14, 82, 0.35);
            background: linear-gradient(135deg, var(--primary-hover), #910030);
        }

        .btn--outline {
            background: transparent;
            color: var(--text-main);
            border: 1px solid var(--border-color);
        }

        .btn--outline:hover {
            border-color: var(--primary);
            background: rgba(214, 14, 82, 0.05);
        }

        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 var(--space-sm);
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(1.6rem, 5vw, 2.2rem);
            font-weight: 700;
            text-align: center;
            margin-bottom: var(--space-xs);
            color: var(--text-main);
            letter-spacing: -0.02em;
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto var(--space-md) auto;
            font-size: clamp(0.9rem, 3vw, 1.05rem);
        }

        /* Skip link */
        .skip-to-content {
            position: absolute;
            left: -9999px;
            top: auto;
            width: 1px;
            height: 1px;
            overflow: hidden;
            z-index: -999;
        }
        .skip-to-content:focus {
            position: fixed;
            top: 20px;
            left: 20px;
            width: auto;
            height: auto;
            background: var(--primary);
            color: #fff;
            padding: 10px 20px;
            border-radius: var(--radius-sm);
            z-index: 10000;
        }

        /* HEADER */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(252, 251, 254, 0.96);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-color);
        }

        .header-wrap {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
            padding: 0 var(--space-sm);
        }

        .brand {
            font-family: var(--font-display);
            font-size: clamp(1.1rem, 4.5vw, 1.6rem);
            font-weight: 800;
            color: var(--text-main);
            letter-spacing: -0.01em;
            text-transform: capitalize;
            min-width: 0;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            margin-right: var(--space-sm);
        }

        .brand span {
            color: var(--primary);
        }

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

        .header-cta {
            padding: 8px 16px;
            font-size: 0.8rem;
        }

        /* Hamburger icon */
        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 24px;
            height: 16px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
        }

        .nav-toggle span {
            width: 100%;
            height: 2px;
            background-color: var(--text-main);
            transition: all 0.3s ease;
        }

        @media (max-width: 1024px) {
            .nav-toggle {
                display: flex;
            }
            .header-cta {
                display: none;
            }
        }

        /* STRICT NAVIGATION RULE - SIBLING TO HEADER */
        .site-nav {
            background-color: var(--bg-surface);
            border-bottom: 1px solid var(--border-color);
        }

        .site-nav ul {
            list-style: none;
            display: flex;
            gap: var(--space-md);
            max-width: var(--max-width);
            margin: 0 auto;
            padding: var(--space-sm);
            overflow-x: auto;
            scrollbar-width: none;
        }

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

        .site-nav ul li {
            white-space: nowrap;
        }

        .site-nav ul li a {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .site-nav ul li a:hover {
            color: var(--primary);
        }

        /* Mobile navigation adaptation */
        @media (max-width: 1024px) {
            .site-nav {
                display: none;
                width: 100%;
            }
            .site-nav--open {
                display: block;
            }
            .site-nav ul {
                flex-direction: column;
                gap: 0;
                padding: 0;
            }
            .site-nav ul li {
                border-bottom: 1px solid var(--border-color);
            }
            .site-nav ul li a {
                display: block;
                padding: var(--space-sm) var(--space-md);
                width: 100%;
            }
        }

        /* SEARCH WIDGET */
        .search-container {
            background: var(--bg-surface-elevated);
            border-bottom: 1px solid var(--border-color);
            padding: var(--space-sm) 0;
        }

        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-xs);
            max-width: 800px;
            margin: 0 auto;
        }

        .search-input {
            flex: 1;
            min-width: 200px;
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            padding: 12px 16px;
            border-radius: var(--radius-sm);
            color: var(--text-main);
            font-size: 0.95rem;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 10px var(--border-glow);
        }

        .search-select {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            padding: 12px 16px;
            border-radius: var(--radius-sm);
            color: var(--text-muted);
            font-size: 0.95rem;
            cursor: pointer;
            min-width: 150px;
        }

        .search-select:focus {
            outline: none;
            border-color: var(--primary);
        }

        .search-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: var(--radius-sm);
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: background 0.2s;
        }

        .search-btn:hover {
            background: var(--primary-hover);
        }

        /* HERO SECTION */
        .hero {
            position: relative;
            padding: clamp(2rem, 8vw, 5rem) 0;
            background: radial-gradient(circle at 80% 20%, #fcedf4 0%, var(--bg-main) 70%);
            border-bottom: 1px solid var(--border-color);
            overflow: hidden;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
            gap: var(--space-lg);
            align-items: center;
        }

        @media (max-width: 768px) {
            .hero-grid {
                grid-template-columns: minmax(0, 1fr);
                text-align: center;
            }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(214, 14, 82, 0.08);
            border: 1px solid var(--primary);
            color: var(--primary);
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: var(--space-sm);
            letter-spacing: 0.1em;
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 6vw, 3.8rem);
            font-weight: 800;
            line-height: 1.1;
            color: var(--text-main);
            margin-bottom: var(--space-sm);
        }

        .hero-title span {
            background: linear-gradient(135deg, var(--primary), #ff4886);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-desc {
            font-size: clamp(0.95rem, 3vw, 1.15rem);
            color: var(--text-muted);
            margin-bottom: var(--space-md);
            max-width: 580px;
        }

        @media (max-width: 768px) {
            .hero-desc {
                margin-left: auto;
                margin-right: auto;
            }
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-sm);
        }

        @media (max-width: 768px) {
            .hero-actions {
                justify-content: center;
            }
        }

        .hero-img-wrap {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08), 0 0 40px var(--border-glow);
            max-height: 480px;
            border: 4px solid var(--bg-surface);
        }

        @media (max-width: 768px) {
            .hero-img-wrap {
                max-height: 280px;
                order: -1;
            }
        }

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

        /* 20+ SEX ESCORT CATEGORIES SECTION */
        .categories-section {
            background-color: var(--bg-surface);
            padding: var(--space-xl) 0;
            border-bottom: 1px solid var(--border-color);
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
            gap: var(--space-sm);
        }

        @media (max-width: 480px) {
            .categories-grid {
                grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            }
        }

        .category-card {
            background: var(--bg-surface-elevated);
            border: 1px solid var(--border-color);
            padding: 16px;
            border-radius: var(--radius-sm);
            text-align: center;
            transition: all 0.2s ease;
            position: relative;
            overflow: hidden;
        }

        .category-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 100%;
            background: var(--primary);
            opacity: 0;
            transition: opacity 0.2s;
        }

        .category-card:hover {
            border-color: var(--primary);
            box-shadow: 0 4px 15px var(--border-glow);
            transform: translateY(-2px);
            background: var(--bg-surface);
        }

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

        .category-card h3 {
            font-size: 0.9rem;
            text-transform: capitalize;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 4px;
        }

        .category-card span {
            font-size: 0.75rem;
            color: var(--primary);
            font-weight: 600;
        }

        /* CALL GIRL PROFILE CARDS GRID */
        .girls-section {
            padding: var(--space-xl) 0;
            border-bottom: 1px solid var(--border-color);
        }

        .girls-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: var(--space-md);
        }

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

        .girl-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            overflow: hidden;
            position: relative;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
        }

        .girl-card:hover {
            transform: translateY(-5px);
            border-color: rgba(214, 14, 82, 0.4);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05), 0 0 20px var(--border-glow);
        }

        .girl-card-img {
            aspect-ratio: 3/4;
            position: relative;
            overflow: hidden;
            background-color: var(--bg-surface-elevated);
        }

        .girl-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        .girl-card-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--primary);
            color: white;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            z-index: 2;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .girl-card-status {
            position: absolute;
            top: 12px;
            right: 12px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            color: #118c4f;
            padding: 2px 8px;
            border-radius: 50px;
            font-size: 0.65rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 4px;
            z-index: 2;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .status-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background-color: #118c4f;
            box-shadow: 0 0 8px #118c4f;
        }

        .girl-card-meta {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(252, 251, 254, 1) 0%, rgba(252, 251, 254, 0.8) 50%, rgba(252, 251, 254, 0) 100%);
            padding: var(--space-md) var(--space-sm) var(--space-sm) var(--space-sm);
            z-index: 2;
        }

        .girl-card-title {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 2px;
        }

        .girl-card-parameters {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-bottom: 8px;
            font-weight: 600;
        }

        .girl-card-footer {
            padding: var(--space-sm);
            background: var(--bg-surface);
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid var(--border-color);
        }

        .girl-price {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--primary);
        }

        .girl-price span {
            font-size: 0.7rem;
            font-weight: normal;
            color: var(--text-muted);
        }

        /* MAIN & ARTICLE LAYOUT */
        .layout-container {
            display: grid;
            grid-template-columns: minmax(0, 2.7fr) minmax(0, 1.3fr);
            gap: var(--space-lg);
            padding: var(--space-xl) var(--space-sm);
        }

        @media (max-width: 1024px) {
            .layout-container {
                grid-template-columns: minmax(0, 1fr);
            }
        }

        /* BREADCRUMBS */
        .breadcrumbs {
            grid-column: 1 / -1;
            margin-bottom: -1rem;
        }

        .breadcrumbs ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 8px;
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .breadcrumbs li:not(:last-child)::after {
            content: "/";
            margin-left: 8px;
            color: var(--border-color);
        }

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

        /* MAIN CONTENT AREA OVERFLOW PREVENTERS */
        .main-content {
            min-width: 0;
        }

        article {
            min-width: 0;
            overflow-wrap: anywhere;
            word-break: break-word;
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            padding: var(--space-lg);
            border-radius: var(--radius-lg);
            box-shadow: 0 4px 20px rgba(0,0,0,0.01);
        }

        @media (max-width: 768px) {
            article {
                padding: var(--space-md);
            }
        }

        /* Content image adaptation */
        article img, article video, article iframe, article svg {
            max-width: 100%;
            height: auto;
            border-radius: var(--radius-md);
            margin: var(--space-md) auto;
            display: block;
        }

        /* Article content styling basics */
        article h1, article h2, article h3, article h4 {
            font-family: var(--font-display);
            color: var(--text-main);
            margin-top: var(--space-md);
            margin-bottom: var(--space-xs);
        }

        article h1 { font-size: clamp(1.4rem, 4vw, 2.2rem); }
        article h2 { font-size: clamp(1.2rem, 3.5vw, 1.7rem); }
        article h3 { font-size: clamp(1.1rem, 3vw, 1.35rem); }

        article p {
            margin-bottom: var(--space-sm);
            color: var(--text-muted);
            line-height: 1.7;
        }

        article ul, article ol {
            margin-bottom: var(--space-sm);
            padding-left: var(--space-md);
            color: var(--text-muted);
        }

        article li {
            margin-bottom: 6px;
        }

        /* Wide elements inside article */
        article table {
            display: block;
            overflow-x: auto;
            max-width: 100%;
            border-collapse: collapse;
            margin: var(--space-md) 0;
        }

        article table th, article table td {
            padding: 10px 14px;
            border: 1px solid var(--border-color);
            font-size: 0.85rem;
            text-align: left;
        }

        article table th {
            background-color: var(--bg-surface-elevated);
            color: var(--text-main);
        }

        article pre {
            overflow-x: auto;
            max-width: 100%;
            background: var(--bg-surface-elevated);
            padding: var(--space-sm);
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-color);
            margin: var(--space-md) 0;
        }

        article code {
            font-family: monospace;
            word-break: break-word;
            background: var(--bg-surface-elevated);
            padding: 2px 4px;
            border-radius: 4px;
            font-size: 0.9em;
        }

        /* SIDEBAR / ASIDE */
        .sidebar {
            min-width: 0;
        }

        .sidebar-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: var(--space-md);
            margin-bottom: var(--space-md);
            box-shadow: 0 4px 15px rgba(0,0,0,0.01);
        }

        .sidebar-sticky-wrap {
            position: sticky;
            top: 90px;
        }

        .sidebar-title {
            font-family: var(--font-display);
            font-size: 1.15rem;
            margin-bottom: var(--space-sm);
            color: var(--text-main);
            border-left: 3px solid var(--primary);
            padding-left: 10px;
        }

        .sidebar-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .sidebar-links a {
            font-size: 0.85rem;
            color: var(--text-muted);
            display: block;
            padding: 6px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .sidebar-links a:hover {
            color: var(--primary);
            padding-left: 4px;
        }

        /* LUXURY LIGHT COUNTRY SELECTOR WIDGET */
        .country-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-top: var(--space-sm);
        }

        .country-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 12px;
            background: var(--bg-surface-elevated);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--text-main);
            transition: all 0.2s ease;
        }

        .country-btn:hover {
            border-color: var(--primary);
            background: var(--bg-surface);
            box-shadow: 0 4px 12px rgba(214, 14, 82, 0.05);
            transform: translateY(-1px);
        }

        .country-flag {
            font-size: 1.2rem;
            line-height: 1;
        }

        /* FOOTER */
        .site-footer {
            background-color: var(--bg-surface-elevated);
            border-top: 1px solid var(--border-color);
            padding: var(--space-xl) 0 var(--space-md) 0;
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: var(--space-lg);
            margin-bottom: var(--space-lg);
        }

        .footer-col h4 {
            font-family: var(--font-display);
            color: var(--text-main);
            font-size: 1rem;
            margin-bottom: var(--space-sm);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

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

        .footer-brand {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: var(--space-xs);
        }

        .footer-brand span {
            color: var(--primary);
        }

        .footer-bottom {
            border-top: 1px solid var(--border-color);
            padding-top: var(--space-md);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: var(--space-sm);
        }

        .footer-copy {
            font-size: 0.8rem;
        }

        .age-disclaimer {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            padding: var(--space-sm);
            border-radius: var(--radius-sm);
            font-size: 0.75rem;
            margin-top: var(--space-md);
            line-height: 1.5;
        }

        /* STICKY ACTION BAR FOR MOBILE */
        .sticky-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-top: 1px solid var(--border-color);
            padding: 10px var(--space-sm);
            display: none;
            justify-content: space-between;
            align-items: center;
            z-index: 999;
            gap: var(--space-sm);
            box-shadow: 0 -4px 15px rgba(0,0,0,0.03);
        }

        @media (max-width: 768px) {
            .sticky-bar {
                display: flex;
            }
            body {
                padding-bottom: 70px;
            }
        }

        .sticky-bar-info {
            min-width: 0;
        }

        .sticky-bar-title {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--text-main);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .sticky-bar-sub {
            font-size: 0.7rem;
            color: var(--primary);
            font-weight: 600;
        }

        /* engine safety: menu must never be trapped in sticky/fixed */
        .site-nav, .site-nav * {
            position: static !important;
        }

/* engine safety: menu must never be trapped in sticky/fixed */
.site-nav,.site-nav *{position:static !important}


html{ -webkit-text-size-adjust:100%; text-size-adjust:100%; }
body{ overflow-x:hidden; }
img,video,iframe,svg{ max-width:100%; height:auto; }
main,article,section,aside,header,nav,footer{ min-width:0; }
@media (max-width:768px){
  [class*="layout"],[class*="container"],[class*="grid"],[class*="content"],[class*="wrapper"],[class*="main"],[class*="row"]{ min-width:0; }
  pre,table{ min-width:0; max-width:100%; }
  pre{ overflow-x:auto; }
  table{ display:block; overflow-x:auto; }
  code,kbd,samp{ word-break:break-word; }
  [class*="ticker"]{ overflow:hidden; }
  [class*="ticker"] *{ min-width:0; }
}
