/* OnlySearched - Main Stylesheet - Updated Logo Sizing */
/* Based on sexadsearch.com styling for full-width layout */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Full width container */
.container, .container-main {
    width: 100%;
    max-width: none;
    padding: 0 15px;
    margin: 0;
}

/* Header styling - Redesigned layout */
header {
    background: #fff;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

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

/* Top row: Logo, Search, Menu buttons */
.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1px 0 1px 0 !important;
    min-height: 50px;
}

.header-left {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo {
    height: auto;
    width: auto;
    max-height: 55px;
    max-width: 300px;
    padding-top: 8px;
    padding-bottom: 1px;
    display: block;
}

.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 20px;
    max-width: 600px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.header-right .btn-burger,
.header-right .btn-gear,
.header-right .btn-more {
    padding: 6px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-right .btn-burger:hover,
.header-right .btn-gear:hover,
.header-right .btn-more:hover {
    background-color: #f5f5f5;
}

/* Bottom row: Navigation links */
.header-bottom {
    display: none !important;
}

.header-nav {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 8px;
}

.header-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 16px;
    background: #fff;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.header-nav a:hover {
    background: #007bff;
    color: white;
    
    text-decoration: none;
}

/* Search input group - Improved styling */
.input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 6px 10px;
    width: 100%;
    max-width: 600px;
    height: 40px;
}

.input-group:focus-within {
    border-color: #999;
    background: #fff;
}

.input-group input {
    border: none;
    background: transparent;
    outline: none;
    flex: 1;
    padding: 0 8px;
    font-size: 14px;
    color: #333;
    height: 32px;
}

.input-group input::placeholder {
    color: #999;
}

.input-group .btn-s,
.input-group .btn-sg,
.input-group .btn-mic,
.input-group .btn-cam {
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: 0 2px;
}

.input-group .btn-s:hover,
.input-group .btn-sg:hover,
.input-group .btn-mic:hover,
.input-group .btn-cam:hover {
    opacity: 1;
    background: rgba(0,0,0,0.05);
}

/* Main content area */
main {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Grid layouts */
.onlyfinder-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.onlyfinder-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    border: 1px solid #f0f0f0;
}

.onlyfinder-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    text-decoration: none;
    color: inherit;
    border-color: #e9ecef;
}

.onlyfinder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

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

.onlyfinder-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: #f8f9fa;
}

