/* 4FansLy Platform - Optimized Main Styles */
/* Import modular stylesheets */
@import url('./styles/base.css');
@import url('./styles/components.css');

/* Critical inline styles only - everything else moved to modules */

/* Content Placeholder Styles */
.content-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    margin: 20px 0;
}

.placeholder-message {
    text-align: center;
    padding: 40px;
}

.placeholder-icon {
    font-size: 48px;
    color: #667eea;
    margin-bottom: 20px;
}

.placeholder-message h2 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 24px;
}

.placeholder-message p {
    color: #666;
    font-size: 16px;
}

.platform-stats .stat-item {
    background: rgba(102, 126, 234, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin: 10px 0;
}

.platform-stats .stat-item i {
    font-size: 24px;
    color: #667eea;
    margin-bottom: 10px;
}

.platform-stats .stat-item strong {
    font-size: 20px;
    color: #667eea;
    display: block;
    margin-top: 5px;
}

/* Platform Banner Styles */
.platform-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    margin: 20px 0;
    overflow: hidden;
}

.banner-container {
    padding: 40px 30px;
    text-align: center;
}

.banner-content {
    color: white;
}

.banner-icon {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.banner-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.banner-content p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

/* Advanced Header Animations */
.header-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.header-buttons .header-btn {
    position: relative;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.header-buttons .header-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.7s ease;
}

.header-buttons .header-btn:hover::after {
    left: 100%;
}

.header-buttons .header-btn:hover {
    transform: translateY(-5px) scale(1.08);
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* Language selector modern style */
.language-selector {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 8px 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.language-selector:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.language-selector .flag {
    width: 20px;
    height: 15px;
    border-radius: 3px;
    margin-right: 8px;
}

/* Sub Navigation Modern Style */
.sub-nav {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(240,240,240,0.9));
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.sub-nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    padding: 15px 0;
}

.sub-nav-links a {
    position: relative;
    padding: 8px 16px;
    color: #666;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.sub-nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transition: width 0.4s ease;
    z-index: -1;
}

.sub-nav-links a:hover::before {
    width: 100%;
}

.sub-nav-links a:hover {
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

/* Enhanced Country List Styling */
.country-list li {
    border-left: 3px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 2px;
    position: relative;
}

.country-list li::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.country-list li:hover::after {
    width: 4px;
}

.country-list li:hover {
    border-left-color: #667eea;
    background: linear-gradient(90deg, 
        rgba(102, 126, 234, 0.08), 
        rgba(118, 75, 162, 0.05), 
        transparent
    );
    padding-left: 10px;
}

/* Responsive improvements */
@media (max-width: 1200px) {
    .main-container {
        grid-template-columns: 260px 1fr 280px;
    }
}

@media (max-width: 992px) {
    .main-container {
        grid-template-columns: 240px 1fr 260px;
    }
    
    .sidebar {
        font-size: 12px;
    }
    
    .country-list img {
        width: 20px;
        height: 15px;
    }
}

@media (max-width: 768px) {
    .header-buttons {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .header-buttons .header-btn {
        padding: 8px 12px;
        font-size: 10px;
    }
    
    .main-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }
    
    .sidebar {
        height: auto;
        max-height: 300px;
        overflow-y: auto;
    }
    
    .country-list {
        max-height: 200px;
    }
    
    .country-list li:hover {
        transform: translateX(3px) scale(1.01);
    }
}

/* Modern Category Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(240,240,240,0.9));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    margin: 20px 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    animation: tabsSlideIn 0.8s ease-out 0.6s both;
}

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

.tab-btn {
    position: relative;
    padding: 12px 20px;
    background: transparent;
    border: 2px solid transparent;
    color: #666;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    transform: translateY(0);
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.6s ease;
}

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

.tab-btn:hover {
    color: #667eea;
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
    background: rgba(102, 126, 234, 0.05);
}

.tab-btn.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    animation: activeTabPulse 2s ease-in-out infinite;
}

@keyframes activeTabPulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    }
    50% {
        box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
    }
}

/* Modern Filter Buttons */
.filter-buttons-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 8px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(240,240,240,0.9));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    margin: 20px 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    animation: filtersSlideIn 0.8s ease-out 0.8s both;
}

@keyframes filtersSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.filter-btn {
    position: relative;
    padding: 12px 16px;
    background: rgba(255,255,255,0.8);
    border: 2px solid rgba(102, 126, 234, 0.2);
    color: #667eea;
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.filter-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.2), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.filter-btn:hover::after {
    width: 200px;
    height: 200px;
}

.filter-btn:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: transparent;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.filter-btn.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.filter-btn i {
    font-size: 12px;
    animation: iconFloat 2s ease-in-out infinite;
}

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

.clear-all-btn {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24) !important;
    border-color: transparent !important;
    color: white !important;
}

.clear-all-btn:hover {
    background: linear-gradient(135deg, #ee5a24, #ff6b6b) !important;
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 12px 30px rgba(255, 107, 107, 0.4);
}

/* Page Title Modern Style */
.page-title {
    background: linear-gradient(135deg, #667eea, #764ba2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin: 30px 0;
    position: relative;
    animation: titleEntrance 1s ease-out 1s both;
}

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

.page-title::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
    animation: underlineGrow 0.8s ease-out 1.5s both;
}

@keyframes underlineGrow {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}

/* Modern Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    animation: breadcrumbSlide 0.6s ease-out 1.2s both;
}

@keyframes breadcrumbSlide {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.breadcrumb a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    color: #764ba2;
    transform: scale(1.05);
}

/* Responsive improvements for mobile */
@media (max-width: 768px) {
    .category-tabs {
        flex-wrap: wrap;
        gap: 3px;
        padding: 15px;
    }
    
    .tab-btn {
        padding: 8px 12px;
        font-size: 9px;
    }
    
    .filter-buttons-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 5px;
        padding: 15px;
    }
    
    .filter-btn {
        padding: 8px 12px;
        font-size: 9px;
    }
    
    .page-title {
        font-size: 24px;
    }
}

/* Advertisement Popup Styles */
.ad-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.ad-popup-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: adSlideIn 0.3s ease-out;
}

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

.ad-popup-content {
    position: relative;
    display: flex;
    flex-direction: column;
}

.ad-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    z-index: 10001;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-close-btn:hover {
    background: rgba(255, 0, 0, 0.8);
    transform: scale(1.1);
}

.ad-image-container {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ad-image-container:hover {
    transform: scale(1.02);
}

.ad-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 600px;
    max-height: 500px;
    object-fit: contain;
}

.ad-click-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 20px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.ad-click-text i {
    font-size: 20px;
    color: #0088cc;
}

.ad-image-container:hover .ad-click-text {
    opacity: 1;
    background: linear-gradient(to top, rgba(0, 136, 204, 0.8), transparent);
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .ad-popup-container {
        max-width: 95%;
        margin: 10px;
    }
    
    .ad-image {
        max-height: 70vh;
    }
    
    .ad-click-text {
        font-size: 14px;
        padding: 15px;
    }
}

