/*
Theme Name: Hexmy
Theme URI: https://hextheme.com
Author: Hextheme
Author URI: https://hextheme.com
Description: Premium adult video streaming WordPress theme with dark cinematic UI, neon accents, and modern tube platform design.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hexmy
Tags: dark-mode, adult, video-streaming, responsive, modern
*/

/* CSS Variables (ComXXX Brand Theme) */
:root {
    --bg-primary: #06070a;
    --bg-secondary: #0b0c10;
    --bg-tertiary: #10111a;
    --bg-card: #12131f;

    --text-primary: #ffffff;
    --text-secondary: #b0b1c0;
    --text-muted: #6b7280;

    --accent-purple: #a855f7;
    --accent-pink: #ff3399;
    --accent-cyan: #00f0ff;
    --accent-red: #ef4444;
    --accent-green: #10b981;
    --gradient-primary: linear-gradient(135deg, #ff3399 0%, #a855f7 50%, #00f0ff 100%);

    --glass-bg: rgba(11, 12, 16, 0.8);
    --glass-border: rgba(255, 255, 255, 0.05);

    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(255, 51, 153, 0.35);

    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a:hover {
    color: var(--accent-pink);
}

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

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Glassmorphism */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

/* Header Two-Row Layout */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #0f1016;
    transition: var(--transition-smooth);
}

.header-top {
    background: #0b0c10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    height: 72px;
}

.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 20px;
}

.header-bottom {
    background: #11121d;
    height: 48px;
    border-bottom: 2px solid #a855f7; /* Pink-purple glowing bottom bar */
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.15);
}

.header-bottom-inner {
    display: flex;
    align-items: center;
    height: 100%;
}

/* Glowing Brand Logo */
.site-logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    max-height: 38px;
    width: auto;
    display: block;
    transition: var(--transition-smooth);
}

.logo-link:hover .logo-image {
    transform: scale(1.04);
    filter: drop-shadow(0 0 10px rgba(236, 72, 153, 0.45));
}

/* Search Capsule (PornX Style) */
.search-capsule {
    flex: 1;
    max-width: 480px;
    position: relative;
    background: #090a0f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    height: 38px;
}

.search-form-wrap {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
}

.search-input-field {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0 15px;
    color: #ffffff;
    font-size: 13px;
    height: 100%;
    font-weight: 500;
}

.search-input-field:focus {
    outline: none;
}

.search-input-field::placeholder {
    color: #555770;
}

.search-filter-select {
    display: flex;
    align-items: center;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    height: 60%;
    padding: 0 15px;
    position: relative;
    gap: 8px;
    color: #b0b1c0;
    font-size: 12px;
    font-weight: 600;
}

.select-arrow {
    color: #777990;
    pointer-events: none;
}

.search-submit-btn {
    background: #8b5cf6;
    border: none;
    border-radius: 0 3px 3px 0;
    width: 44px;
    height: 100%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.search-submit-btn:hover {
    background: #a855f7;
}

/* Header Actions & Buttons Area */
.header-right-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Upgrade Button (PornX style) */
.upgrade-btn {
    background: #8b5cf6;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    height: 38px;
    padding: 0 16px;
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.2);
}

.upgrade-btn:hover {
    background: #a855f7;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
    transform: translateY(-1px);
}

.upgrade-btn .star-icon {
    color: #ffffff;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.8));
}

/* Header Exclusives Banner */
.header-banner {
    width: 170px;
    height: 38px;
    border-radius: 6px;
    border: 1.5px solid rgba(236, 72, 153, 0.35);
    background: linear-gradient(135deg, rgba(88, 10, 48, 0.85) 0%, rgba(147, 51, 234, 0.5) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2px 8px;
    line-height: 1.1;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(255, 51, 136, 0.2), 0 0 8px rgba(236, 72, 153, 0.15);
}

.header-banner::before {
    content: 'EXCLUSIVE CONTENT';
    display: block;
    text-align: center;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.8px;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* Hide stacked overlay elements as we use ::before for clean cross-browser rendering */
.banner-overlay, .banner-content {
    display: none;
}

@media (max-width: 1100px) {
    .header-banner {
        display: none; /* Hide banner on smaller screens */
    }
}

/* Bottom Bar Navigation */
.main-navigation {
    width: 100%;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 8px;
    height: 100%;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-navigation li {
    display: flex;
    align-items: center;
    height: 100%;
}

.main-navigation a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b0b1c0;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    height: 36px;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.main-navigation a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
}

/* Active Nav state with custom rounded outline glow border on all active tabs */
.main-navigation li.active a {
    background: #0b0c10;
    border: 1px solid rgba(236, 72, 153, 0.85);
    border-radius: 6px;
    padding: 6px 14px;
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.15);
    color: #ffffff;
}

.main-navigation li.active a:hover {
    border-color: #ec4899;
    box-shadow: 0 0 12px rgba(236, 72, 153, 0.35);
    background: rgba(236, 72, 153, 0.05);
    color: #ffffff;
}

.nav-icon {
    color: currentColor;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.main-navigation a:hover .nav-icon,
.main-navigation li.active .nav-icon {
    opacity: 1;
    color: #ec4899;
    filter: drop-shadow(0 0 3px rgba(236, 72, 153, 0.6));
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Drawer */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0b0c10;
    z-index: 999;
    overflow-y: auto;
    padding: 10px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition-smooth);
}

.mobile-menu.active {
    display: block;
}

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

.mobile-navigation li {
    margin-bottom: 0;
}

.mobile-navigation a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    font-size: 15px;
    color: #b0b1c0;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition-fast);
}

