 /* Modern Color System */
        :root {
            --primary: #10b981;
            --primary-dark: #059669;
            --primary-light: #34d399;
            --secondary: #06b6d4;
            --accent: #f97316;
            --accent-dark: #ea580c;
            
            --pink: #ec4899;
            --purple: #8b5cf6;
            --indigo: #6366f1;
            --yellow: #fbbf24;
            
            --success: #10b981;
            --warning: #f59e0b;
            --danger: #ef4444;
            --info: #3b82f6;
            
            --white: #ffffff;
            --black: #000000;
            
            --neutral-50: #fafafa;
            --neutral-100: #f5f5f5;
            --neutral-200: #e5e5e5;
            --neutral-300: #d4d4d4;
            --neutral-400: #a3a3a3;
            --neutral-500: #737373;
            --neutral-600: #525252;
            --neutral-700: #404040;
            --neutral-800: #262626;
            --neutral-900: #171717;
            
            --gradient-1: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
            --gradient-2: linear-gradient(135deg, #f97316 0%, #ec4899 100%);
            --gradient-3: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
            --gradient-mesh: linear-gradient(135deg, #10b981 0%, #06b6d4 50%, #8b5cf6 100%);
            
            --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1);
            --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
            --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1);
            --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
            
            --border-radius: 0.5rem;
            --border-radius-lg: 0.75rem;
            --border-radius-xl: 1rem;
            --border-radius-2xl: 1.5rem;
            --border-radius-full: 9999px;
        }

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

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
            width: 100%;
        }

        body {
            font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            font-size: 15px;
            color: var(--neutral-900);
            background: var(--neutral-50);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            width: 100%;
            position: relative;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

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

        /* Alert Bar */
        .alert-bar {
            background: var(--gradient-mesh);
            color: white;
            text-align: center;
            padding: 10px 20px;
            font-size: 13px;
            font-weight: 600;
            position: relative;
            overflow: hidden;
        }

        .alert-bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            animation: slide 2s infinite;
        }

        @keyframes slide {
            to { left: 100%; }
        }

        .alert-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            position: relative;
            z-index: 1;
        }

        .alert-content i {
            animation: pulse 2s infinite;
        }

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

        /* Header */
        .header {
            background: white;
            box-shadow: var(--shadow-sm);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--neutral-100);
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 16px 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
        }

        .brand-logo {
            width: 52px;
            height: 52px;
            background: var(--gradient-1);
            border-radius: var(--border-radius-xl);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-md);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .brand-logo:hover {
            transform: rotate(5deg) scale(1.05);
            box-shadow: var(--shadow-lg);
        }

        .brand-logo i {
            font-size: 26px;
            color: white;
        }

        .brand-name {
            font-size: 28px;
            font-weight: 800;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.5px;
        }

        .search-area {
            flex: 1;
            max-width: 560px;
        }

        .search-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            background: var(--neutral-100);
            border-radius: var(--border-radius-full);
            padding: 4px;
            transition: all 0.3s ease;
        }

        .search-wrapper:focus-within {
            background: white;
            box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1), var(--shadow);
        }

        .search-icon {
            position: absolute;
            left: 20px;
            color: var(--neutral-400);
            font-size: 18px;
            pointer-events: none;
        }

        .search-field {
            flex: 1;
            border: none;
            background: transparent;
            padding: 12px 20px 12px 52px;
            font-size: 15px;
            font-weight: 500;
            outline: none;
            color: var(--neutral-900);
        }

        .search-field::placeholder {
            color: var(--neutral-400);
        }

        .search-go {
            padding: 10px 28px;
            background: var(--gradient-1);
            color: white;
            border: none;
            border-radius: var(--border-radius-full);
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .search-go:hover {
            transform: translateY(-1px);
            box-shadow: var(--shadow-md);
        }

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

        .action-icon {
            width: 46px;
            height: 46px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--neutral-100);
            border-radius: var(--border-radius-lg);
            color: var(--neutral-600);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .action-icon:hover {
            background: var(--gradient-1);
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        .icon-badge {
            position: absolute;
            top: -4px;
            right: -4px;
            background: var(--danger);
            color: white;
            font-size: 10px;
            font-weight: 800;
            padding: 3px 6px;
            border-radius: var(--border-radius-full);
            min-width: 18px;
            text-align: center;
        }

        .profile-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 6px 6px 6px 16px;
            background: var(--neutral-100);
            border-radius: var(--border-radius-full);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .profile-btn:hover {
            background: var(--gradient-1);
            color: white;
            box-shadow: var(--shadow);
        }

        .profile-avatar {
            width: 36px;
            height: 36px;
            background: var(--gradient-2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
            font-size: 14px;
        }

        /* Navigation */
        .navigation {
            background: white;
            border-bottom: 1px solid var(--neutral-200);
            overflow-x: auto;
        }

        .navigation::-webkit-scrollbar {
            height: 0;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 28px;
            display: flex;
            gap: 6px;
        }

        .nav-item {
            padding: 16px 22px;
            font-weight: 700;
            font-size: 14px;
            color: var(--neutral-600);
            white-space: nowrap;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-item:hover {
            color: var(--primary);
            background: var(--neutral-50);
        }

        .nav-item.active {
            color: var(--primary);
            border-bottom-color: var(--primary);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #10b981 0%, #06b6d4 50%, #8b5cf6 100%);
            padding: 60px 28px;
            position: relative;
            overflow: hidden;
        }

        .hero.hidden {
            display: none;
        }

        .hero::before,
        .hero::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }

        .hero::before {
            width: 500px;
            height: 500px;
            top: -250px;
            right: -100px;
            animation: float-1 20s infinite ease-in-out;
        }

        .hero::after {
            width: 350px;
            height: 350px;
            bottom: -150px;
            left: -80px;
            animation: float-2 15s infinite ease-in-out;
        }

        @keyframes float-1 {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(-50px, 50px); }
        }

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

        .hero-inner {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.4);
            border-radius: 50%;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 18px;
            z-index: 10;
        }

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

        .hero-content {
            text-align: center;
            color: white;
        }

        .hero-title {
            font-size: 52px;
            font-weight: 900;
            margin-bottom: 18px;
            letter-spacing: -1px;
            line-height: 1.1;
        }

        .hero-subtitle {
            font-size: 20px;
            opacity: 0.95;
            margin-bottom: 42px;
            font-weight: 500;
        }

        .hero-metrics {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 24px;
            max-width: 900px;
            margin: 0 auto;
        }

        .metric-box {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: var(--border-radius-xl);
            padding: 24px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .metric-box:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
        }

        .metric-value {
            display: block;
            font-size: 40px;
            font-weight: 900;
            margin-bottom: 8px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .metric-label {
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.9;
            font-weight: 700;
        }

        /* Main Container */
        .main-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 28px;
        }

        .content-layout {
            display: grid;
            grid-template-columns: 1fr 360px;
            gap: 32px;
        }

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

        /* Controls */
        .controls {
            background: white;
            border-radius: var(--border-radius-xl);
            padding: 20px 24px;
            box-shadow: var(--shadow-sm);
            margin-bottom: 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 18px;
        }

        .filter-options {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .option-btn {
            padding: 10px 20px;
            background: var(--neutral-100);
            border: 2px solid transparent;
            border-radius: var(--border-radius-full);
            font-weight: 700;
            font-size: 14px;
            color: var(--neutral-600);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .option-btn:hover {
            background: var(--neutral-200);
            transform: translateY(-2px);
        }

        .option-btn.selected {
            background: var(--gradient-1);
            color: white;
            border-color: transparent;
            box-shadow: var(--shadow);
        }

        .controls-right {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .count-display {
            font-weight: 700;
            color: var(--neutral-500);
            font-size: 14px;
        }

        .count-display strong {
            color: var(--primary);
        }

        .layout-toggle {
            display: flex;
            background: var(--neutral-100);
            border-radius: var(--border-radius-lg);
            padding: 4px;
        }

        .layout-btn {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: var(--border-radius);
            color: var(--neutral-500);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .layout-btn:hover,
        .layout-btn.selected {
            background: white;
            color: var(--primary);
            box-shadow: var(--shadow-xs);
        }

        /* Content Grid - DESKTOP 3 COLUMNS */
        .content-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 26px;
        }

        .card {
            background: white;
            border-radius: var(--border-radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary);
        }

        .card-media {
            position: relative;
            padding-top: 56.25%;
            background: var(--neutral-200);
            overflow: hidden;
        }

        .card-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        .card-video-preview {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

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

        .media-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
            padding: 14px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .card-tags {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }

        .tag {
            padding: 6px 12px;
            border-radius: var(--border-radius);
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            backdrop-filter: blur(8px);
            letter-spacing: 0.3px;
        }

        .tag-hd {
            background: rgba(16, 185, 129, 0.95);
            color: white;
        }

        .tag-fire {
            background: rgba(249, 115, 22, 0.95);
            color: white;
        }

        .media-bottom {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }

        .duration {
            background: rgba(0, 0, 0, 0.85);
            color: white;
            padding: 6px 12px;
            border-radius: var(--border-radius);
            font-size: 13px;
            font-weight: 700;
        }

        .hd-circle {
            width: 48px;
            height: 48px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 900;
            font-size: 12px;
            box-shadow: var(--shadow-md);
        }

        .card-content {
            padding: 18px;
        }

        .card-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--neutral-900);
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.4;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .card-title:hover {
            color: var(--primary);
        }

        .card-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
            font-size: 13px;
            flex-wrap: wrap;
        }

        .user-link {
            display: flex;
            align-items: center;
            gap: 6px;
            font-weight: 700;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .user-link:hover {
            color: var(--primary-dark);
            transform: translateX(2px);
        }

        .site-badge {
            padding: 4px 10px;
            background: var(--neutral-100);
            border-radius: var(--border-radius);
            font-size: 11px;
            font-weight: 800;
            color: var(--neutral-600);
            text-transform: uppercase;
        }

        .card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 14px;
            border-top: 2px solid var(--neutral-100);
        }

        .stats {
            display: flex;
            gap: 14px;
        }

        .stat {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: var(--neutral-500);
        }

        .stat i {
            color: var(--primary);
        }

        .quick-actions {
            display: flex;
            gap: 6px;
        }

        .quick-btn {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--neutral-100);
            border-radius: var(--border-radius);
            color: var(--neutral-500);
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 13px;
        }

        .quick-btn:hover {
            background: var(--gradient-1);
            color: white;
            transform: scale(1.1);
        }

        /* Sidebar */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
            min-width: 0;
        }

        .panel {
            background: white;
            border-radius: var(--border-radius-xl);
            padding: 24px;
            box-shadow: var(--shadow-sm);
        }

        .panel-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
            padding-bottom: 14px;
            border-bottom: 2px solid var(--neutral-100);
        }

        .panel-title {
            font-size: 18px;
            font-weight: 800;
            color: var(--neutral-900);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .panel-title i {
            color: var(--primary);
            font-size: 20px;
        }

        .panel-link {
            font-size: 13px;
            font-weight: 700;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .panel-link:hover {
            color: var(--primary-dark);
        }

        /* Trending List */
        .trending-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .trending-entry {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            background: var(--neutral-50);
            border-radius: var(--border-radius-lg);
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid transparent;
        }

        .trending-entry:hover {
            background: white;
            border-color: var(--primary);
            transform: translateX(4px);
            box-shadow: var(--shadow-sm);
        }

        .rank {
            width: 32px;
            height: 32px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 900;
            font-size: 13px;
            flex-shrink: 0;
        }

        .trending-img {
            width: 56px;
            height: 56px;
            border-radius: var(--border-radius-lg);
            object-fit: cover;
            flex-shrink: 0;
        }

        .trending-info {
            flex: 1;
            min-width: 0;
        }

        .trending-name {
            font-weight: 700;
            color: var(--neutral-900);
            font-size: 14px;
            margin-bottom: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .trending-stats {
            font-size: 12px;
            color: var(--neutral-500);
        }

        .trending-arrow {
            color: var(--success);
            font-size: 16px;
            flex-shrink: 0;
        }

        /* Stats Grid */
        .info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .info-item {
            padding: 18px;
            background: var(--neutral-50);
            border-radius: var(--border-radius-lg);
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .info-item:hover {
            background: white;
            border-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: var(--shadow-sm);
        }

        .info-number {
            font-size: 26px;
            font-weight: 900;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: block;
            margin-bottom: 6px;
        }

        .info-text {
            font-size: 11px;
            color: var(--neutral-500);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 700;
        }

        /* Tags Cloud */
        .tags-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .cloud-tag {
            padding: 10px 16px;
            background: var(--neutral-50);
            border-radius: var(--border-radius-full);
            font-size: 13px;
            font-weight: 700;
            color: var(--neutral-600);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .cloud-tag:hover {
            background: var(--gradient-1);
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm);
        }

        .cloud-tag.active {
            background: var(--gradient-1);
            color: white;
            box-shadow: var(--shadow);
        }

        /* Pagination */
        .pagination-area {
            display: flex;
            justify-content: center;
            margin-top: 40px;
        }

        .pagination {
            display: flex;
            align-items: center;
            gap: 8px;
            background: white;
            padding: 14px 20px;
            border-radius: var(--border-radius-xl);
            box-shadow: var(--shadow-sm);
        }

        .page-link {
            min-width: 42px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--neutral-100);
            border-radius: var(--border-radius-lg);
            font-weight: 700;
            color: var(--neutral-600);
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .page-link:hover:not(.inactive) {
            background: var(--gradient-1);
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        .page-link.current {
            background: var(--gradient-1);
            color: white;
            box-shadow: var(--shadow);
        }

        .page-link.inactive {
            opacity: 0.3;
            cursor: not-allowed;
        }

        /* Loading State */
        .loading-area {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 100px 20px;
            background: white;
            border-radius: var(--border-radius-xl);
            box-shadow: var(--shadow-sm);
        }

        .spinner {
            width: 60px;
            height: 60px;
            border: 4px solid var(--neutral-200);
            border-top-color: var(--primary);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            margin-bottom: 20px;
        }

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

        .loading-text {
            font-size: 16px;
            font-weight: 600;
            color: var(--neutral-500);
        }

        /* Empty State */
        .empty-area {
            text-align: center;
            padding: 100px 20px;
            background: white;
            border-radius: var(--border-radius-xl);
            box-shadow: var(--shadow-sm);
        }

        .empty-icon {
            font-size: 80px;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 24px;
        }

        .empty-title {
            font-size: 28px;
            font-weight: 900;
            color: var(--neutral-900);
            margin-bottom: 12px;
        }

        .empty-desc {
            font-size: 16px;
            color: var(--neutral-500);
        }

        /* Footer */
        .footer {
            background: var(--neutral-900);
            color: white;
            padding: 60px 28px 28px;
            margin-top: 80px;
        }

        .footer-grid {
            max-width: 1400px;
            margin: 0 auto 48px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
        }

        .footer-section h3 {
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 18px;
        }

        .footer-section p {
            color: var(--neutral-400);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-link {
            color: var(--neutral-400);
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .footer-link:hover {
            color: var(--primary);
            transform: translateX(4px);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 28px;
            border-top: 1px solid var(--neutral-800);
            text-align: center;
            color: var(--neutral-500);
            font-size: 14px;
        }

        /* Cookie Notice */
        .cookie-notice {
            position: fixed;
            bottom: 24px;
            right: 24px;
            max-width: 420px;
            background: white;
            border-radius: var(--border-radius-xl);
            padding: 26px;
            box-shadow: var(--shadow-xl);
            z-index: 9999;
            border: 2px solid var(--primary);
        }

        .cookie-top {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .cookie-icon {
            font-size: 32px;
        }

        .cookie-title {
            font-size: 18px;
            font-weight: 800;
            color: var(--neutral-900);
        }

        .cookie-text {
            font-size: 14px;
            color: var(--neutral-600);
            line-height: 1.6;
            margin-bottom: 20px;
        }

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

        .cookie-button {
            flex: 1;
            padding: 12px 20px;
            border-radius: var(--border-radius-lg);
            font-weight: 700;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .cookie-decline {
            background: var(--neutral-100);
            color: var(--neutral-700);
        }

        .cookie-decline:hover {
            background: var(--neutral-200);
        }

        .cookie-accept {
            background: var(--gradient-1);
            color: white;
            box-shadow: var(--shadow);
        }

        .cookie-accept:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .content-layout {
                grid-template-columns: 1fr;
            }

            .content-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .sidebar {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }

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

        /* Mobile Styles */
        @media (max-width: 768px) {
            .alert-bar {
                font-size: 12px;
                padding: 8px 12px;
            }

            .header-container {
                padding: 12px;
                flex-wrap: wrap;
                gap: 12px;
            }

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

            .brand-name {
                font-size: 24px;
            }

            .brand-logo {
                width: 46px;
                height: 46px;
            }

            .brand-logo i {
                font-size: 22px;
            }

            .search-area {
                width: 100%;
                max-width: none;
            }

            .search-wrapper {
                padding: 3px;
            }

            .search-field {
                font-size: 14px;
                padding: 10px 16px 10px 44px;
            }

            .search-icon {
                left: 16px;
                font-size: 16px;
            }

            .search-go {
                padding: 8px 20px;
                font-size: 13px;
            }

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

            .action-icon {
                width: 44px;
                height: 44px;
            }

            .profile-btn span {
                display: none;
            }

            .nav-container {
                padding: 0 12px;
            }

            .nav-item {
                padding: 14px 16px;
                font-size: 13px;
            }

            /* Hero Mobile */
            .hero {
                padding: 30px 12px;
            }

            .hero-close {
                top: 10px;
                right: 10px;
                width: 36px;
                height: 36px;
                font-size: 16px;
            }

            .hero-title {
                font-size: 24px;
                margin-bottom: 12px;
            }

            .hero-subtitle {
                font-size: 14px;
                margin-bottom: 24px;
            }

            .hero-metrics {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }

            .metric-box {
                padding: 16px 12px;
            }

            .metric-value {
                font-size: 24px;
            }

            .metric-label {
                font-size: 10px;
            }

            /* Main Container Mobile */
            .main-container {
                padding: 20px 12px;
            }

            .content-layout {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .main-content {
                width: 100%;
            }

            /* Controls Mobile */
            .controls {
                padding: 12px;
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
            }

            .filter-options {
                width: 100%;
                overflow-x: auto;
                flex-wrap: nowrap;
                padding-bottom: 4px;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: thin;
            }

            .filter-options::-webkit-scrollbar {
                height: 4px;
            }

            .filter-options::-webkit-scrollbar-thumb {
                background: var(--neutral-300);
                border-radius: 2px;
            }

            .option-btn {
                flex-shrink: 0;
                font-size: 13px;
                padding: 8px 16px;
            }

            .controls-right {
                width: 100%;
                justify-content: space-between;
            }

            /* Content Grid Mobile - 1 COLUMN */
            .content-grid {
                display: block !important;
                grid-template-columns: none !important;
                width: 100%;
            }

            .card {
                width: 100%;
                margin-bottom: 20px;
            }

            .card:last-child {
                margin-bottom: 0;
            }

            .card-title {
                font-size: 15px;
            }

            /* MOBILE CARD META - REORGANIZED */
            .card-meta {
                display: flex;
                flex-direction: row;
                flex-wrap: nowrap;
                align-items: center;
                gap: 8px;
                margin-bottom: 12px;
                font-size: 12px;
            }

            .card-meta > * {
                flex-shrink: 0;
            }

            /* MOBILE CARD FOOTER - REORGANIZED */
            .card-footer {
                display: flex;
                flex-direction: column;
                gap: 10px;
                align-items: stretch;
                padding-top: 12px;
            }

            .stats {
                display: flex;
                justify-content: flex-start;
                gap: 12px;
                width: 100%;
            }

            .quick-actions {
                width: 100%;
                justify-content: flex-start;
            }

            /* Sidebar Mobile */
            .sidebar {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .panel {
                padding: 16px;
            }

            .panel-title {
                font-size: 16px;
            }

            .info-grid {
                gap: 10px;
            }

            .info-item {
                padding: 14px 10px;
            }

            .info-number {
                font-size: 20px;
            }

            .info-text {
                font-size: 10px;
            }

            /* Footer Mobile */
            .footer {
                padding: 40px 12px 20px;
            }

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

            /* Cookie Mobile */
            .cookie-notice {
                bottom: 12px;
                right: 12px;
                left: 12px;
                max-width: none;
                padding: 18px;
            }

            /* Pagination Mobile */
            .pagination {
                gap: 6px;
                padding: 10px 12px;
                flex-wrap: wrap;
                justify-content: center;
            }

            .page-link {
                min-width: 36px;
                height: 36px;
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 22px;
            }

            .hero-subtitle {
                font-size: 13px;
            }

            .hero-metrics {
                grid-template-columns: 1fr;
            }
        }