/* Modern Header Animations */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.header .container {
    position: relative;
    z-index: 2;
}

.logo {
    animation: logoFloat 3s ease-in-out infinite;
}

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

.logo-image {
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.logo:hover .logo-image {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
}

.tagline {
    background: linear-gradient(45deg, #fff, #f0f0f0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from { text-shadow: 0 0 5px rgba(255,255,255,0.5); }
    to { text-shadow: 0 0 20px rgba(255,255,255,0.8); }
}

.header-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.header-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.header-btn:hover::before {
    width: 300px;
    height: 300px;
}

.header-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.header-btn i {
    animation: iconPulse 2s ease-in-out infinite;
}

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

.favorites-count, .chat-notification {
    animation: bounce 1s ease-in-out infinite;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

/* Modern Navigation */
.main-nav {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover {
    color: #667eea;
    transform: translateY(-2px);
}

.nav-link.active {
    color: #667eea;
    font-weight: 600;
}

.nav-link.active::before {
    width: 100%;
}

/* Modern Full Height Sidebar */
.sidebar {
    background: linear-gradient(180deg, 
        rgba(255,255,255,0.98) 0%, 
        rgba(248,250,252,0.98) 50%, 
        rgba(240,245,249,0.98) 100%);
    backdrop-filter: blur(25px);
    border: none;
    border-radius: 0;
    box-shadow: 2px 0 30px rgba(102, 126, 234, 0.08);
    overflow: hidden;
    animation: sidebarSlideIn 0.8s ease-out;
    position: relative;
    height: 100vh;
    padding: 0;
    margin: 0;
    border-right: 1px solid rgba(102, 126, 234, 0.15);
    display: flex;
    flex-direction: column;
}

/* Sidebar Header */
.sidebar::before {
    content: 'EXPLORE EUROPE ✨';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.05) 0%, 
        rgba(118, 75, 162, 0.05) 100%);
    border-bottom: 1px solid rgba(102, 126, 234, 0.15);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.sidebar .search-box {
    margin-top: 80px;
}

@keyframes sidebarSlideIn {
    from { 
        opacity: 0; 
        transform: translateX(-50px);
    }
    to { 
        opacity: 1; 
        transform: translateX(0);
    }
}

.search-box {
    position: relative;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    margin: 25px 20px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.1);
    border-radius: 15px;
}

.search-box:hover {
    background: rgba(255,255,255,1);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
}

.search-input {
    background: transparent;
    border: none;
    padding: 15px 50px 15px 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    background: rgba(255,255,255,0.9);
}

.search-box i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #667eea;
    font-size: 16px;
    animation: searchPulse 2s ease-in-out infinite;
}

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

.sidebar-section {
    animation: fadeInUp 0.8s ease-out 0.3s both;
    padding: 0 20px 30px 20px;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    margin-bottom: 20px;
}

.sidebar-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 40px;
}

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

.sidebar-title {
    background: linear-gradient(135deg, #667eea, #764ba2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    animation: titleShine 3s ease-in-out infinite;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@keyframes titleShine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.country-list {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(102, 126, 234, 0.3) transparent;
    padding: 0;
    margin: 0;
}

.country-list::-webkit-scrollbar {
    width: 3px;
}

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

.country-list::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #667eea, #764ba2);
    border-radius: 3px;
}

.country-list::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #764ba2, #667eea);
}

.country-list li {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(0);
    opacity: 0;
    animation: countrySlideIn 0.5s ease-out forwards;
    border-radius: 12px;
    margin: 2px 0;
    padding: 0;
    border: none;
    background: transparent;
}

.country-list li:nth-child(odd) {
    animation-delay: 0.1s;
}

.country-list li:nth-child(even) {
    animation-delay: 0.2s;
}

@keyframes countrySlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.country-list li:hover {
    transform: translateX(8px) scale(1.01);
    background: linear-gradient(90deg, 
        rgba(102, 126, 234, 0.08), 
        rgba(118, 75, 162, 0.04), 
        transparent);
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(102, 126, 234, 0.12);
}

.country-list a {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 12px 15px;
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 13px;
    border-radius: 12px;
}

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

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

.country-list img {
    transition: all 0.3s ease;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    width: 24px;
    height: 18px;
    margin-right: 12px;
    object-fit: cover;
}

.country-list li:hover img {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.2);
}

.country-list span {
    background: linear-gradient(135deg, #667eea, #764ba2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    position: relative;
    margin-left: auto;
    padding: 4px 8px;
    font-size: 11px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    color: #667eea;
}

.country-list li:hover span {
    animation: numberGlow 0.5s ease-in-out;
}

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

/* Hover effects for country items */
.country-list li:hover {
    background: linear-gradient(90deg, 
        rgba(102, 126, 234, 0.05), 
        rgba(118, 75, 162, 0.05), 
        rgba(102, 126, 234, 0.05)
    );
    background-size: 200% 100%;
    animation: gradientMove 1s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Modern scrollbar animation */
.country-list:hover::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff6b6b, #667eea, #764ba2);
    animation: scrollbarGlow 2s ease infinite;
}

@keyframes scrollbarGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

/* FORCE CHECKBOX LAYOUT - HIGHEST PRIORITY */
.checkbox-filters {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    grid-auto-flow: row !important;
    gap: 6px 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    grid-template-rows: auto auto !important;
    padding: 10px 12px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    max-height: 80px !important;
    overflow: visible !important;
}

.checkbox-group {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    white-space: nowrap !important;
    width: auto !important;
    min-width: 0 !important;
    flex: 1 !important;
    gap: 6px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    padding: 6px 8px !important;
    border-radius: 6px !important;
}

.filter-checkbox {
    width: 14px !important;
    height: 14px !important;
    appearance: none !important;
    border: 2px solid rgba(255, 255, 255, 0.6) !important;
    border-radius: 3px !important;
    background: transparent !important;
    cursor: pointer !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
}

.checkbox-group label {
    font-size: 10px !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3px !important;
    cursor: pointer !important;
    user-select: none !important;
    transition: all 0.3s ease !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
    overflow: hidden !important;
}

/* GIF Advertisement Banner */
.gif-advertisement-banner {
    margin: 30px 0 !important;
    padding: 0 !important;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%) !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.ad-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 15px !important;
    height: auto !important;
    position: relative !important;
    padding: 20px !important;
}

.ad-gif-item {
    width: 120px !important;
    height: 80px !important;
    position: relative !important;
    overflow: hidden !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    border-radius: 12px !important;
    flex-shrink: 0 !important;
}

.ad-gif-item:last-child {
    border-right: none !important;
}

.ad-gif-item:hover {
    transform: scale(1.02) !important;
    z-index: 10 !important;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4) !important;
}