.mobile-navigation a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.03);
}

.mobile-navigation li.active a {
    border: 1.5px solid rgba(236, 72, 153, 0.85);
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(236, 72, 153, 0.2);
    color: #ffffff;
    margin: 6px 20px;
    background: rgba(236, 72, 153, 0.04);
}

.mobile-navigation li.active a:hover {
    border-color: #ec4899;
    box-shadow: 0 0 16px rgba(236, 72, 153, 0.4);
    background: rgba(236, 72, 153, 0.08);
    color: #ffffff;
}

.mobile-navigation li.active a .nav-icon {
    color: #ec4899;
    filter: drop-shadow(0 0 3px rgba(236, 72, 153, 0.6));
    opacity: 1;
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    margin-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-upgrade-btn {
    background: #8b5cf6;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    height: 44px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.3);
    text-decoration: none;
    transition: var(--transition-fast);
}

.mobile-upgrade-btn:hover {
    background: #a855f7;
    box-shadow: 0 0 18px rgba(168, 85, 247, 0.5);
}

.mobile-upgrade-btn .star-icon {
    color: #ffffff;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.8));
}

.mobile-exclusive-banner {
    height: 44px;
    border-radius: 6px;
    border: 1.5px solid rgba(236, 72, 153, 0.35);
    background: linear-gradient(135deg, rgba(88, 10, 48, 0.85) 0%, rgba(147, 51, 234, 0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.8px;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    box-shadow: inset 0 0 10px rgba(255, 51, 136, 0.2), 0 0 8px rgba(236, 72, 153, 0.15);
}

/* Hero Section */
.hero-section {
    padding: 120px 0 60px;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, var(--bg-primary) 100%);
}

.hero-slider {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--bg-secondary);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.9) 100%);
}

.hero-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    z-index: 10;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* Section Headers */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

/* Video Card */
.video-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 1px solid var(--glass-border);
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
    border-color: var(--accent-purple);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--bg-secondary);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.duration-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.hd-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--accent-red);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.video-info {
    padding: 15px;
}

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

.video-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
}

.video-views {
    display: flex;
    align-items: center;
    gap: 5px;
}

.video-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--accent-green);
}

/* Sections */
.section {
    padding: 60px 0;
}

.section-dark {
    background: var(--bg-secondary);
}

/* Footer */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

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

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

.footer-links a {
    color: var(--text-secondary);
    font-size: 14px;
}

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

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 30px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

/* Responsive Search Controls */
.search-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.search-toggle:hover {
    color: #ec4899;
    background: rgba(255, 255, 255, 0.05);
}

.mobile-search-dropdown {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #0f1016;
    border-bottom: 2px solid #ec4899;
    padding: 12px 20px;
    z-index: 998;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.mobile-search-dropdown.active {
    display: block;
    animation: slideDown 0.25s ease-out forwards;
}

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

.mobile-search-form {
    display: flex;
    align-items: center;
    background: #090a0f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    height: 38px;
    width: 100%;
}

.mobile-search-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0 15px;
    color: #ffffff;
    font-size: 13px;
    height: 100%;
}

.mobile-search-input:focus {
    outline: none;
}