.onlyfinder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.onlyfinder-rank {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.9));
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.onlyfinder-verified {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.onlyfinder-price {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.9));
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.onlyfinder-price.free {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.onlyfinder-content {
    padding: 1rem;
}

.onlyfinder-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.onlyfinder-username {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.onlyfinder-bio {
    color: #555;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.onlyfinder-stats {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #f0f0f0;
    padding-top: 0.75rem;
}

.onlyfinder-stat {
    text-align: center;
    flex: 1;
}

.onlyfinder-stat-number {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.onlyfinder-stat-label {
    color: #666;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Section titles */
.onlyfinder-section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin: 2rem 0 1.5rem 0;
    position: relative;
    padding-bottom: 0.5rem;
}

/* Small text */
.small-text {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Buttons */
.cta-button {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

/* Loading animations and utility classes */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

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

.slide-up {
    animation: slideUp 0.8s ease-out;
}

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

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Enhanced button states */
.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* Enhanced focus states for accessibility */
.header-nav a:focus,
.input-group input:focus,
.btn-primary:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Visual improvements for badges */
.onlyfinder-rank {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.9));
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.onlyfinder-verified {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.onlyfinder-price {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.9));
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.onlyfinder-price.free {
    background: linear-gradient(135deg, #28a745, #20c997);
}

/* Enhanced responsive design */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 12px;
    }
    
    .header-top {
        padding: 14px 0 10px 0;
        min-height: 56px;
    }
    
    .logo {
        max-height: 45px;
        max-width: 220px;
    }
    
    .header-center {
        margin: 0 16px;
        max-width: 500px;
    }
    
    .header-nav {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 8px;
    }
    
    .header-top {
        padding: 8px 0 6px 0 !important;
        min-height: 44px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 12px !important;
        position: relative !important;
    }
    
    /* Mobile layout: Logo left, icons right */
    .header-left {
        flex: 0 0 auto !important;
        display: flex !important;
        justify-content: center !important;
        z-index: 1 !important;
        padding-left: 25px !important;
    }
    
    .header-center {
        flex: 1 !important;
        display: none !important;
    }
    
    .logo {
        max-height: 32px !important;
        max-width: 180px !important;
        padding-top: 0 !important;
    }
    
    .header-right {
        flex: 0 0 auto !important;
        display: flex !important;
        gap: 4px !important;
        align-items: center !important;
        z-index: 10 !important;
        margin-left: auto !important;
    }
    }
    }
    
    /* Second row: Search bar centered */
    .header-center {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .input-group {
        height: 36px;
        width: 100%;
        max-width: 400px;
    }
    
    .input-group input {
        font-size: 13px;
        height: 28px;
    }
    
    .header-right .btn-burger,
    .header-right .btn-gear,
    .header-right .btn-more {
        padding: 4px;
    }
    
    .header-bottom {
        display: none !important;
    }
    
    .header-nav {
        gap: 6px;
        max-width: none;
        justify-content: center;
    }
    
    .header-nav a {
        font-size: 12px;
        padding: 4px 8px;
        min-width: auto;
    }
    
    .onlyfinder-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin: 1rem 0;
    }
    
    main {
        padding: 1rem;
    }
    
    .container-main {
        padding: 0 10px;
    }
    
    .onlyfinder-section-title {
        font-size: 1.5rem;
        margin: 1.5rem 0 1rem 0;
    }
    
    .sidebar {
        width: 280px;
        right: -280px;
    }
    
    .sidebar-header {
        padding: 16px 20px;
    }
    
    .sidebar-header h3 {
        font-size: 18px;
    }
    
    .sidebar-content {
        padding: 20px;
    }
    
    .country-link {
        padding: 14px 16px;
    }
    
    .country-name {
        font-size: 14px;
    }
    
    .country-count {
        font-size: 12px;
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 6px;
    }
    
    .header-top {
        padding: 6px 0 4px 0 !important;
        min-height: 40px !important;
        gap: 10px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        position: relative !important;
    }
    
    .header-left {
        flex: 0 0 auto !important;
        display: flex !important;
        justify-content: center !important;
        z-index: 1 !important;
        padding-left: 25px !important;
    }
    
    .header-center {
        flex: 1 !important;
        display: none !important;
    }
    
    .header-right {
        flex: 0 0 auto !important;
        display: flex !important;
        gap: 4px !important;
        align-items: center !important;
        z-index: 10 !important;
        margin-left: auto !important;
    }
    
    .logo {
        max-height: 30px !important;
        max-width: 150px !important;
        padding-top: 0 !important;
    }
    
    .header-center {
        margin: 10px 0 0 0;
    }
    
    .input-group {
        height: 32px;
    }
    
    .input-group .btn-s,
    .input-group .btn-sg,
    .input-group .btn-mic,
    .input-group .btn-cam {
        width: 24px;
        height: 24px;
    }
    
    .header-bottom {
        display: none !important;
    }
    
    .header-nav {
        gap: 4px;
    }
    
    .header-nav a {
        font-size: 11px;
        padding: 3px 6px;
    }
    
    .onlyfinder-grid {
        grid-template-columns: 1fr;
    }
    
    .onlyfinder-section-title {
        font-size: 1.3rem;
    }
    
    main {
        padding: 0.75rem;
    }
    
    .sidebar {
        width: 100vw;
        right: -100vw;
    }
    
    .sidebar-header {
        padding: 16px;
    }
    
    .sidebar-content {
        padding: 16px;
    }
    
    .country-link {
        padding: 12px 14px;
    }
}

/* Extra small mobile devices */
@media (max-width: 360px) {
    .header-top {
        padding: 8px 0 4px 0;
    }
    
    .logo {
        max-height: 30px;
        max-width: 120px;
    }
    
    .input-group {
        height: 28px;
    }
    
    .header-nav {
        gap: 3px;
    }
    
    .header-nav a {
        font-size: 10px;
        padding: 2px 4px;
    }
}

/* Sponsored content styling */
.sponsored-card {
    border: 2px solid #ff6b6b;
    position: relative;
}

.sponsored-tag {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b6b;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}

/* Footer Styles */
.bg-white {
    background-color: #ffffff;
}

.bg-gray-50 {
    background-color: #f9fafb;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.border-t {
    border-top-width: 1px;
}

.border-gray-200 {
    border-color: #e5e7eb;
}

.max-w-7xl {
    max-width: 80rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.grid {
    display: grid;
}

.md\:grid-cols-3 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gap-8 {
    gap: 2rem;
}

.lg\:gap-32 {
    gap: 8rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.text-gray-900 {
    color: #111827;
}

.font-semibold {
    font-weight: 600;
}

.mb-4 {
    margin-bottom: 1rem;
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

.relative {
    position: relative;
}

.inline-block {
    display: inline-block;
}

.absolute {
    position: absolute;
}

.-bottom-1 {
    bottom: -0.25rem;
}

.left-0 {
    left: 0px;
}

.w-full {
    width: 100%;
}

.h-0\.5 {
    height: 0.125rem;
}

.bg-blue-500 {
    background-color: #3b82f6;
}

.space-y-3 > * + * {
    margin-top: 0.75rem;
}

.text-gray-500 {
    color: #6b7280;
}

.hover\:text-gray-900:hover {
    color: #111827;
}

.hover\:text-blue-700:hover {
    color: #1d4ed8;
}

.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-center {
    text-align: center;
}

.flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.items-center {
    align-items: center;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-2 {
    gap: 0.5rem;
}

.text-blue-500 {
    color: #3b82f6;
}

.w-5 {
    width: 1.25rem;
}

.h-5 {
    height: 1.25rem;
}

.w-4 {
    width: 1rem;
}

.h-4 {
    height: 1rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.hover\:bg-gray-100:hover {
    background-color: #f3f4f6;
}

.font-medium {
    font-weight: 500;
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

/* Responsive Grid for Tablet */
@media (max-width: 768px) and (min-width: 481px) {
    .md\:grid-cols-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Responsive Grid for Mobile */
@media (max-width: 480px) {
    .md\:grid-cols-3 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    
    .lg\:gap-32 {
        gap: 2rem;
    }
}

/* Sidebar styling - Modern improved design */
.sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: #ffffff;
    border-radius: 12px;    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    z-index: 1001;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    border-left: 1px solid #e5e5e5;
}

.sidebar.open {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e9ecef;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: sticky;
    top: 0;
    z-index: 10;
}

.sidebar-header h3 {
    margin: 0;
    font-size: 20px;
    color: #2c3e50;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.close-btn {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    font-size: 18px;
    cursor: pointer;
    color: #6c757d;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-weight: 300;
}

.close-btn:hover {
    background: #e9ecef;
    color: #495057;
    border-color: #adb5bd;
    transform: scale(1.05);
}

.sidebar-content {
    padding: 24px;
}

.menu-section h4 {
    margin: 0 0 16px 0;
    font-size: 16px;
    color: #495057;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e9ecef;
}

.countries-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.country-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #ffffff;
    border-radius: 12px;
    text-decoration: none;
    color: #495057;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.country-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,123,255,0.1), transparent);
    transition: left 0.5s ease;
}

.country-link:hover::before {
    left: 100%;
}

.country-link:hover {
    /* Removed blue hover effect */
    text-decoration: none;
}

.country-name {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.3;
    flex: 1;
    margin-right: 12px;
}

.country-count {
    font-size: 13px;
    font-weight: 600;
    color: #6c757d;
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid #dee2e6;
    min-width: 45px;
    text-align: center;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(2px);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.no-countries {
    padding: 24px 16px;
    text-align: center;
    color: #868e96;
    font-style: italic;
    font-size: 14px;
}

/* Scrollbar styling for sidebar */
.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
    background: #dee2e6;
    border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: #adb5bd;
}

/* Header icons styling */
.header-right img {
    width: 20px;
    height: 20px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.header-right .btn-burger:hover img,
.header-right .btn-gear:hover img,
.header-right .btn-more:hover img {
    opacity: 1;
}

/* Search input icons */
.input-group img {
    width: 16px;
    height: 16px;
    opacity: 0.6;
}

.input-group .btn-s img,
.input-group .btn-sg img,
.input-group .btn-mic img,
.input-group .btn-cam img {
    transition: opacity 0.2s;
}

.input-group .btn-s:hover img,
.input-group .btn-sg:hover img,
.input-group .btn-mic:hover img,
.input-group .btn-cam:hover img {
    opacity: 1;
}

/* Responsive sidebar styles */
@media (max-width: 768px) {
    .sidebar {
        width: 280px;
        right: -280px;
    }
    
    .sidebar-header {
        padding: 16px 20px;
    }
    
    .sidebar-header h3 {
        font-size: 18px;
    }
    
    .sidebar-content {
        padding: 20px;
    }
    
    .country-link {
        padding: 14px 16px;
    }
    
    .country-name {
        font-size: 14px;
    }
    
    .country-count {
        font-size: 12px;
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    .sidebar {
        width: 100vw;
        right: -100vw;
    }
    
    .sidebar-header {
        padding: 16px;
    }
    
    .sidebar-content {
        padding: 16px;
    }
    
    .country-link {
        padding: 12px 14px;
    }
}

/* Animation improvements */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.sidebar.open {
    animation: slideInRight 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced country link animations */
.country-link {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.country-link:active {
    transform: translateY(-1px) scale(0.98);
}

/* Loading state for countries */
.countries-list.loading .country-link {
    opacity: 0.6;
    pointer-events: none;
}

/* Future-proofing for more countries */
.countries-list {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.countries-list::-webkit-scrollbar {
    width: 4px;
}

.countries-list::-webkit-scrollbar-track {
    background: transparent;
}

.countries-list::-webkit-scrollbar-thumb {
    background: #dee2e6;
    border-radius: 2px;
}

.countries-list::-webkit-scrollbar-thumb:hover {
    background: #adb5bd;
}

/* Footer Countries Section */
.footer-countries-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0 2rem 0;
    margin-top: 4rem;
    border-top: 1px solid #dee2e6;
}

.footer-countries-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    position: relative;
}

.footer-countries-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 2px;
}

.footer-countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-country-link {
    display: block;
    background: white;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: none;
    position: relative;
    overflow: hidden;
}

.footer-country-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,123,255,0.1), transparent);
    transition: left 0.5s ease;
}

.footer-country-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,123,255,0.15);
    
    color: #007bff;
    text-decoration: none;
}

.footer-country-link:hover::before {
    left: 100%;
}

.footer-country-name {
    display: block;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.no-countries-message {
    grid-column: 1 / -1;
    text-align: center;
    color: #6c757d;
    font-style: italic;
    padding: 2rem;
    font-size: 1.1rem;
}

/* Responsive Design for Footer Countries */
@media (max-width: 768px) {
    .footer-countries-section {
        padding: 3rem 0 1.5rem 0;
        margin-top: 3rem;
    }
    
    .footer-countries-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .footer-countries-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.8rem;
        padding: 0 0.5rem;
    }
    
    .footer-country-link {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer-countries-section {
        padding: 2rem 0 1rem 0;
        margin-top: 2rem;
    }
    
    .footer-countries-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-countries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    
    .footer-country-link {
        padding: 0.8rem;
        font-size: 0.85rem;
    }
}

/* Animation for countries loading */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-country-link {
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Ensure container styles work with the footer countries */
.footer-countries-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .footer-countries-section .container {
        padding: 0 1rem;
    }
}

/* Search Preview Hover Effects */
.search-preview a:hover {
    background-color: #f8f9fa !important;
    text-decoration: none;
    color: inherit;
}

.search-form {
    position: relative;
    width: 100%;
}

.btn-s:hover {
    opacity: 0.7;
}

/* Mobile search preview adjustments */
@media (max-width: 768px) {
    #searchPreview {
        position: fixed !important;
        top: 70px !important;
        left: 1rem !important;
        right: 1rem !important;
        border-radius: 12px !important;
        border: 1px solid #e9ecef !important;
    }
}

/* Breadcrumbs styling */
.breadcrumbs {
    display: none; /* Hidden from view, but structured data remains for SEO */
    background: #f8f9fa;
    padding: 1rem 0;
    margin-bottom: 0;
    border-bottom: 1px solid #e9ecef;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
}

.breadcrumb-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.breadcrumb-link:hover {
    color: #0056b3;
    text-decoration: none;
}

.breadcrumb-link.home-link {
    margin-right: 0.25rem;
}

.breadcrumb-link svg {
    width: 16px;
    height: 16px;
    margin-right: 4px;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: #adb5bd;
    font-weight: normal;
}

.breadcrumb-current {
    color: #495057;
    font-weight: 600;
}

/* Mobile responsive for breadcrumbs */
@media (max-width: 768px) {
    .breadcrumb-content {
        padding: 0 1rem;
        font-size: 0.9rem;
    }
    
    .breadcrumb-link svg {
        width: 14px;
        height: 14px;
    }
}
/* Profile page specific styles */
        .profile-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        .profile-hero {
            position: relative;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 2rem;
            min-height: 400px;
            display: flex;
            align-items: flex-end;
        }
        
        .profile-hero.has-header {
            background-image: url('<?php echo htmlspecialchars($profile['header_image'] ?? '', ENT_QUOTES, 'UTF-8'); ?>');
            background-size: cover;
            background-position: center;
        }
        
        .profile-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
            z-index: 1;
        }
        
        .profile-hero-content {
            position: relative;
            z-index: 2;
            padding: 2rem;
            color: white;
            width: 100%;
            display: flex;
            align-items: flex-end;
            gap: 5rem; /* Even larger gap to push avatar further left */
            justify-content: space-between; /* Space between avatar and content to keep content on right */
        }
        
        .profile-avatar {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            border: 4px solid white;
            object-fit: cover;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
            flex-shrink: 0;
            position: relative; /* For price badge positioning */
            order: 1; /* Avatar first */
        }
        
        .profile-price-badge {
            position: absolute;
            top: -30px;
            right: 10px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            padding: 0.3rem 0.6rem;
            border-radius: 12px;
            font-weight: 700;
            font-size: 0.7rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            z-index: 3;
            min-width: 35px;
            text-align: center;
            line-height: 1.2;
        }
        
        .profile-price-badge.free {
            background: linear-gradient(45deg, #28a745, #20c997);
        }
        
        .profile-info-main {
            flex: 1;
            text-align: right; /* Right align on desktop */
            max-width: 400px; /* Limit width for better layout */
            order: 2; /* Content second */
        }
        
        .profile-name {
            font-size: 2.5rem;
            font-weight: 700;
            margin: 0 0 0.5rem 0;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8); /* Stronger shadow for better visibility */
            line-height: 1.2;
            color: white; /* Ensure white color */
        }
        
        .profile-username {
            font-size: 1.2rem;
            opacity: 1; /* Full opacity for better visibility */
            margin: 0 0 1rem 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            justify-content: flex-end; /* Right align on desktop */
            color: rgba(255, 255, 255, 0.95); /* Bright white with slight transparency */
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
        }
        
        .onlyfans-icon {
            width: 28px;
            height: 28px;
            background: #00AFF0;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 14px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }
        
        .profile-location {
            font-size: 1.1rem;
            opacity: 1; /* Full opacity for better visibility */
            margin-bottom: 1.5rem;
            color: rgba(255, 255, 255, 0.9);
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
        }
        
        .visit-profile-btn {
            background: linear-gradient(45deg, #00AFF0, #0084CC);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 175, 240, 0.3);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .visit-profile-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 175, 240, 0.4);
            color: white;
            text-decoration: none;
        }
        
        .profile-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .profile-details {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        
        .profile-stats-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            height: fit-content;
        }
        
        .bio-section h2 {
            color: #333;
            margin-bottom: 1rem;
            font-size: 1.8rem;
            font-weight: 600;
        }
        
        .bio-text {
            color: #666;
            line-height: 1.6;
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }
        
        .stats-title {
            color: #333;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            font-weight: 600;
            text-align: center;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr); /* Two columns to keep it organized */
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .stats-grid:has(.stat-item:nth-child(5)) {
            grid-template-columns: repeat(2, 1fr); /* Keep 2x3 layout when 5 items */
        }
        
        .stats-grid .stat-item:nth-child(5) {
            grid-column: 1 / -1; /* Gender spans full width when it's the 5th item */
        }
        
        .stat-item {
            text-align: center;
            padding: 1.2rem;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 15px;
            transition: transform 0.2s ease;
        }
        
        .stat-item:hover {
            transform: translateY(-2px);
        }
        
        .stat-number {
            font-size: 1.8rem;
            font-weight: 700;
            color: #333;
            display: block;
            margin-bottom: 0.2rem;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: #666;
            text-transform: uppercase;
            font-weight: 500;
            letter-spacing: 0.5px;
        }
        
        .profile-badges {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .verification-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(45deg, #28a745, #20c997);
            color: white;
            padding: 0.8rem 1.2rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            text-align: center;
            justify-content: center;
        }
        
        .price-badge {
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            padding: 0.8rem 1.2rem;
            border-radius: 25px;
            font-weight: 700;
            font-size: 1.1rem;
            text-align: center;
        }
        
        .price-badge.free {
            background: linear-gradient(45deg, #28a745, #20c997);
        }
        
        /* Report Profile Section */
        .report-profile-section {
            margin-top: 1.5rem;
            text-align: center;
        }
        
        .btn-report {
            background: linear-gradient(45deg, #dc3545, #c82333);
            color: white;
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(220, 53, 69, 0.3);
        }
        
        .btn-report:hover {
            background: linear-gradient(45deg, #c82333, #bd2130);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
        }
        
        .btn-report i {
            margin-right: 0.5rem;
        }
        
        /* Report Modal Styles */
        .report-modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
        }
        
        .report-modal-content {
            background-color: #fefefe;
            margin: 5% auto;
            padding: 0;
            border-radius: 15px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            animation: modalSlideIn 0.3s ease;
        }
        
        @keyframes modalSlideIn {
            from { opacity: 0; transform: translateY(-50px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .report-modal-header {
            background: linear-gradient(45deg, #dc3545, #c82333);
            color: white;
            padding: 1.5rem 2rem;
            border-radius: 15px 15px 0 0;
            position: relative;
        }
        
        .report-modal-header h3 {
            margin: 0;
            font-size: 1.3rem;
            font-weight: 600;
        }
        
        .report-close {
            position: absolute;
            right: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
            cursor: pointer;
            background: none;
            border: none;
        }
        
        .report-close:hover {
            opacity: 0.7;
        }
        
        .report-modal-body {
            padding: 2rem;
        }
        
        .report-form-group {
            margin-bottom: 1.5rem;
        }
        
        .report-form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #333;
        }
        
        .report-form-group .required {
            color: #dc3545;
        }
        
        .report-form-group input,
        .report-form-group textarea,
        .report-form-group select {
            width: 100%;
            padding: 0.75rem;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        
        .report-form-group input:focus,
        .report-form-group textarea:focus,
        .report-form-group select:focus {
            outline: none;
            border-color: #333;
            box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
        }
        
        .report-form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        
        .report-submit-btn {
            background: linear-gradient(45deg, #28a745, #20c997);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .report-submit-btn:hover {
            background: linear-gradient(45deg, #20c997, #17a2b8);
            transform: translateY(-2px);
        }
        
        .report-submit-btn:disabled {
            background: #6c757d;
            transform: none;
            cursor: not-allowed;
        }
        
        .report-error {
            background: #f8d7da;
            color: #721c24;
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            border: 1px solid #f5c6cb;
        }
        
        .report-success {
            background: #d4edda;
            color: #155724;
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            border: 1px solid #c3e6cb;
        }
        
        .related-section {
            margin-top: 4rem;
        }
        
        .related-title {
            font-size: 2rem;
            color: #333;
            margin-bottom: 2rem;
            text-align: center;
            font-weight: 600;
        }
        
        .breadcrumbs {
            background: #f8f9fa;
            padding: 1rem 0;
            margin-bottom: 0;
            border-bottom: 1px solid #e9ecef;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            font-size: 0.95rem;
        }
        
        .breadcrumb-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            color: #6c757d;
        }
        
        .breadcrumbs a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
        }
        
        .breadcrumbs a:hover {
            color: #0056b3;
            text-decoration: underline;
        }
        
        .breadcrumb-separator {
            margin: 0 0.5rem;
            color: #adb5bd;
        }
        
        .breadcrumb-current {
            color: #495057;
            font-weight: 600;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .profile-container {
                padding: 1rem;
            }
            
            .profile-hero {
                min-height: 300px;
                margin-bottom: 1.5rem;
            }
            
            .profile-hero-content {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
                padding: 1.5rem;
                justify-content: center; /* Center on mobile */
                align-items: center; /* Center everything */
            }
            
            .profile-avatar {
                width: 120px;
                height: 120px;
                align-self: center;
                order: 1; /* Avatar first on mobile */
            }
            
            .profile-price-badge {
                top: -8px;
                right: -8px;
                font-size: 0.7rem;
                padding: 0.25rem 0.5rem;
                min-width: 30px;
            }
            
            .profile-info-main {
                text-align: center; /* Center everything on mobile */
                max-width: none;
                order: 2; /* Content second on mobile */
                width: 100%;
            }
            
            .profile-name {
                font-size: 2rem;
                color: white; /* Ensure white on mobile */
                text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9); /* Stronger shadow on mobile */
                text-align: center;
            }
            
            .profile-username {
                justify-content: center; /* Center username on mobile */
                color: rgba(255, 255, 255, 0.95);
                text-align: center;
            }
            
            .profile-location {
                text-align: center;
            }
            
            .visit-profile-btn {
                align-self: center; /* Center button on mobile */
                margin: 0 auto;
                display: block;
                text-align: center;
            }
            
            .profile-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .profile-details,
            .profile-stats-card {
                padding: 1.5rem;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr); /* Two columns on mobile */
                gap: 0.8rem;
            }
            
            .related-section {
                margin-top: 2rem;
            }
            
            .breadcrumb-content {
                padding: 0 1rem;
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 480px) {
            .profile-hero-content {
                padding: 1rem;
            }
            
            .profile-avatar {
                width: 100px;
                height: 100px;
            }
            
            .profile-price-badge {
                top: 15px;
                right: 12px;
                font-size: 0.65rem;
                padding: 0.2rem 0.4rem;
                min-width: 25px;
            }
            
            .profile-name {
                font-size: 1.5rem;
                color: white;
                text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
            }
            
            .visit-profile-btn {
                padding: 0.8rem 1.5rem;
                font-size: 1rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 0.8rem;
            }
        }
        
        /* AI-generated content styling */
        .profile-about h3,
        .profile-about h4 {
            margin-top: 2.5rem;
            margin-bottom: 1.2rem;
        }
        .profile-about h3 {
            color: #333;
            font-size: 1.5rem;
            font-weight: 600;
            border-bottom: 2px solid #e0e0e0;
            padding-bottom: 0.5rem;
        }
        .profile-about h4 {
            color: #555;
            font-size: 1.2rem;
            font-weight: 500;
        }
        
        .profile-about p {
            margin-bottom: 1rem;
            line-height: 1.6;
            color: #666;
        }
        
        .profile-about a {
            color: #333;
            text-decoration: none;
        }
        
        .profile-about a:hover {
            text-decoration: underline;
        }
        
        .profile-about strong {
            color: #333;
            font-weight: 600;
        }
        
        /* First paragraph (intro) styling */
        .profile-about > p:first-child {
            font-size: 1.1rem;
            font-weight: 400;
            color: #333;
            margin-bottom: 1.5rem;
        }
        /* Creator FAQ Section Styles - Using unique class names to avoid conflicts */
        .creator-faq-wrapper {
            margin: 4rem 0;
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        
        .creator-faq-title {
            font-size: 2rem;
            color: #333;
            margin-bottom: 2rem;
            text-align: center;
            font-weight: 600;
        }
        
        .creator-faq-container {
            max-width: 100%;
        }
        
        .creator-faq-entry {
            border-bottom: 1px solid #e9ecef;
            margin-bottom: 1rem;
        }
        
        .creator-faq-entry:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }
        
        .creator-faq-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 0;
            cursor: pointer;
            transition: all 0.3s ease;
            user-select: none;
        }
        
        .creator-faq-header:hover {
            color: #333;
        }
        
        .creator-faq-header span {
            font-size: 1.1rem;
            font-weight: 600;
            color: #333;
            flex: 1;
            margin-right: 1rem;
        }
        
        .creator-faq-header:hover span {
            color: #333;
        }
        
        .creator-faq-toggle {
            font-size: 1.2rem;
            font-weight: bold;
            color: #333;
            transition: all 0.3s ease;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
            border-radius: 3px;
            background: white;
            cursor: pointer;
            user-select: none;
        }        
        .creator-faq-toggle {
            font-size: 1.2rem;
            font-weight: bold;
            color: #333;
            transition: all 0.3s ease;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
            border-radius: 3px;
            background: white;
            cursor: pointer;
            user-select: none;
        }        
        .creator-faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0;
        }
        
        .creator-faq-entry.active .creator-faq-content {
            max-height: none;
            padding: 0 0 1.5rem 0;
        }
        
        .creator-faq-content p {
            color: #666;
            line-height: 1.6;
            margin: 0;
            font-size: 1rem;
        }
        
        .creator-faq-content h2 {
            color: #333;
            font-size: 1.5rem;
            font-weight: 600;
            margin: 0.8rem 0 0.5rem 0;
            line-height: 1.4;
        }
        
        .creator-faq-content h2:first-child {
            margin-top: 0;
        }
        
        .creator-faq-content h3 {
            color: #444;
            font-size: 1.2rem;
            font-weight: 500;
            margin: 1rem 0 0.4rem 0;
            line-height: 1.4;
        }
        
        /* Mobile responsive for Creator FAQ */
        @media (max-width: 768px) {
            .creator-faq-wrapper {
                margin: 2rem 0;
                padding: 1.5rem;
            }
            
            .creator-faq-title {
                font-size: 1.5rem;
                margin-bottom: 1.5rem;
            }
            
            .creator-faq-header {
                padding: 1rem 0;
            }
            
            .creator-faq-header span {
                font-size: 1rem;
            }
            
        .creator-faq-toggle {
            font-size: 1.2rem;
            font-weight: bold;
            color: #333;
            transition: all 0.3s ease;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
            border-radius: 3px;
            background: white;
            cursor: pointer;
            user-select: none;
        }        }/* Cache Buster: Wed Aug  6 15:17:40 BST 2025 */
/* LOGO UPDATE TIMESTAMP: 1754490052 */