.ad-gif-image {
    width: 120px !important;
    height: 80px !important;
    object-fit: cover !important;
    display: block !important;
    transition: all 0.3s ease !important;
    filter: brightness(0.8) !important;
    border-radius: 12px !important;
}

.ad-gif-item:hover .ad-gif-image {
    filter: brightness(1) !important;
    transform: scale(1.05) !important;
}

.ad-overlay {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8)) !important;
    color: white !important;
    padding: 20px 15px 15px 15px !important;
    text-align: center !important;
    transform: translateY(100%) !important;
    transition: all 0.3s ease !important;
}

.ad-gif-item:hover .ad-overlay {
    transform: translateY(0) !important;
}

.ad-overlay h4 {
    font-size: 16px !important;
    font-weight: 700 !important;
    margin-bottom: 5px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    color: #fff !important;
}

.ad-overlay p {
    font-size: 12px !important;
    opacity: 0.9 !important;
    margin: 0 !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Highlighted effect for auto-rotation */
.ad-gif-item.highlighted {
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.6) !important;
    border: 2px solid rgba(102, 126, 234, 0.8) !important;
    transform: scale(1.02) !important;
}

.ad-gif-item.highlighted .ad-gif-image {
    filter: brightness(1.1) saturate(1.2) !important;
}

/* Responsive Advertisement */
@media (max-width: 768px) {
    .ad-container {
        flex-direction: column !important;
        height: auto !important;
    }
    
.ad-gif-item {
        width: 100px !important;
        height: 70px !important;
    }
    
    .ad-gif-image {
        width: 100px !important;
        height: 70px !important;
    }
    
    .ad-gif-item:last-child {
        border-bottom: none !important;
    }
    
    .ad-overlay {
        transform: translateY(0) !important;
        background: rgba(0, 0, 0, 0.7) !important;
    }
    
    .ad-overlay h4 {
        font-size: 14px !important;
    }
    
    .ad-overlay p {
        font-size: 11px !important;
    }
}

@media (max-width: 480px) {
    .gif-advertisement-banner {
        margin: 20px 0 !important;
        border-radius: 15px !important;
    }
    
    .ad-gif-item {
        height: 120px !important;
    }
    
    .ad-overlay {
        padding: 15px 10px 10px 10px !important;
    }
    
    .ad-overlay h4 {
        font-size: 12px !important;
    }
    
    .ad-overlay p {
        font-size: 10px !important;
    }
}

/* Profile Modal Styles */
.profile-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.profile-modal-overlay.active {
    display: flex !important;
}

.profile-modal-container {
    width: 100%;
    max-width: 1400px;
    height: 90vh;
    background: #f8f9fa;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.profile-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-close-btn:hover {
    background: #ff4757;
    color: white;
    transform: scale(1.1);
}

.profile-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #ff9500 0%, #ff7b00 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-nav-btn:hover {
    background: linear-gradient(135deg, #ff7b00 0%, #ff6b00 100%);
    transform: translateY(-50%) scale(1.05);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.profile-modal-content {
    display: flex;
    height: 100%;
    overflow: hidden;
}

.profile-left-section {
    width: 350px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
}

.profile-image-container {
    position: relative;
}

.profile-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.profile-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.profile-badge {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-badge.vip-badge {
    background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
    color: white;
}

.profile-badge.knowledge-badge {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color: white;
}

.profile-badge.video-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
}

.verified-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    text-align: center;
}

.verified-badge {
    color: #2ecc71;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.verified-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    margin: 0;
}