.mobile-search-submit {
    background: #8b5cf6;
    border: none;
    border-radius: 0 3px 3px 0;
    width: 44px;
    height: 100%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.mobile-search-submit:hover {
    background: #a855f7;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Hide Desktop-only Elements */
    .search-capsule, 
    .upgrade-btn, 
    .header-banner, 
    .header-bottom {
        display: none !important;
    }

    /* Show Mobile-only Controls */
    .search-toggle, 
    .menu-toggle {
        display: flex !important;
    }

    /* Recalculate Page offset for Compact Header height */
    .hero-section {
        padding-top: 102px !important;
    }

    /* Video cards and layout grids */
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }

    .hero-title {
        font-size: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Loading Skeleton */
.skeleton {
    background: linear-gradient(90deg, var(--bg-tertiary) 25%, var(--bg-secondary) 50%, var(--bg-tertiary) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Hover Preview Video */
.hover-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

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

/* Tags, Categories, and Performers Pages Styling */
.page-container {
    padding-top: 150px;
    padding-bottom: 80px;
    min-height: 75vh;
}

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

.page-title {
    font-size: 42px;
    font-weight: 900;
    font-family: 'Outfit', 'Inter', sans-serif;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 51, 153, 0.2);
}

.page-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.tags-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
}

.tag-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 16px 20px;
    display: block;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-card);
}

.tag-card-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    width: 100%;
}

.tag-card-icon {
    color: var(--accent-pink);
    opacity: 0.8;
    transition: var(--transition-fast);
}

.tag-card-name {
    font-weight: 700;
    font-size: 15px;
    color: #ffffff;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tag-card-count {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-cyan);
    transition: var(--transition-fast);
}

.tag-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-pink);
    box-shadow: 0 0 15px rgba(255, 51, 153, 0.25);
    background: var(--bg-tertiary);
}

.tag-card:hover .tag-card-icon {
    color: var(--accent-cyan);
    filter: drop-shadow(0 0 4px rgba(0, 240, 255, 0.6));
}

.tag-card:hover .tag-card-count {
    background: rgba(0, 240, 255, 0.1);
    border-color: rgba(0, 240, 255, 0.2);
    color: #ffffff;
}

.no-tags-found {
    text-align: center;
    padding: 50px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .page-container {
        padding-top: 120px;
    }
    .page-title {
        font-size: 30px;
    }
    .tags-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
    }
    .tag-card {
        padding: 12px 15px;
    }
}

/* Autocomplete Search Suggestions Dropdown */
.search-suggestions-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgba(15, 16, 22, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 240, 255, 0.03);
    max-height: 320px;
    overflow-y: auto;
    z-index: 1100;
    padding: 6px 0;
}

.search-suggestions-dropdown::-webkit-scrollbar {
    width: 6px;
}
.search-suggestions-dropdown::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.suggestion-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 18px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    font-size: 13px;
    text-align: left;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-fast);
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: rgba(255, 255, 255, 0.03);
    color: var(--accent-cyan);
    padding-left: 22px; /* Micro-interaction slide */
}

.suggestion-name {
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 12px;
}

.suggestion-name mark {
    background: rgba(0, 240, 255, 0.15);
    color: var(--accent-cyan);
    font-weight: 700;
    border-radius: 3px;
    padding: 0 2px;
}

.suggestion-badge {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 0.8px;
    flex-shrink: 0;
}

.suggestion-badge.badge-pornstar {
    background: rgba(168, 85, 247, 0.1);
    color: var(--accent-purple);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.suggestion-badge.badge-tag {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-green);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.suggestion-loading, .suggestion-empty {
    padding: 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
}

.suggestion-loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid var(--accent-cyan);
    border-top-color: transparent;
    border-radius: 50%;
    animation: suggestion-spin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes suggestion-spin {
    to { transform: rotate(360deg); }
}

/* Pornstars A-Z Grid & Profile Cards */
.pornstars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
    clear: both;
}

.pornstar-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pornstar-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-pink);
    box-shadow: 0 8px 30px rgba(255, 51, 153, 0.25);
}

.pornstar-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: var(--transition-smooth);
}

.pornstar-card:hover .pornstar-card-image {
    transform: scale(1.08);
}

.pornstar-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(6, 7, 10, 0.95) 0%, rgba(6, 7, 10, 0.6) 55%, transparent 100%);
    padding: 24px 16px 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}

.pornstar-card-name {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.pornstar-card-count {
    font-size: 11px;
    font-weight: 800;
    color: var(--accent-pink);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.pornstar-placeholder-avatar {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.1));
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .pornstars-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 16px;
    }
    .pornstar-card-name {
        font-size: 14px;
    }
    .pornstar-card-count {
        font-size: 10px;
    }
}