.profile-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vote-btn, .follow-btn {
    background: linear-gradient(135deg, #ff9500 0%, #ff7b00 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.vote-btn:hover, .follow-btn:hover {
    background: linear-gradient(135deg, #ff7b00 0%, #ff6b00 100%);
    transform: translateY(-2px);
}

.rating-bar-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
    transition: all 0.3s ease;
}

.rating-text {
    color: white;
    font-size: 12px;
    font-weight: 700;
}

.profile-gallery {
    margin-top: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.gallery-image {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.profile-right-section {
    flex: 1;
    padding: 30px;
    background: white;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-tag {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tag.travel { background: #ffd700; color: #333; }
.category-tag.live-sex { background: #ff4757; color: white; }
.category-tag.live-cams { background: #ff4757; color: white; }
.category-tag.meet { background: #333; color: white; }
.category-tag.live-porn { background: #333; color: white; }
.category-tag.local { background: #95a5a6; color: white; }
.category-tag.escort { background: #95a5a6; color: white; }

.profile-info h2 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.last-seen {
    color: #7f8c8d;
    font-size: 14px;
    margin: 0 0 15px 0;
}

.profile-description {
    color: #2c3e50;
    font-size: 14px;
    line-height: 1.6;
}

.contact-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #ecf0f1;
}

.contact-item i {
    width: 20px;
    color: #ff4757;
}

.contact-label {
    font-weight: 600;
    color: #2c3e50;
    min-width: 80px;
}

.contact-value {
    color: #ff4757;
    font-weight: 600;
}

.phone-options {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icons {
    display: flex;
    gap: 8px;
}

.social-icons i {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fa-viber { background: #665cac; color: white; }
.fa-whatsapp { background: #25d366; color: white; }
.fa-sms { background: #34495e; color: white; }

.profile-contact-actions {
    display: flex;
    gap: 15px;
}

.contact-btn {
    flex: 1;
    background: linear-gradient(135deg, #ff9500 0%, #ff7b00 100%);
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #ff7b00 0%, #ff6b00 100%);
    transform: translateY(-2px);
}

.profile-secondary-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.secondary-btn {
    background: #ecf0f1;
    color: #2c3e50;
    border: 1px solid #bdc3c7;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.secondary-btn:hover {
    background: #ff4757;
    color: white;
    border-color: #ff4757;
}

.profile-sidebar {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10001;
}

.live-chat-btn, .telegram-btn, .share-btn {
    background: linear-gradient(135deg, #ff9500 0%, #ff7b00 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 120px;
}

.live-chat-btn:hover, .telegram-btn:hover, .share-btn:hover {
    background: linear-gradient(135deg, #ff7b00 0%, #ff6b00 100%);
    transform: translateX(-5px);
}

.qr-section {
    background: white;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.qr-code {
    width: 100px;
    height: 100px;
    background: #2c3e50;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    margin: 0 auto;
}

.working-hours {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 15px;
    text-align: center;
}

.working-hours h4 {
    margin: 0 0 10px 0;
    font-size: 12px;
    color: #2c3e50;
    text-transform: uppercase;
}

.hours-display {
    font-size: 18px;
    font-weight: 700;
    color: #ff4757;
}

/* Responsive */
@media (max-width: 768px) {
    .profile-modal-container {
        height: 95vh;
        border-radius: 10px;
    }
    
    .profile-modal-content {
        flex-direction: column;
    }
    
    .profile-left-section {
        width: 100%;
        height: 50%;
    }
    
    .profile-right-section {
        height: 50%;
    }
    
    .profile-sidebar {
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
    }
}

/* Filter Buttons - Side by Side Selectable */
.filter-buttons-container {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    padding: 25px !important;
    justify-content: center !important;
    align-items: center !important;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%) !important;
    border-radius: 20px !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    margin: 25px 0 !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) !important;
}

.filter-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 12px 18px !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%) !important;
    border: 2px solid rgba(255, 255, 255, 0.9) !important;
    border-radius: 25px !important;
    color: rgba(0, 0, 0, 0.8) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
    white-space: nowrap !important;
    user-select: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.filter-btn:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%) !important;
    border-color: rgba(102, 126, 234, 1) !important;
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5) !important;
    color: white !important;
}

.filter-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border-color: #667eea !important;
    color: white !important;
    transform: scale(1.08) !important;
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6) !important;
    font-weight: 800 !important;
}

.filter-btn.active:hover {
    transform: translateY(-4px) scale(1.12) !important;
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.7) !important;
}

.filter-btn i {
    font-size: 13px !important;
    opacity: 1 !important;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3)) !important;
}

.filter-btn.active i {
    opacity: 1 !important;
}

.clear-all-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 12px 24px !important;
    background: linear-gradient(135deg, rgba(255, 107, 107, 1) 0%, rgba(255, 99, 99, 1) 100%) !important;
    border: 2px solid rgba(255, 107, 107, 1) !important;
    border-radius: 25px !important;
    color: white !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
    white-space: nowrap !important;
    user-select: none !important;
    margin-left: 20px !important;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.4) !important;
}

.clear-all-btn:hover {
    background: linear-gradient(135deg, rgba(255, 80, 80, 1) 0%, rgba(255, 60, 60, 1) 100%) !important;
    border-color: rgba(255, 80, 80, 1) !important;
    transform: translateY(-3px) scale(1.08) !important;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.6) !important;
}

.clear-all-btn i {
    font-size: 13px !important;
    opacity: 1 !important;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3)) !important;
}

/* RESPONSIVE OVERRIDES - FORCE */
@media (max-width: 768px) {
    .filter-buttons-container {
        gap: 6px !important;
        padding: 15px !important;
    }
    
    .filter-btn {
        padding: 10px 14px !important;
        font-size: 11px !important;
        gap: 6px !important;
    }
    
    .filter-btn i {
        font-size: 11px !important;
    }
    
    .clear-all-btn {
        padding: 10px 18px !important;
        font-size: 11px !important;
        margin-left: 15px !important;
    }
}

@media (max-width: 480px) {
    .filter-buttons-container {
        gap: 4px !important;
        padding: 12px !important;
    }
    
    .filter-btn {
        padding: 6px 10px !important;
        font-size: 9px !important;
        gap: 4px !important;
        border-radius: 20px !important;
    }
    
    .filter-btn i {
        font-size: 9px !important;
    }
    
    .clear-all-btn {
        padding: 6px 12px !important;
        font-size: 9px !important;
        margin-left: 8px !important;
        margin-top: 8px !important;
        width: 100% !important;
        justify-content: center !important;
    }
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Inter', 'Arial', sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    line-height: 1.5;
    color: #2c3e50;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: relative;
    backdrop-filter: blur(10px);
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
}

/* Header Buttons */
.header-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.header-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.header-btn i {
    margin-right: 5px;
}

.support-btn:hover {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.signup-btn:hover {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.login-btn:hover {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    height: 280px;
    width: auto;
    filter: brightness(1.1) contrast(1.1);
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.02);
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tagline {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.95);
    font-weight: 500;
    letter-spacing: 1.2px;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.login-form {
    display: flex;
    gap: 8px;
    align-items: center;
}

.login-input {
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 3px;
    font-size: 13px;
    background: rgba(255,255,255,0.95);
    color: #333;
    min-width: 120px;
}

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

.login-btn {
    background: linear-gradient(135deg, #ff8a50, #ff6b35);
    color: white;
    border: none;
    padding: 9px 18px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-btn:hover {
    background: linear-gradient(135deg, #ff7043, #ff5722);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.header-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
}

.forgot-password {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 11px;
    transition: color 0.3s;
}

.forgot-password:hover {
    color: white;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    padding: 4px 8px;
    border-radius: 3px;
    transition: background 0.3s;
}

.language-selector:hover {
    background: rgba(255,255,255,0.2);
}

.flag {
    width: 18px;
    height: 12px;
    background: linear-gradient(135deg, #1976d2, #42a5f5);
    border-radius: 2px;
}

/* Navigation Styles */
.main-nav {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
}

.nav-link {
    display: block;
    color: white;
    text-decoration: none;
    padding: 16px 22px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    position: relative;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.nav-link:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-1px);
}

.nav-link.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: inset 0 -3px 0 #f093fb;
}

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-actions a {
    color: white;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 3px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-actions a:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-1px);
}

/* Sub Navigation */
.sub-nav {
    background: linear-gradient(135deg, #434343 0%, #000000 100%);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sub-nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
}

.sub-nav-links li {
    position: relative;
}

.sub-nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 0;
    transition: all 0.3s;
    position: relative;
}

.sub-nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(90deg, #ff1744, #ff6b9d);
    transition: width 0.3s;
}

.sub-nav-links a:hover {
    color: white;
}

.sub-nav-links a:hover::after {
    width: 100%;
}

/* Story Viewer */
.story-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
}

.story-container {
    position: relative;
    width: 375px;
    height: 667px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.story-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.story-progress {
    display: flex;
    gap: 2px;
    margin-bottom: 15px;
    width: 100%;
}

.progress-bar {
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1px;
    flex: 1;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #fff;
    width: 0%;
    transition: width 0.1s linear;
}

.story-user-info {
    display: flex;
    align-items: center;
    color: white;
    font-weight: 500;
}

.story-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 10px;
    border: 2px solid #fff;
}

.story-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.story-content {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.story-navigation {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    cursor: pointer;
    z-index: 15;
}

.story-nav-prev {
    left: 0;
}

.story-nav-next {
    right: 0;
}

.story-count {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    z-index: 20;
}

.premium-message {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #000;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    animation: pulse-gold 2s infinite;
    text-align: center;
    cursor: pointer;
    display: none;
    z-index: 20;
}

@keyframes pulse-gold {
    0% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
    100% { transform: translateX(-50%) scale(1); }
}

.premium-message:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateX(-50%) scale(1.05);
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.popup-container {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.popup-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px 20px 0 0;
}

.popup-header h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.popup-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.popup-content {
    padding: 25px;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.popup-input {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.popup-input:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #667eea;
}

.forgot-link {
    color: #667eea;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

.forgot-link:hover {
    text-decoration: underline;
}

.popup-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popup-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.popup-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #666;
}

.popup-footer a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.popup-footer a:hover {
    text-decoration: underline;
}

/* Premium Popup Styles */
.premium-popup {
    max-width: 900px;
    width: 95%;
    max-height: 95vh;
}

.premium-header {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #2c3e50;
}

.premium-content {
    padding: 30px;
    max-height: 80vh;
    overflow-y: auto;
}

.premium-intro {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: white;
}

.premium-icon {
    font-size: 48px;
    margin-bottom: 15px;
    animation: gemGlow 2s ease-in-out infinite;
}

@keyframes gemGlow {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(255,255,255,0.5)); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 20px rgba(255,255,255,0.8)); }
}

.premium-intro h3 {
    font-size: 24px;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.premium-intro p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

.token-packages {
    margin-bottom: 30px;
}

.token-packages h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.token-package {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.token-package:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.token-package.popular {
    border-color: #667eea;
    transform: scale(1.05);
}

.token-package.vip {
    border-color: #ffd700;
}

.package-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: #667eea;
    color: white;
    padding: 5px 20px;
    border-radius: 0 0 15px 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.popular-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    animation: popularPulse 2s ease-in-out infinite;
}

@keyframes popularPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(102, 126, 234, 0); }
}

.vip-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #2c3e50;
    animation: vipGlow 2s ease-in-out infinite;
}

@keyframes vipGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
}

.package-price {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin: 20px 0 10px 0;
}

.token-amount {
    font-size: 18px;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 20px;
}

.package-features {
    text-align: left;
}

.feature {
    padding: 8px 0;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.feature:last-child {
    border-bottom: none;
}

.payment-section {
    margin-bottom: 30px;
}

.payment-section h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-methods {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-method {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 150px;
}

.payment-method:hover, .payment-method.active {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}

.payment-method i {
    font-size: 20px;
    color: #667eea;
}

.premium-benefits {
    margin-bottom: 30px;
}

.premium-benefits h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.benefit {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.benefit:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit i {
    font-size: 18px;
    color: #667eea;
}

.benefit span {
    font-weight: 600;
    color: #2c3e50;
}

.premium-buy-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.premium-buy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.premium-buy-btn i {
    font-size: 20px;
    animation: gemSpin 3s linear infinite;
}

@keyframes gemSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Premium Popup Responsive */
@media (max-width: 768px) {
    .premium-popup {
        width: 95%;
        margin: 20px;
    }
    
    .premium-content {
        padding: 20px;
    }
    
    .package-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        flex-direction: column;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Modern Footer Styles */
.modern-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
    color: #ffffff;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #667eea 20%, #764ba2 50%, #667eea 80%, transparent 100%);
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 60px 0 40px 0;
}

.footer-section h3 {
    color: #667eea;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

/* Logo Section */
.footer-logo-img {
    height: 60px;
    width: auto;
    margin: 0 0 15px 0;
    transition: all 0.3s ease;
    filter: brightness(1.1) saturate(1.2);
    max-width: 250px;
}

.footer-logo-img:hover {
    transform: scale(1.05);
    filter: brightness(1.3) saturate(1.4) drop-shadow(0 0 20px rgba(102, 126, 234, 0.3));
}

.footer-logo h2 {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 8px 0;
    letter-spacing: -1px;
}

.footer-tagline {
    color: #888;
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 14px;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    color: #667eea;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-radius: 6px;
}

.footer-links a:hover {
    color: #667eea;
    transform: translateX(5px);
    background: rgba(102, 126, 234, 0.05);
    padding-left: 10px;
}

.footer-links a i {
    width: 16px;
    font-size: 12px;
    opacity: 0.7;
}

/* Contact Info */
.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #ccc;
    font-size: 14px;
}

.contact-item i {
    color: #667eea;
    width: 16px;
    font-size: 14px;
}

/* Newsletter */
.newsletter h4 {
    color: #667eea;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.newsletter-form input::placeholder {
    color: #888;
}

.newsletter-form button {
    padding: 12px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Age Verification */
.age-verification {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    margin: 0 -20px;
    padding: 20px 40px;
}

.age-notice {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 1360px;
    margin: 0 auto;
}

.age-notice i {
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.age-notice span {
    color: white;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    border-top: 1px solid rgba(102, 126, 234, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    color: #888;
    font-size: 14px;
    margin: 0;
}

.footer-badges {
    display: flex;
    gap: 20px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #888;
    font-size: 12px;
    padding: 8px 16px;
    background: rgba(102, 126, 234, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.badge:hover {
    color: #667eea;
    border-color: rgba(102, 126, 234, 0.3);
    background: rgba(102, 126, 234, 0.1);
}

.badge i {
    color: #667eea;
    font-size: 14px;
}

/* Footer Responsive */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 40px 0 30px 0;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer-logo-img {
        height: 50px;
        max-width: 220px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .age-verification {
        margin: 0 -15px;
        padding: 20px 25px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px 0 25px 0;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-logo-img {
        height: 45px;
        max-width: 200px;
    }
    
    .footer-logo h2 {
        font-size: 28px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .age-verification {
        margin: 0 -15px;
        padding: 15px 20px;
    }
    
    .age-notice {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .badge {
        font-size: 11px;
        padding: 6px 12px;
    }
}

/* Advanced Search and Filters */
.advanced-search-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 25px;
    margin: 30px 0;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

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

.search-header i {
    font-size: 24px;
    margin-right: 10px;
}

.search-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    flex: 1;
}

.toggle-filters {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.toggle-filters:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.search-main {
    margin-bottom: 20px;
}

.search-input-container {
    display: flex;
    gap: 10px;
    max-width: 500px;
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    outline: none;
    transition: all 0.3s ease;
}

.search-input:focus {
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.search-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.search-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.filters-panel {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideDown 0.3s ease;
}

.filters-panel.active {
    display: grid;
}

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

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-weight: 600;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-select {
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 14px;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:focus {
    background: white;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.age-range {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.age-slider {
    width: 100%;
    height: 5px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.3);
    outline: none;
    cursor: pointer;
}

.age-slider::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.age-values {
    text-align: center;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 6px;
}

.additional-filters {
    grid-column: 1 / -1;
    margin-top: 15px;
    margin-bottom: 10px;
}

/* Gif Banner Section - FORCE VISIBLE */
.gif-banner-section {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px !important;
    margin-bottom: 20px !important;
    padding: 15px !important;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%) !important;
    border-radius: 15px !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    width: 100% !important;
    min-height: 120px !important;
    position: relative !important;
    z-index: 100 !important;
}

.gif-container {
    position: relative !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5) !important;
    transition: all 0.3s ease !important;
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px) !important;
    display: block !important;
    width: auto !important;
    height: auto !important;
}

.gif-container:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.gif-image {
    width: 120px !important;
    height: 80px !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    max-width: 120px !important;
    max-height: 80px !important;
    min-width: 120px !important;
    min-height: 80px !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.gif-image:hover {
    filter: brightness(1.1) contrast(1.1);
}

.checkbox-filters {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 6px 8px !important;
    padding: 10px 12px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    max-height: 80px !important;
    overflow: visible !important;
    width: 100% !important;
}

.checkbox-group {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    padding: 6px 8px !important;
    border-radius: 6px !important;
    white-space: nowrap !important;
    width: auto !important;
    min-width: 0 !important;
}

.checkbox-group:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.filter-checkbox {
    width: 14px;
    height: 14px;
    appearance: none;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 3px;
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.filter-checkbox:checked {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    border-color: #ffffff;
    transform: scale(1.1);
}

.filter-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #667eea;
    font-weight: bold;
    font-size: 10px;
}

.checkbox-group label {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    line-height: 1;
}

.checkbox-group:hover label {
    color: #ffffff;
    transform: translateX(2px);
}

.filter-actions {
    grid-column: 1 / -1;
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 15px;
}

.apply-filters, .clear-filters {
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.apply-filters {
    background: rgba(255, 255, 255, 0.9);
    color: #667eea;
}

.apply-filters:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.clear-filters {
    background: rgba(255, 107, 107, 0.8);
    color: white;
}

.clear-filters:hover {
    background: rgba(255, 107, 107, 1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* Advanced Search Responsive */
@media (max-width: 768px) {
    .advanced-search-container {
        padding: 20px;
        margin: 20px 0;
    }
    
    .search-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .filters-panel {
        grid-template-columns: 1fr;
    }
    
    .search-input-container {
        max-width: none;
    }
    
    .checkbox-filters {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 4px 6px !important;
        padding: 8px 10px !important;
        max-height: 90px !important;
    }
    
    .gif-banner-section {
        gap: 15px !important;
        padding: 12px !important;
    }
    
    .gif-image {
        width: 100px !important;
        height: 70px !important;
    }
    
    .checkbox-group {
        padding: 4px 6px;
        gap: 4px;
    }
    
    .checkbox-group label {
        font-size: 9px;
        letter-spacing: 0.2px;
    }
    
    .filter-actions {
        flex-direction: column;
    }
    
    .apply-filters, .clear-filters {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .checkbox-filters {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 3px 4px !important;
        padding: 6px 8px !important;
        max-height: 110px !important;
    }
    
    .gif-banner-section {
        flex-direction: column !important;
        gap: 10px !important;
        padding: 10px !important;
    }
    
    .gif-image {
        width: 80px !important;
        height: 60px !important;
    }
    
    .checkbox-group {
        padding: 3px 4px;
        gap: 3px;
    }
    
    .checkbox-group label {
        font-size: 8px;
        letter-spacing: 0.1px;
    }
    
    .filter-checkbox {
        width: 12px;
        height: 12px;
    }
}

/* Live Chat Styles */
.live-chat-btn {
    position: relative;
}

.chat-notification {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

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

.chat-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.chat-container {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 1000px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.chat-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.chat-title i {
    font-size: 24px;
}

.chat-title span {
    font-size: 20px;
    font-weight: 700;
}

.online-users {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.9;
}

.online-dot {
    color: #2ecc71;
    font-size: 8px;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.chat-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.chat-content {
    display: flex;
    height: 600px;
    max-height: calc(80vh - 80px);
}

.chat-sidebar {
    width: 250px;
    background: #f8f9fa;
    border-right: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
}

.chat-tabs {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #e9ecef;
}

.chat-tab {
    background: none;
    border: none;
    padding: 15px 20px;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #6c757d;
}

.chat-tab:hover, .chat-tab.active {
    background: #667eea;
    color: white;
}

.chat-tab i {
    font-size: 16px;
}

.online-list {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.online-list h4 {
    margin: 0 0 15px 0;
    font-size: 14px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.user-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.online-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.online-user:hover {
    background: rgba(102, 126, 234, 0.1);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.online-user span {
    flex: 1;
    font-weight: 500;
    font-size: 14px;
}

.user-status {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.user-status.admin {
    background: #ff4757;
    color: white;
}

.user-status.vip {
    background: #ffd700;
    color: #333;
}

.user-status.premium {
    background: #667eea;
    color: white;
}

.chat-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.message.system {
    justify-content: center;
    padding: 12px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 8px;
    color: #667eea;
    font-weight: 500;
    font-size: 14px;
}

.message.system i {
    margin-right: 8px;
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.message-avatar.admin {
    background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
}

.message-content {
    flex: 1;
}

.message-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.username {
    font-weight: 700;
    color: #667eea;
    font-size: 14px;
}

.message.admin .username {
    color: #ff4757;
}

.timestamp {
    font-size: 12px;
    color: #6c757d;
}

.message-text {
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 0 15px 15px 15px;
    color: #333;
    line-height: 1.4;
    font-size: 14px;
}

.message.admin .message-text {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.2);
}

.chat-input-container {
    padding: 20px;
    border-top: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
}

.emoji-picker-btn {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6c757d;
}

.emoji-picker-btn:hover {
    background: #667eea;
    color: white;
}

#chatInput {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    outline: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

#chatInput:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.send-btn {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.send-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.emoji-picker {
    position: absolute;
    bottom: 80px;
    left: 20px;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
}

.emoji-picker.active {
    display: block;
    animation: slideUp 0.3s ease;
}

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

.emoji-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.emoji {
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.emoji:hover {
    background: #f8f9fa;
    transform: scale(1.2);
}

/* Chat Responsive */
@media (max-width: 768px) {
    .chat-container {
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
    }
    
    .chat-sidebar {
        width: 200px;
    }
    
    .chat-content {
        height: calc(100vh - 80px);
    }
    
    .online-list {
        padding: 15px;
    }
    
    .chat-messages {
        padding: 15px;
    }
    
    .chat-input-container {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .chat-sidebar {
        display: none;
    }
    
    .chat-main {
        width: 100%;
    }
}

/* Favorites System Styles */
.favorites-btn {
    position: relative;
}

.favorites-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: heartbeat 1.5s infinite;
}

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

.favorites-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.favorites-container {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 1200px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.favorites-header {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.favorites-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.favorites-title i {
    font-size: 28px;
    animation: heartPulse 2s infinite;
}

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

.favorites-title h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.favorites-stats {
    font-size: 14px;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    margin-left: 15px;
}

.favorites-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.favorites-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.favorites-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 30px;
    overflow: hidden;
}

.favorites-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.filter-buttons {
    display: flex;
    gap: 15px;
}

.filter-btn {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    color: #6c757d;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
}

.filter-btn:hover, .filter-btn.active {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.filter-btn i {
    font-size: 14px;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-select {
    padding: 12px 16px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background: white;
    color: #333;
    font-size: 14px;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-select:focus {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.favorites-grid {
    flex: 1;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding-right: 10px;
}

.favorites-grid::-webkit-scrollbar {
    width: 6px;
}

.favorites-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.favorites-grid::-webkit-scrollbar-thumb {
    background: #ff6b6b;
    border-radius: 3px;
}

.favorites-grid::-webkit-scrollbar-thumb:hover {
    background: #ee5a24;
}

.empty-favorites {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.empty-icon {
    font-size: 80px;
    color: #dee2e6;
    margin-bottom: 20px;
}

.empty-favorites h3 {
    font-size: 24px;
    color: #495057;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.empty-favorites p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 30px 0;
    max-width: 400px;
}

.browse-models-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.browse-models-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.favorite-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.favorite-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #ff6b6b;
}

.favorite-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.favorite-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.favorite-added-date {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 107, 107, 0.9);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
}

.favorite-remove-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #ff6b6b;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 14px;
}

.favorite-remove-btn:hover {
    background: #ff6b6b;
    color: white;
    transform: scale(1.1);
}

.favorite-card-content {
    padding: 20px;
}

.favorite-card-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #333;
}

.favorite-card-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.favorite-location {
    color: #6c757d;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.favorite-status {
    display: flex;
    gap: 8px;
    align-items: center;
}

.status-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.online {
    background: #d4edda;
    color: #155724;
}

.status-badge.vip {
    background: #fff3cd;
    color: #856404;
}

.status-badge.verified {
    background: #cce5ff;
    color: #004085;
}

.favorite-actions {
    display: flex;
    gap: 10px;
}

.action-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 13px;
}

.message-action {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.message-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.view-action {
    background: #f8f9fa;
    color: #6c757d;
    border: 1px solid #e9ecef;
}

.view-action:hover {
    background: #e9ecef;
    color: #495057;
}

/* Favorites Responsive */
@media (max-width: 768px) {
    .favorites-container {
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
    }
    
    .favorites-content {
        padding: 20px;
    }
    
    .favorites-filters {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .filter-buttons {
        flex-wrap: wrap;
    }
    
    .favorites-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .favorites-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-buttons {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
        gap: 10px;
    }
    
    .favorites-header {
        padding: 20px;
    }
    
    .favorites-title h2 {
        font-size: 20px;
    }
}

/* Support Page Styles */
.support-page {
    background: #f8f9fa;
    min-height: calc(100vh - 100px);
    padding: 40px 0;
}

.support-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.support-header h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.support-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.support-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-header i {
    font-size: 20px;
}

.card-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.card-content {
    padding: 25px;
}

/* Support Form */
.support-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-input {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f9f9f9;
    width: 100%;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* FAQ Styles */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #667eea;
}

.faq-question {
    padding: 15px 20px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #667eea;
    color: white;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    background: white;
    color: #666;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 15px 20px;
    max-height: 200px;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #667eea;
    color: white;
    transform: translateX(5px);
}

.contact-item i {
    width: 20px;
    color: #667eea;
    transition: color 0.3s ease;
}

.contact-item:hover i {
    color: white;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-item strong {
    font-size: 14px;
    font-weight: 600;
}

.contact-item span {
    font-size: 13px;
    opacity: 0.8;
}

/* Social Links */
.social-links h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
}

.social-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-btn:hover {
    transform: translateY(-3px) scale(1.1);
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn.twitter {
    background: #1da1f2;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.telegram {
    background: #0088cc;
}

.home-btn:hover {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

/* Responsive Design for Support Page */
@media (max-width: 768px) {
    .support-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .support-header h1 {
        font-size: 28px;
    }
    
    .support-header p {
        font-size: 16px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .social-buttons {
        justify-content: center;
    }
}

/* Tweets Feed Styles */
.tweets-feed {
    flex: 1;
    overflow: hidden;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.tweet {
    display: flex;
    padding: 12px;
    border-bottom: 1px solid #eee;
    background: white;
    margin-bottom: 8px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.tweet:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.tweet-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
    border: 2px solid #667eea;
}

.tweet-content {
    flex: 1;
}

.tweet-content p {
    margin: 0 0 8px 0;
    font-size: 13px;
    line-height: 1.4;
    color: #333;
}

.tweet-location {
    font-size: 11px;
    color: #667eea;
    font-weight: bold;
    margin-bottom: 4px;
}

.tweet-author {
    font-size: 10px;
    color: #999;
    text-align: right;
    font-style: italic;
}

.vip-badge {
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #000;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 9px;
    font-weight: bold;
    margin-left: 5px;
}



/* Main Container */
.main-container {
    padding: 0;
    background: #f8f9fa;
    display: grid;
    grid-template-columns: 280px 1fr 300px;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    position: relative;
}

.main-container .container {
    display: contents;
}

/* Sidebar Styles */
.sidebar {
    background: white;
    border-radius: 0;
    padding: 0;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    border: none;
    border-right: 1px solid #e0e0e0;
    overflow-y: auto;
    height: 100%;
    position: sticky;
    top: 0;
}

.search-box {
    position: relative;
    margin: 20px 15px 15px 15px;
}

.search-input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 14px;
    background: #f8f9fa;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.search-input:focus {
    border-color: #ff1744;
    outline: none;
    background: white;
}

.search-box i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 14px;
}

.sidebar-section {
    margin-top: 20px;
}

.sidebar-title {
    background: linear-gradient(135deg, #9c27b0, #e91e63);
    color: white;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.country-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.country-list li {
    border-bottom: 1px solid #f5f5f5;
}

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

.country-list a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
}

.country-list a:hover {
    background: linear-gradient(90deg, #f3f4f6, #e5e7eb);
    color: #667eea;
    padding-left: 22px;
}

.country-list img {
    width: 28px;
    height: 20px;
    margin-right: 12px;
    border-radius: 2px;
    border: 1px solid #d1d5db;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    object-fit: cover;
}

.country-list span {
    margin-left: auto;
    color: #6b7280;
    font-size: 12px;
    font-weight: 500;
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 8px;
}

/* Main Content */
.main-content {
    background: #f8f9fa;
    border-radius: 0;
    padding: 25px 30px;
    box-shadow: none;
    border: none;
    overflow-y: auto;
    height: 100%;
}

.breadcrumb {
    font-size: 11px;
    color: #999;
    margin-bottom: 15px;
    font-weight: 500;
}

.breadcrumb a {
    color: #ff1744;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #d50000;
}

.page-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.tab-btn {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
}

.tab-btn.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: #667eea;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transform: translateY(-2px);
}

.tab-btn:hover:not(.active) {
    background: #e9ecef;
    color: #333;
    transform: translateY(-1px);
}

/* Promotional Banners */
.promo-banners {
    margin-bottom: 25px;
}

.promo-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    backdrop-filter: blur(10px);
}

.promo-banner h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}

.promo-banner p {
    font-size: 14px;
    opacity: 0.9;
}

/* Filters */
.filters {
    margin-bottom: 35px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.filter-group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #555;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #ff1744;
}

.filter-tags,
.availability-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.tag {
    background: #e8f4fd;
    color: #1565c0;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #bbdefb;
}

.tag:hover {
    background: #1565c0;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(21, 101, 192, 0.3);
}

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

/* Stories and VIP Sections */
.stories-section,
.vip-section {
    margin-bottom: 40px;
}

.stories-section h2,
.vip-section h2 {
    color: #ff1744;
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stories-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 15px 0;
    scroll-behavior: smooth;
}

.stories-grid::-webkit-scrollbar {
    height: 6px;
}

.stories-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.stories-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 3px;
}

.stories-grid::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a6fd8, #6b4190);
}

/* Right Sidebar */
.right-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 25px 20px;
    background: white;
    border-left: 1px solid #e0e0e0;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    overflow-y: auto;
    height: 100%;
    position: sticky;
    top: 0;
}

.sidebar-widget {
    background: white;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.sidebar-widget:last-child {
    flex: 1;
}

.sidebar-widget h3 {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 15px 18px;
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.featured-member {
    text-align: center;
    padding: 20px;
}

.featured-member img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ff8a50, #ff6b35);
    border: 1px solid #e0e0e0;
}

.featured-member h4 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.tweets-feed {
    padding: 15px;
    min-height: 200px;
    color: #666;
    font-size: 12px;
    line-height: 1.4;
}

/* Modern Responsive Design */
@media (max-width: 1400px) {
    .container {
        max-width: 1200px;
        padding: 0 20px;
    }
}

@media (max-width: 1200px) {
    .main-container {
        grid-template-columns: 240px 1fr 280px;
    }
}

@media (max-width: 1024px) {
    .main-container {
        grid-template-columns: 220px 1fr 260px;
    }
    
    .sidebar {
        font-size: 12px;
    }
}

@media (max-width: 900px) {
    .main-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto 1fr;
    }

    .sidebar {
        order: 3;
        position: relative;
        height: auto;
        border-right: none;
        border-top: 1px solid #e0e0e0;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        padding: 20px;
    }
    
    .right-sidebar {
        order: 2;
        position: relative;
        height: auto;
        border-left: none;
        border-top: 1px solid #e0e0e0;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        padding: 20px;
    }

    .main-content {
        order: 1;
        padding: 20px 25px;
    }
    
    .main-container {
        min-height: calc(100vh - 260px);
    }
    
    .story-container {
        width: 90%;
        max-width: 400px;
        height: 80vh;
    }
    
    .header-buttons {
        flex-direction: column;
        gap: 5px;
    }
    
    .header-btn {
        padding: 6px 12px;
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .header {
        height: 120px;
    }
    
    .header .container {
        flex-direction: column;
        gap: 12px;
        padding: 15px 20px;
        justify-content: center;
    }

    .logo-image {
        height: 220px;
    }
    
    .tagline {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .user-actions {
        width: 100%;
        justify-content: center;
    }

    .login-form {
        width: 100%;
        max-width: 400px;
    }

    .main-nav .container {
        flex-direction: column;
        gap: 8px;
        padding: 10px 15px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
        width: 100%;
    }

    .nav-link {
        padding: 10px 14px;
        font-size: 11px;
        flex: 1;
        text-align: center;
        min-width: 80px;
    }

    .nav-actions {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .main-content {
        padding: 15px 20px;
    }

    .page-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .sidebar,
    .right-sidebar {
        grid-template-columns: 1fr;
        padding: 15px;
    }
    
    .search-box {
        margin: 15px 10px;
    }
    
    .country-list a {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .country-list img {
        width: 24px;
        height: 18px;
        margin-right: 10px;
    }
}

@media (max-width: 640px) {
    .header {
        height: 110px;
    }
    
    .header .container {
        padding: 12px 15px;
    }
    
    .logo {
        gap: 10px;
    }
    
    .logo-image {
        height: 200px;
    }

    .login-form {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .login-input {
        width: 100%;
        min-width: auto;
    }

    .main-content {
        padding: 12px 15px;
    }

    .page-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .filter-group {
        flex-direction: column;
        gap: 10px;
    }

    .category-tabs {
        gap: 6px;
        justify-content: center;
    }

    .tab-btn {
        padding: 8px 12px;
        font-size: 10px;
        flex: 1;
        min-width: 80px;
    }

    .filters {
        padding: 12px;
    }
    
    .sidebar,
    .right-sidebar {
        padding: 12px;
    }
    
    .main-container {
        min-height: calc(100vh - 240px);
    }
    
    .story-container {
        width: 95%;
        height: 85vh;
    }
    
    .header-buttons {
        gap: 8px;
    }
    
    .search-box {
        margin: 12px 8px;
    }
    
    .search-input {
        padding: 10px 35px 10px 12px;
        font-size: 13px;
    }
    
    .country-list a {
        padding: 8px 10px;
        font-size: 11px;
    }
    
    .country-list img {
        width: 22px;
        height: 16px;
        margin-right: 8px;
    }
    
    .country-list span {
        font-size: 10px;
        padding: 1px 4px;
    }
}

@media (max-width: 480px) {
    .header {
        height: 100px;
    }
    
    .header .container {
        padding: 10px 12px;
    }
    
    .logo-image {
        height: 180px;
    }
    
    .tagline {
        font-size: 0.65rem;
    }

    .nav-link {
        padding: 8px 10px;
        font-size: 10px;
        min-width: 70px;
    }

    .sub-nav {
        padding: 8px 0;
    }
    
    .sub-nav-links {
        gap: 12px;
        justify-content: center;
    }
    
    .sub-nav-links a {
        font-size: 10px;
    }

    .main-content {
        padding: 10px 12px;
    }

    .members-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }

    .story-card {
        min-width: 80px;
    }
    
    .story-image {
        width: 70px;
        height: 70px;
    }
    
    .filter-tags,
    .availability-tags {
        gap: 4px;
        justify-content: center;
    }
    
    .tag {
        padding: 4px 8px;
        font-size: 9px;
    }
    
    .sidebar,
    .right-sidebar {
        padding: 10px;
    }
    
    .search-box {
        margin: 10px 6px;
    }
    
    .search-input {
        padding: 8px 30px 8px 10px;
        font-size: 12px;
    }
    
    .country-list a {
        padding: 6px 8px;
        font-size: 10px;
    }
    
    .country-list img {
        width: 20px;
        height: 14px;
        margin-right: 6px;
    }
    
    .country-list span {
        font-size: 9px;
        padding: 1px 3px;
    }
    
    .story-container {
        width: 100%;
        height: 90vh;
        border-radius: 0;
    }
    
    .tweets-feed {
        flex: 1;
    }
    
    .tweet {
        padding: 8px;
    }
    
    .tweet-avatar {
        width: 32px;
        height: 32px;
    }
    
    .tweet-content p {
        font-size: 12px;
    }
    
    .header-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .header-btn {
        padding: 5px 10px;
        font-size: 9px;
    }
} 