  :root {
            /* Professional Color Palette */
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --secondary: #64748b;
            --accent: #0ea5e9;
            --success: #059669;
            --warning: #d97706;
            --danger: #dc2626;
            
            /* Neutral Grays */
            --white: #ffffff;
            --gray-50: #f8fafc;
            --gray-100: #f1f5f9;
            --gray-200: #e2e8f0;
            --gray-300: #cbd5e1;
            --gray-400: #94a3b8;
            --gray-500: #64748b;
            --gray-600: #475569;
            --gray-700: #334155;
            --gray-800: #1e293b;
            --gray-900: #0f172a;
            
            /* True Dark Theme */
            --black: #000000;
            --dark-bg: #000000;
            --dark-surface: #0a0a0a;
            --dark-card: #111111;
            --dark-border: #1a1a1a;
            --dark-text: #ffffff;
            --dark-text-secondary: #e5e5e5;
            --dark-text-muted: #a3a3a3;
            
            /* Subtle Shadows */
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
            
            /* Dark Shadows */
            --dark-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
            --dark-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.4), 0 1px 2px -1px rgba(0, 0, 0, 0.4);
            --dark-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.4);
            --dark-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.4);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--gray-900);
            background-color: var(--white);
            min-height: 100vh;
            transition: all 0.3s ease;
        }
        
        /* Dark Mode - True Black with subtle accents */
        body.dark {
            background-color: #000000;
            color: var(--dark-text);
        }
        
        /* Header - Enhanced Professional Design */
        .header {
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        body.dark .header {
            background: rgba(0, 0, 0, 0.4);
            border-bottom-color: rgba(255, 255, 255, 0.1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        
        .nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }
        
        /* Logo - Minimal & Clean */
        .logo {
            font-family: 'Poppins', sans-serif;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.625rem;
            transition: all 0.3s ease;
            padding: 0.375rem 0.5rem;
            border-radius: 8px;
        }
        
        .logo:hover {
            transform: translateY(-1px);
        }
        
        .logo-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            transition: all 0.3s ease;
        }
        
        .logo:hover .logo-icon {
            transform: scale(1.05);
            color: var(--primary-dark);
        }
        
        .logo-text {
            display: flex;
            align-items: baseline;
            font-size: 1.125rem;
            font-weight: 600;
            line-height: 1;
        }
        
        .logo-main {
            color: var(--gray-900);
            font-weight: 600;
            letter-spacing: -0.01em;
            transition: color 0.3s ease;
        }
        
        .logo-tld {
            color: var(--primary);
            font-weight: 600;
            font-size: 1.125rem;
            transition: color 0.3s ease;
        }
        
        .logo:hover .logo-main {
            color: var(--primary);
        }
        
        .logo:hover .logo-tld {
            color: var(--primary-dark);
        }
        
        body.dark .logo-icon {
            color: var(--primary);
        }
        
        body.dark .logo:hover .logo-icon {
            color: #60a5fa;
        }
        
        body.dark .logo-main {
            color: #ffffff;
        }
        
        body.dark .logo-tld {
            color: var(--primary);
        }
        
        body.dark .logo:hover .logo-main {
            color: #60a5fa;
        }
        
        body.dark .logo:hover .logo-tld {
            color: #60a5fa;
        }
        
        /* Navigation Menu - Professional with Separators */
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 0;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .nav-item {
            position: relative;
        }
        
        .nav-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 20px;
            background-color: var(--gray-300);
            opacity: 0.5;
        }
        
        body.dark .nav-item:not(:last-child)::after {
            background-color: #404040;
        }
        
        .nav-link {
            color: var(--gray-700);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            padding: 0.6rem 1.2rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .nav-link:hover {
            transform: translateY(-1px);
        }
        
        .nav-link.active {
            color: var(--primary);
            font-weight: 600;
        }
        
        .nav-link i {
            font-size: 0.85rem;
        }
        
        body.dark .nav-link {
            color: #e5e5e5;
        }
        
        body.dark .nav-link.active {
            color: var(--primary);
        }
        
        /* Right Side Controls */
        .nav-controls {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        /* Search Bar - Compact */
        .search-container {
            position: relative;
            display: flex;
            align-items: center;
        }
        
        .search-input {
            width: 200px;
            padding: 0.6rem 1rem 0.6rem 2.5rem;
            border: 2px solid var(--gray-200);
            border-radius: 25px;
            background-color: var(--gray-50);
            color: var(--gray-700);
            font-size: 0.875rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            outline: none;
        }
        
        .search-input:focus {
            width: 280px;
            border-color: var(--primary);
            background-color: var(--white);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }
        
        .search-icon {
            position: absolute;
            left: 0.875rem;
            color: var(--gray-400);
            font-size: 0.875rem;
            pointer-events: none;
        }
        
        body.dark .search-input {
            background-color: #111111;
            border-color: #1a1a1a;
            color: #e5e5e5;
        }
        
        body.dark .search-input:focus {
            background-color: #0a0a0a;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
        }
        
        body.dark .search-icon {
            color: #a3a3a3;
        }
        
        /* Theme Toggle - Icon Only */
        .theme-toggle {
            background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-50) 100%);
            border: 2px solid var(--gray-200);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            color: var(--gray-700);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .theme-toggle:hover {
            background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-100) 100%);
            border-color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .theme-toggle i {
            transition: transform 0.3s ease;
            font-size: 1rem;
        }
        
        .theme-toggle:hover i {
            transform: rotate(15deg) scale(1.1);
        }
        
        .theme-toggle span {
            display: none;
        }
        
        body.dark .theme-toggle {
            background: linear-gradient(135deg, #111111 0%, #0a0a0a 100%);
            border-color: #1a1a1a;
            color: #e5e5e5;
        }
        
        body.dark .theme-toggle:hover {
            background: linear-gradient(135deg, #1a1a1a 0%, #111111 100%);
            border-color: var(--primary);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        
        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--gray-700);
            font-size: 1.25rem;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 8px;
            transition: all 0.2s ease;
        }
        
        .mobile-menu-toggle:hover {
            background-color: var(--gray-100);
            color: var(--primary);
        }
        
        body.dark .mobile-menu-toggle {
            color: #e5e5e5;
        }
        
        body.dark .mobile-menu-toggle:hover {
            background-color: #111111;
            color: var(--primary);
        }
        
        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        /* Hero Section */
        .hero {
            padding: 1.5rem 0 1rem;
            background: linear-gradient(135deg, var(--gray-50) 0%, rgba(248, 250, 252, 0.8) 100%);
            border-bottom: 1px solid var(--gray-200);
            position: relative;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(45deg, transparent 49%, rgba(37, 99, 235, 0.02) 50%, transparent 51%),
                linear-gradient(-45deg, transparent 49%, rgba(5, 150, 105, 0.015) 50%, transparent 51%);
            background-size: 60px 60px;
            opacity: 0.3;
        }
        
        body.dark .hero {
            background: linear-gradient(135deg, #0a0a0a 0%, rgba(17, 17, 17, 0.8) 100%);
            border-bottom-color: #1a1a1a;
        }
        
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
            color: var(--gray-600);
            margin-bottom: 1rem;
            position: relative;
            z-index: 10;
            padding: 0.5rem 0;
            flex-wrap: wrap;
        }
        
        .breadcrumb span {
            user-select: text !important;
            -webkit-user-select: text !important;
            -moz-user-select: text !important;
            -ms-user-select: text !important;
            white-space: nowrap;
        }
        
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            cursor: pointer;
            white-space: nowrap;
            transition: color 0.2s ease;
        }
        
        .breadcrumb a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }
        
        body.dark .breadcrumb {
            color: #a3a3a3;
        }
        
        body.dark .breadcrumb a {
            color: #60a5fa;
        }
        
        body.dark .breadcrumb a:hover {
            color: #93c5fd;
        }
        
        /* Mobile breadcrumb optimization */
        @media (max-width: 768px) {
            .breadcrumb {
                font-size: 0.8rem;
                margin-bottom: 0.75rem;
                padding: 0.25rem 0;
                gap: 0.375rem;
            }
            
            .breadcrumb span {
                max-width: 120px;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }
        }
        
        .hero-title {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 1rem;
            user-select: text !important;
            -webkit-user-select: text !important;
            -moz-user-select: text !important;
            -ms-user-select: text !important;
        }
        
        .hero-title * {
            user-select: text !important;
            -webkit-user-select: text !important;
            -moz-user-select: text !important;
            -ms-user-select: text !important;
        }
        
        body.dark .hero-title {
            color: #ffffff;
        }
        
        .hero-description {
            font-size: 1.125rem;
            color: var(--gray-600);
            max-width: 600px;
            line-height: 1.6;
            user-select: text !important;
            -webkit-user-select: text !important;
            -moz-user-select: text !important;
            -ms-user-select: text !important;
        }
        
        .hero-description * {
            user-select: text !important;
            -webkit-user-select: text !important;
            -moz-user-select: text !important;
            -ms-user-select: text !important;
        }
        
        body.dark .hero-description {
            color: #e5e5e5;
        }
        
        /* Main Content */
        .main-content {
            padding: 3rem 0;
        }
        
        /* Featured Site Card */
        .featured-site {
            background-color: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .featured-site:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
            border-color: var(--gray-300);
        }
        
        .featured-site::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--success) 100%);
            transform: scaleX(1);
            transform-origin: left;
            transition: transform 0.3s ease;
        }
        
        .featured-site:hover::before {
            transform: scaleX(1.02);
        }
        
        .featured-site::after {
            content: '';
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        body.dark .featured-site {
            background-color: #111111;
            border-color: #1a1a1a;
            box-shadow: var(--dark-shadow);
        }
        
        body.dark .featured-site:hover {
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
            border-color: #2a2a2a;
        }
        
        .site-header {
            display: flex;
            gap: 2rem;
            align-items: flex-start;
            margin-bottom: 2rem;
        }
        
        .site-screenshot {
            width: 200px;
            height: 150px;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--gray-300);
            flex-shrink: 0;
            box-shadow: var(--shadow-sm);
            background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-50) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .site-screenshot:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }
        
        .site-screenshot::before {
            content: '';
            position: absolute;
            top: 8px;
            left: 8px;
            right: 8px;
            height: 20px;
            background: linear-gradient(90deg, 
                rgba(37, 99, 235, 0.1) 0%, 
                rgba(5, 150, 105, 0.08) 50%, 
                rgba(217, 119, 6, 0.06) 100%);
            border-radius: 4px;
        }
        
        body.dark .site-screenshot {
            border-color: #1a1a1a;
            background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
        }
        
        body.dark .site-screenshot:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        }
        
        .site-screenshot img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .site-screenshot .placeholder {
            color: var(--gray-400);
            font-size: 2.5rem;
            z-index: 1;
        }
        
        body.dark .site-screenshot .placeholder {
            color: #a3a3a3;
        }
        
        .site-screenshot-container {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .site-meta-info {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .site-meta-item {
            background: var(--gray-50);
            color: var(--gray-700);
            padding: 6px 10px;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
            border: 1px solid var(--gray-200);
            transition: all 0.2s ease;
        }
        
        .site-meta-item:hover {
            background: var(--gray-100);
            border-color: var(--gray-300);
        }
        
        .site-meta-item i {
            font-size: 0.7rem;
            color: var(--primary-color);
            width: 12px;
            text-align: center;
        }
        
        body.dark .site-meta-item {
            background: #1a1a1a;
            color: #e5e5e5;
            border-color: #2a2a2a;
        }
        
        body.dark .site-meta-item:hover {
            background: #222222;
            border-color: #333333;
        }
        
        .site-added-date {
            background: var(--gray-50);
            color: var(--gray-700);
            padding: 8px 12px;
            border-radius: 8px;
            font-size: 0.8rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            border: 1px solid var(--gray-200);
            transition: all 0.2s ease;
            margin-top: 4px;
        }
        
        .site-added-date:hover {
            background: var(--gray-100);
            border-color: var(--gray-300);
        }
        
        .site-added-date i {
            font-size: 0.75rem;
            color: var(--primary-color);
        }
        
        body.dark .site-added-date {
            background: #1a1a1a;
            color: #e5e5e5;
            border-color: #2a2a2a;
        }
        
        body.dark .site-added-date:hover {
            background: #222222;
            border-color: #333333;
        }
        
        .site-info {
            flex: 1;
        }
        
        .site-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.75rem;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 0.5rem;
        }
        
        body.dark .site-title {
            color: #ffffff;
        }
        
        .site-url {
            color: var(--primary);
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            margin-bottom: 1rem;
            display: inline-block;
        }
        
        .site-url:hover {
            text-decoration: underline;
        }
        
        .site-description {
            margin-bottom: 1.5rem;
        }
        
        .main-description {
            color: var(--gray-600);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: 1rem;
        }
        
        body.dark .main-description {
            color: #e5e5e5;
        }
        
        .feature-highlights {
            margin-bottom: 1.5rem;
        }
        
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem;
            background: var(--gray-50);
            border-radius: 8px;
            border: 1px solid var(--gray-200);
            transition: all 0.3s ease;
        }
        
        .feature-item:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .feature-item i {
            color: var(--primary);
            font-size: 1.125rem;
            width: 20px;
            text-align: center;
            flex-shrink: 0;
        }
        
        .feature-item div {
            display: flex;
            flex-direction: column;
            gap: 0.125rem;
        }
        
        .feature-item strong {
            color: var(--gray-900);
            font-size: 0.875rem;
            font-weight: 600;
            line-height: 1.2;
        }
        
        .feature-item span {
            color: var(--gray-600);
            font-size: 0.75rem;
            line-height: 1.2;
        }
        
        body.dark .feature-item {
            background: #0a0a0a;
            border-color: #1a1a1a;
        }
        
        body.dark .feature-item strong {
            color: #ffffff;
        }
        
        body.dark .feature-item span {
            color: #a3a3a3;
        }
        
        .pricing-info {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
            padding: 0.75rem 1rem;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(5, 150, 105, 0.03) 100%);
            border-radius: 8px;
            border: 1px solid rgba(37, 99, 235, 0.1);
        }
        
        .price-tag {
            background: var(--success);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        .price-details {
            color: var(--gray-600);
            font-size: 0.875rem;
            font-weight: 500;
        }
        
        body.dark .pricing-info {
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
            border-color: rgba(37, 99, 235, 0.2);
        }
        
        body.dark .price-details {
            color: #e5e5e5;
        }
        
        /* Error States */
        .content-error {
            padding: 1rem;
            background: rgba(220, 38, 38, 0.1);
            border: 1px solid rgba(220, 38, 38, 0.2);
            border-radius: 8px;
            color: #dc2626;
            font-size: 0.875rem;
            text-align: center;
        }
        
        body.dark .content-error {
            background: rgba(220, 38, 38, 0.15);
            color: #f87171;
        }
        
        .site-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        
        .tag {
            background-color: var(--gray-100);
            color: var(--gray-700);
            padding: 0.375rem 0.75rem;
            border-radius: 6px;
            font-size: 0.875rem;
            font-weight: 500;
            border: 1px solid var(--gray-200);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .tag:hover {
            transform: translateY(-1px) scale(1.05);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        body.dark .tag {
            background-color: #0a0a0a;
            color: #e5e5e5;
            border-color: #1a1a1a;
        }
        
        body.dark .tag:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
        }
        
        /* Interactive Site Actions */
        .site-actions {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--gray-200);
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        body.dark .site-actions {
            border-top-color: var(--dark-border);
        }
        
        .action-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.25rem;
            border: 2px solid var(--gray-200);
            border-radius: 12px;
            background-color: var(--white);
            color: var(--gray-600);
            font-weight: 500;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }
        
        .action-btn:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        
        .like-btn.active {
            border-color: #fda4af;
            background-color: #fef7f7;
            color: #f43f5e;
        }
        
        .share-btn.active {
            border-color: #c4b5fd;
            background-color: #faf5ff;
            color: #8b5cf6;
        }
        
        .bookmark-btn.active {
            border-color: #fed7aa;
            background-color: #fffbeb;
            color: #f59e0b;
        }
        
        body.dark .action-btn {
            background-color: var(--dark-card);
            border-color: var(--dark-border);
            color: var(--dark-text-secondary);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
        
        body.dark .action-btn:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }
        
        body.dark .like-btn.active {
            background-color: rgba(244, 63, 94, 0.15);
            border-color: #fda4af;
            color: #fda4af;
        }
        
        body.dark .share-btn.active {
            background-color: rgba(139, 92, 246, 0.15);
            border-color: #c4b5fd;
            color: #c4b5fd;
        }
        
        body.dark .bookmark-btn.active {
            background-color: rgba(245, 158, 11, 0.15);
            border-color: #fed7aa;
            color: #fed7aa;
        }
        
        .like-btn .count {
            background-color: #f1f5f9;
            color: #64748b;
            padding: 0.25rem 0.5rem;
            border-radius: 8px;
            font-size: 0.75rem;
            font-weight: 600;
        }
        
        body.dark .like-btn .count {
            background-color: var(--dark-surface);
            color: var(--dark-text-muted);
        }
        
        .similarity-actions {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        
        .similarity-label {
            font-weight: 500;
            color: var(--gray-700);
            font-size: 0.875rem;
        }
        
        body.dark .similarity-label {
            color: var(--dark-text-secondary);
        }
        
        .similarity-buttons {
            display: flex;
            gap: 0.75rem;
        }
        
        .similarity-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            border: 2px solid var(--gray-300);
            border-radius: 6px;
            background-color: var(--white);
            color: var(--gray-600);
            font-weight: 500;
            font-size: 0.8rem;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .similarity-btn.active.yes-btn {
            border-color: #bbf7d0;
            background-color: #f0fdf4;
            color: #22c55e;
            font-weight: 600;
        }
        
        .similarity-btn.active.no-btn {
            border-color: #fecaca;
            background-color: #fef2f2;
            color: #f87171;
            font-weight: 600;
        }
        
        body.dark .similarity-btn {
            background-color: var(--dark-card);
            border-color: var(--dark-border);
            color: var(--dark-text-muted);
        }
        
        body.dark .similarity-btn.active.yes-btn {
            background-color: rgba(34, 197, 94, 0.15);
            border-color: #bbf7d0;
            color: #bbf7d0;
        }
        
        body.dark .similarity-btn.active.no-btn {
            background-color: rgba(248, 113, 113, 0.15);
            border-color: #fecaca;
            color: #fecaca;
        }
        
        .similarity-btn .count {
            font-weight: 700;
            font-size: 0.75rem;
        }
        
        /* Similar Sites Section */
        .similar-sites {
            margin-bottom: 3rem;
        }
        
        /* Recent Reviews Preview - Enhanced Cards */
        .recent-reviews-preview {
            margin-bottom: 3rem;
        }
        
        .preview-reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        
        .preview-review-card {
            background-color: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        .preview-review-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }
        
        .preview-review-card:hover::before {
            transform: scaleX(1);
        }
        
        .preview-review-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
            border-color: var(--gray-300);
        }
        
        body.dark .preview-review-card {
            background-color: #111111;
            border-color: #1a1a1a;
            box-shadow: var(--dark-shadow-sm);
        }
        
        body.dark .preview-review-card:hover {
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
            border-color: #2a2a2a;
        }
        
        .preview-review-header {
            margin-bottom: 1rem;
        }
        
        .preview-reviewer-info {
            display: flex;
            gap: 1rem;
            align-items: center;
        }
        
        .preview-reviewer-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1rem;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
            transition: all 0.2s ease;
        }
        
        .preview-review-card:hover .preview-reviewer-avatar {
            transform: scale(1.05);
            box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
        }
        
        .preview-reviewer-details {
            flex: 1;
        }
        
        .preview-reviewer-name {
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 0.375rem;
        }
        
        body.dark .preview-reviewer-name {
            color: var(--dark-text);
        }
        
        .preview-review-stars {
            display: flex;
            gap: 0.125rem;
            color: #fbbf24;
            font-size: 0.875rem;
        }
        
        .preview-review-content {
            position: relative;
        }
        
        .preview-review-content::before {
            content: '"';
            position: absolute;
            top: -0.5rem;
            left: -0.5rem;
            font-size: 3rem;
            color: var(--gray-200);
            font-family: 'Georgia', serif;
            line-height: 1;
            z-index: 0;
        }
        
        body.dark .preview-review-content::before {
            color: #2a2a2a;
        }
        
        .preview-review-content p {
            color: var(--gray-700);
            font-size: 0.95rem;
            line-height: 1.6;
            font-style: italic;
            position: relative;
            z-index: 1;
            margin: 0;
        }
        
        body.dark .preview-review-content p {
            color: #e5e5e5;
        }
        
        .preview-reviews-actions {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .add-review-preview-btn,
        .view-reviews-preview-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            border: 2px solid var(--primary);
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }
        
        .add-review-preview-btn {
            background-color: var(--primary);
            color: white;
        }
        
        .add-review-preview-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }
        
        .add-review-preview-btn:hover::before {
            left: 100%;
        }
        
        .add-review-preview-btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
        }
        
        .view-reviews-preview-btn {
            background-color: transparent;
            color: var(--primary);
            position: relative;
            z-index: 1;
        }
        
        .view-reviews-preview-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--primary);
            transition: left 0.3s ease;
            z-index: -1;
        }
        
        .view-reviews-preview-btn:hover::before {
            left: 0;
        }
        
        .view-reviews-preview-btn:hover {
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
        }
        
        .view-reviews-preview-btn i,
        .view-reviews-preview-btn span {
            position: relative;
            z-index: 2;
            transition: color 0.3s ease;
        }
        
        .view-reviews-preview-btn:hover i,
        .view-reviews-preview-btn:hover span {
            color: white !important;
            z-index: 2;
        }
        
        body.dark .add-review-preview-btn,
        body.dark .view-reviews-preview-btn {
            border-color: var(--primary);
        }
        
        body.dark .view-reviews-preview-btn {
            color: var(--primary);
        }
        
        body.dark .view-reviews-preview-btn:hover {
            color: white !important;
        }
        
        body.dark .view-reviews-preview-btn:hover i,
        body.dark .view-reviews-preview-btn:hover span {
            color: white !important;
            z-index: 2;
        }
        
        /* Reviews Section */
        .reviews-section {
            padding: 3rem 0;
            background-color: var(--gray-50);
            border-top: 1px solid var(--gray-200);
        }
        
        body.dark .reviews-section {
            background-color: #0a0a0a;
            border-top-color: #1a1a1a;
        }
        
        /* Modern Rating Card - Transparent & Clean */
        .modern-rating-card {
            background: transparent;
            border: none;
            border-radius: 0;
            padding: 3rem 0;
            margin-bottom: 3rem;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 4rem;
            position: relative;
        }
        
        .modern-rating-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
            opacity: 0.3;
        }
        
        body.dark .modern-rating-card {
            background: transparent;
            border: none;
        }
        
        .rating-display {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            text-align: center;
        }
        
        .stars-large {
            display: flex;
            gap: 0.375rem;
            color: #fbbf24;
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }
        
        .rating-number-large {
            font-size: 4rem;
            font-weight: 800;
            color: var(--gray-900);
            font-family: 'Poppins', sans-serif;
            line-height: 1;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        body.dark .rating-number-large {
            background: linear-gradient(135deg, #60a5fa 0%, #34d399 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .rating-label {
            color: var(--gray-600);
            font-size: 1rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        body.dark .rating-label {
            color: #a3a3a3;
        }
        
        .rating-stats-modern {
            display: flex;
            gap: 4rem;
        }
        
        .stat-modern {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
            text-align: center;
        }
        
        .stat-number-blue {
            font-size: 3.5rem;
            font-weight: 800;
            color: #3b82f6;
            font-family: 'Poppins', sans-serif;
            line-height: 1;
        }
        
        .stat-number-green {
            font-size: 3.5rem;
            font-weight: 800;
            color: #10b981;
            font-family: 'Poppins', sans-serif;
            line-height: 1;
        }
        
        .stat-label-modern {
            color: var(--gray-600);
            font-size: 1rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        body.dark .stat-label-modern {
            color: #a3a3a3;
        }
        
        /* No Reviews State - Like in the image */
        .no-reviews-state {
            background-color: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 16px;
            padding: 3rem;
            text-align: center;
            margin-bottom: 2rem;
            box-shadow: var(--shadow-sm);
        }
        
        body.dark .no-reviews-state {
            background-color: #111111;
            border-color: #1a1a1a;
            box-shadow: var(--dark-shadow-sm);
        }
        
        .no-reviews-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 1.5rem;
        }
        
        .no-reviews-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 1rem;
        }
        
        body.dark .no-reviews-title {
            color: var(--dark-text);
        }
        
        .no-reviews-text {
            color: var(--gray-600);
            font-size: 1rem;
            line-height: 1.6;
            max-width: 500px;
            margin: 0 auto 2rem;
        }
        
        body.dark .no-reviews-text {
            color: #a3a3a3;
        }
        
        .write-first-review-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.875rem 1.75rem;
            background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
            border: none;
            border-radius: 8px;
            color: white;
            font-weight: 600;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
        }
        
        .write-first-review-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
        }
        
        .reviews-summary {
            background-color: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow-sm);
        }
        
        body.dark .reviews-summary {
            background-color: #111111;
            border-color: #1a1a1a;
            box-shadow: var(--dark-shadow-sm);
        }
        
        .rating-overview {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            margin-bottom: 1.5rem;
        }
        
        .average-rating {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }
        
        .rating-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            font-family: 'Poppins', sans-serif;
        }
        
        .stars {
            display: flex;
            gap: 0.25rem;
            color: #fbbf24;
            font-size: 1.25rem;
        }
        
        .rating-text {
            color: var(--gray-600);
            font-size: 0.875rem;
            font-weight: 500;
        }
        
        body.dark .rating-text {
            color: #a3a3a3;
        }
        
        .rating-stats {
            display: flex;
            gap: 2rem;
        }
        
        .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }
        
        .stat-label {
            color: var(--gray-600);
            font-size: 0.875rem;
            font-weight: 500;
        }
        
        body.dark .stat-label {
            color: #a3a3a3;
        }
        
        .stat-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--success);
            font-family: 'Poppins', sans-serif;
        }
        
        .review-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        
        .review-filter-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            border: 2px solid var(--gray-300);
            border-radius: 20px;
            background-color: var(--white);
            color: var(--gray-600);
            font-weight: 500;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        .review-filter-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(37, 99, 235, 0.1);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.3s ease;
            z-index: 0;
        }
        
        .review-filter-btn:hover::before {
            width: 100px;
            height: 100px;
        }
        
        .review-filter-btn:hover {
            transform: translateY(-2px);
            border-color: var(--primary);
            color: var(--primary);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
        }
        
        .review-filter-btn.active {
            border-color: var(--primary);
            background-color: var(--primary);
            color: var(--white);
            box-shadow: var(--shadow-md);
            transform: scale(1.05);
        }
        
        .review-filter-btn i {
            position: relative;
            z-index: 1;
        }
        
        body.dark .review-filter-btn {
            background-color: var(--dark-card);
            border-color: var(--dark-border);
            color: var(--dark-text-secondary);
        }
        
        body.dark .review-filter-btn::before {
            background: rgba(37, 99, 235, 0.15);
        }
        
        body.dark .review-filter-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
        }
        
        /* Add Review Card - Modern & Beautiful */
        .add-review-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 2.5rem;
            margin-top: 3rem;
            margin-bottom: 3rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        .add-review-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--success) 100%);
        }
        
        .add-review-card::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .add-review-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
            border-color: rgba(37, 99, 235, 0.3);
        }
        
        body.dark .add-review-card {
            background: linear-gradient(135deg, rgba(17, 17, 17, 0.9) 0%, rgba(10, 10, 10, 0.8) 100%);
            border-color: rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }
        
        body.dark .add-review-card:hover {
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
            border-color: rgba(37, 99, 235, 0.4);
        }
        
        .add-review-header {
            margin-bottom: 2rem;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .add-review-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
        }
        
        body.dark .add-review-title {
            color: var(--dark-text);
        }
        
        .add-review-title i {
            color: var(--primary);
            font-size: 1.5rem;
        }
        
        .add-review-subtitle {
            color: var(--gray-600);
            font-size: 1rem;
        }
        
        body.dark .add-review-subtitle {
            color: #a3a3a3;
        }
        
        .add-review-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            position: relative;
            z-index: 1;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .form-group input,
        .form-group textarea {
            padding: 1rem 1.25rem;
            border: 2px solid var(--gray-200);
            border-radius: 12px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            background-color: var(--white);
            color: var(--gray-900);
            font-family: 'Inter', sans-serif;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
            transform: translateY(-1px);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        body.dark .form-group input,
        body.dark .form-group textarea {
            background-color: rgba(10, 10, 10, 0.5);
            border-color: #1a1a1a;
            color: #e5e5e5;
        }
        
        body.dark .form-group input:focus,
        body.dark .form-group textarea:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
        }
        
        .rating-input {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem;
            background: rgba(37, 99, 235, 0.03);
            border-radius: 12px;
            border: 1px solid rgba(37, 99, 235, 0.1);
        }
        
        body.dark .rating-input {
            background: rgba(37, 99, 235, 0.05);
            border-color: rgba(37, 99, 235, 0.2);
        }
        
        .rating-label {
            color: var(--gray-700);
            font-size: 1rem;
            font-weight: 600;
            text-align: center;
        }
        
        body.dark .rating-label {
            color: #e5e5e5;
        }
        
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 0.5rem;
        }
        
        .star-rating input {
            display: none;
        }
        
        .star-rating label {
            cursor: pointer;
            font-size: 2rem;
            color: var(--gray-300);
            transition: all 0.3s ease;
            transform-origin: center;
        }
        
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: #fbbf24;
            transform: scale(1.1);
        }
        
        .star-rating label:hover {
            transform: scale(1.2);
        }
        
        .rating-text {
            color: var(--gray-500);
            font-size: 0.875rem;
            text-align: center;
            font-style: italic;
        }
        
        body.dark .rating-text {
            color: #a3a3a3;
        }
        
        .character-count {
            text-align: right;
            color: var(--gray-500);
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        body.dark .character-count {
            color: #a3a3a3;
        }
        
        .form-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1.5rem;
            padding-top: 1rem;
            border-top: 1px solid var(--gray-200);
        }
        
        body.dark .form-actions {
            border-top-color: #1a1a1a;
        }
        
        .checkbox-label {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            cursor: pointer;
            font-size: 0.9rem;
            color: var(--gray-700);
            font-weight: 500;
        }
        
        body.dark .checkbox-label {
            color: #e5e5e5;
        }
        
        .checkbox-label input[type="checkbox"] {
            display: none;
        }
        
        .checkmark {
            width: 20px;
            height: 20px;
            border: 2px solid var(--gray-300);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        
        .checkbox-label input[type="checkbox"]:checked + .checkmark {
            background-color: var(--primary);
            border-color: var(--primary);
            transform: scale(1.05);
        }
        
        .checkbox-label input[type="checkbox"]:checked + .checkmark::after {
            content: '✓';
            color: white;
            font-size: 0.75rem;
            font-weight: bold;
        }
        
        body.dark .checkmark {
            border-color: #1a1a1a;
        }
        
        .submit-review-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border: none;
            border-radius: 12px;
            color: white;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .submit-review-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }
        
        .submit-review-btn:hover::before {
            left: 100%;
        }
        
        .submit-review-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
        }
        
        .submit-review-btn:active {
            transform: translateY(0);
        }
        
        .reviews-list {
            display: block;
            width: 100%;
        }
        
        .reviews-list .review-card {
            display: flex;
            flex-direction: column;
            width: 100%;
            margin-bottom: 1.25rem;
            background-color: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        .reviews-list .review-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }
        
        .reviews-list .review-card:hover::before {
            transform: scaleX(1);
        }
        
        .reviews-list .review-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border-color: var(--gray-300);
        }
        
        .reviews-list .review-card:last-child {
            margin-bottom: 0;
        }
        
        body.dark .reviews-list .review-card {
            background-color: #111111;
            border-color: #1a1a1a;
            box-shadow: var(--dark-shadow-sm);
        }
        
        body.dark .reviews-list .review-card:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            border-color: #2a2a2a;
        }
        
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1rem;
        }
        
        .reviewer-info {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }
        
        .reviewer-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 1rem;
            flex-shrink: 0;
            box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
        }
        
        .reviewer-details {
            flex: 1;
        }
        
        .reviewer-name {
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 0.25rem;
        }
        
        body.dark .reviewer-name {
            color: var(--dark-text);
        }
        
        .reviewer-role {
            color: var(--gray-600);
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
            display: block;
        }
        
        body.dark .reviewer-role {
            color: #a3a3a3;
        }
        
        .review-meta {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .review-stars {
            display: flex;
            gap: 0.125rem;
            color: #fbbf24;
            font-size: 0.875rem;
        }
        
        .review-date {
            color: var(--gray-500);
            font-size: 0.75rem;
        }
        
        body.dark .review-date {
            color: #a3a3a3;
        }
        
        .review-actions {
            display: flex;
            gap: 0.5rem;
        }
        
        .review-action-btn {
            display: flex;
            align-items: center;
            gap: 0.375rem;
            padding: 0.375rem 0.75rem;
            border: 1px solid var(--gray-300);
            border-radius: 6px;
            background-color: var(--white);
            color: var(--gray-500);
            font-size: 0.75rem;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .review-action-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-1px);
        }
        
        body.dark .review-action-btn {
            background-color: #0a0a0a;
            border-color: #1a1a1a;
            color: #a3a3a3;
        }
        
        body.dark .review-action-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
        }
        
        .review-content {
            margin-bottom: 1rem;
        }
        
        .review-content p {
            color: var(--gray-700);
            line-height: 1.6;
            font-style: italic;
        }
        
        body.dark .review-content p {
            color: #e5e5e5;
        }
        
        .review-footer {
            display: flex;
            justify-content: flex-end;
        }
        
        .verified-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.375rem;
            padding: 0.25rem 0.5rem;
            background-color: rgba(34, 197, 94, 0.1);
            color: #22c55e;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 500;
        }
        
        body.dark .verified-badge {
            background-color: rgba(34, 197, 94, 0.15);
            color: #4ade80;
        }
        
        .reviews-footer {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
        }
        
        .view-all-reviews-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 2rem;
            border: 2px solid var(--primary);
            border-radius: 12px;
            background-color: transparent;
            color: var(--primary);
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .view-all-reviews-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--primary);
            transition: left 0.3s ease;
            z-index: -1;
        }
        
        .view-all-reviews-btn:hover::before {
            left: 0;
        }
        
        .view-all-reviews-btn:hover {
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
        }
        
        .view-all-reviews-btn i {
            position: relative;
            z-index: 2;
            transition: color 0.3s ease;
        }
        
        body.dark .view-all-reviews-btn {
            border-color: var(--primary);
            color: var(--primary);
        }
        
        body.dark .view-all-reviews-btn:hover {
            color: white !important;
        }
        
        .section-header {
            margin-bottom: 2rem;
        }
        
        .section-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid var(--gray-200);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        body.dark .section-title {
            color: var(--dark-text);
            border-bottom-color: var(--dark-border);
        }
        
        .section-title i {
            color: var(--primary);
        }
        
        /* Category Filters */
        .category-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-top: 1rem;
        }
        
        .filter-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            border: 2px solid var(--gray-300);
            border-radius: 20px;
            background-color: var(--white);
            color: var(--gray-600);
            font-weight: 500;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }
        
        .filter-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(37, 99, 235, 0.1);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.3s ease;
            z-index: 0;
        }
        
        .filter-btn:hover::before {
            width: 100px;
            height: 100px;
        }
        
        .filter-btn:hover {
            transform: translateY(-2px);
            border-color: var(--primary);
            color: var(--primary);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
        }
        
        .filter-btn i {
            position: relative;
            z-index: 1;
            transition: all 0.2s ease;
        }
        
        .filter-btn:hover i {
            transform: scale(1.1);
        }
        
        .filter-btn.active {
            border-color: var(--primary);
            background-color: var(--primary);
            color: var(--white);
            box-shadow: var(--shadow-md);
            transform: scale(1.05);
        }
        
        body.dark .filter-btn {
            background-color: var(--dark-card);
            border-color: var(--dark-border);
            color: var(--dark-text-secondary);
        }
        
        body.dark .filter-btn::before {
            background: rgba(37, 99, 235, 0.15);
        }
        
        body.dark .filter-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
        }
        
        body.dark .filter-btn.active {
            background-color: var(--primary);
            color: var(--white);
        }
        
        /* Sites Grid - Clean Layout */
        .sites-grid {
            display: block !important;
            width: 100%;
        }
        
        .sites-grid .site-card {
            display: flex !important;
            flex-direction: row !important;
            width: 100% !important;
            margin-bottom: 0.75rem !important;
            background-color: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            min-height: 160px;
            padding-bottom: 50px;
        }
        
        .sites-grid .site-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border-color: var(--gray-300);
        }
        
        body.dark .sites-grid .site-card {
            background-color: #111111;
            border-color: #1a1a1a;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
        }
        
        body.dark .sites-grid .site-card:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            border-color: #2a2a2a;
        }
        
        /* Small circular rank badge in top-left corner */
        .sites-grid .site-card::before {
            content: attr(data-rank);
            position: absolute;
            top: 12px;
            left: 12px;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background-color: var(--gray-400);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.875rem;
            z-index: 10;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }
        
        /* Card Layout Components */
        .card-content {
            display: flex;
            flex: 1;
            min-height: 180px;
        }
        
        .card-left {
            flex-shrink: 0;
            width: 200px;
            padding: 1rem;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        
        .card-main {
            flex: 1;
            padding: 1rem 1rem 1rem 0;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .card-thumbnail {
            width: 100%;
            height: 120px;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--gray-300);
            background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-50) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        body.dark .card-thumbnail {
            border-color: #1a1a1a;
            background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
        }
        
        .screenshot-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            color: var(--gray-400);
            font-size: 2rem;
            position: relative;
        }
        
        .screenshot-placeholder .placeholder-text {
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--gray-500);
        }
        
        body.dark .screenshot-placeholder {
            color: #a3a3a3;
        }
        
        body.dark .screenshot-placeholder .placeholder-text {
            color: #a3a3a3;
        }
        
        /* Theme-specific placeholder colors */
        .gitlab-theme {
            background: linear-gradient(135deg, #fc6d26 0%, #e24329 100%);
            color: white;
        }
        
        .gitlab-theme .placeholder-text {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .bitbucket-theme {
            background: linear-gradient(135deg, #0052cc 0%, #003d99 100%);
            color: white;
        }
        
        .bitbucket-theme .placeholder-text {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .azure-theme {
            background: linear-gradient(135deg, #0078d4 0%, #005a9e 100%);
            color: white;
        }
        
        .azure-theme .placeholder-text {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .sourceforge-theme {
            background: linear-gradient(135deg, #ff6600 0%, #cc5200 100%);
            color: white;
        }
        
        .sourceforge-theme .placeholder-text {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .codeberg-theme {
            background: linear-gradient(135deg, #2185d0 0%, #1678c2 100%);
            color: white;
        }
        
        .codeberg-theme .placeholder-text {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .gitea-theme {
            background: linear-gradient(135deg, #609926 0%, #4d7a1f 100%);
            color: white;
        }
        
        .gitea-theme .placeholder-text {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .card-category {
            padding: 0.375rem 0.75rem;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.375rem;
            width: fit-content;
        }
        
        .devops-category {
            background-color: rgba(37, 99, 235, 0.1);
            color: var(--primary);
            border: 1px solid rgba(37, 99, 235, 0.2);
        }
        
        .collaboration-category {
            background-color: rgba(5, 150, 105, 0.1);
            color: #059669;
            border: 1px solid rgba(5, 150, 105, 0.2);
        }
        
        .enterprise-category {
            background-color: rgba(217, 119, 6, 0.1);
            color: #d97706;
            border: 1px solid rgba(217, 119, 6, 0.2);
        }
        
        .opensource-category {
            background-color: rgba(220, 38, 38, 0.1);
            color: #dc2626;
            border: 1px solid rgba(220, 38, 38, 0.2);
        }
        
        .nonprofit-category {
            background-color: rgba(139, 92, 246, 0.1);
            color: #8b5cf6;
            border: 1px solid rgba(139, 92, 246, 0.2);
        }
        
        .selfhosted-category {
            background-color: rgba(100, 116, 139, 0.1);
            color: #64748b;
            border: 1px solid rgba(100, 116, 139, 0.2);
        }
        
        body.dark .devops-category {
            background-color: rgba(37, 99, 235, 0.15);
            color: #60a5fa;
        }
        
        body.dark .collaboration-category {
            background-color: rgba(5, 150, 105, 0.15);
            color: #34d399;
        }
        
        body.dark .enterprise-category {
            background-color: rgba(217, 119, 6, 0.15);
            color: #fbbf24;
        }
        
        body.dark .opensource-category {
            background-color: rgba(220, 38, 38, 0.15);
            color: #f87171;
        }
        
        body.dark .nonprofit-category {
            background-color: rgba(139, 92, 246, 0.15);
            color: #c4b5fd;
        }
        
        body.dark .selfhosted-category {
            background-color: rgba(100, 116, 139, 0.15);
            color: #94a3b8;
        }
        
        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1rem;
        }
        
        .card-info {
            flex: 1;
        }
        
        .card-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 0.25rem;
        }
        
        body.dark .card-title {
            color: #ffffff;
        }
        
        .card-domain {
            color: var(--primary);
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
        }
        
        .card-domain:hover {
            text-decoration: underline;
        }
        
        .card-description {
            color: var(--gray-600);
            line-height: 1.6;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        
        body.dark .card-description {
            color: #e5e5e5;
        }
        
        .card-footer {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background-color: var(--gray-50);
            border-top: 1px solid var(--gray-200);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 1rem;
        }
        
        body.dark .card-footer {
            background-color: #0a0a0a;
            border-top-color: #1a1a1a;
        }
        
        .card-stats {
            display: flex;
            gap: 1rem;
        }
        
        .stat-item {
            display: flex;
            align-items: center;
            gap: 0.375rem;
            color: var(--gray-500);
            font-size: 0.75rem;
        }
        
        body.dark .stat-item {
            color: #a3a3a3;
        }
        
        .card-actions-new {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        /* Rank badge styling */
        .sites-grid .site-card::before {
            content: attr(data-rank);
            position: absolute;
            top: 12px;
            left: 12px;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background-color: var(--gray-400);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.875rem;
            z-index: 10;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .sites-grid .site-card:hover::before {
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
        }
        
        /* Rank-specific colors */
        .site-card[data-rank="1"]::before {
            background-color: #10b981; /* Green */
        }
        
        .site-card[data-rank="2"]::before {
            background-color: #3b82f6; /* Blue */
        }
        
        .site-card[data-rank="3"]::before {
            background-color: #a855f7; /* Purple */
        }
        
        .site-card[data-rank="4"]::before {
            background-color: #f59e0b; /* Orange */
        }
        
        .site-card[data-rank="5"]::before {
            background-color: #ef4444; /* Red */
        }
        
        .site-card[data-rank="6"]::before {
            background-color: #6b7280; /* Gray */
        }
        
        .sites-grid .site-card:last-child {
            margin-bottom: 0;
        }
        
        body.dark .sites-grid .site-card {
            background-color: #111111;
            border-color: #1a1a1a;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
        }
        

        
        .site-card .card-content {
            padding: 1rem;
            display: flex;
            gap: 1rem;
            align-items: flex-start;
            flex: 1;
        }
        
        .site-card .card-thumbnail {
            width: 150px;
            height: 100px;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--gray-200);
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gray-50);
            flex-shrink: 0;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            transition: all 0.2s ease;
        }
        
        .site-card .card-thumbnail:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        body.dark .site-card .card-thumbnail:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        
        /* New card-left container */
        .card-left {
            display: flex;
            flex-direction: column;
            gap: 0.5rem; /* Less gap */
            flex-shrink: 0;
            align-items: center; /* Center align everything */
        }
        
        /* Category badge below thumbnail - Modern minimal design */
        .card-left .card-category {
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            font-size: 0.7rem;
            font-weight: 500;
            border: 1px solid var(--gray-200);
            text-align: center;
            justify-content: center;
            max-width: 150px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            transition: all 0.2s ease;
            cursor: pointer;
            background-color: var(--gray-100);
            color: var(--gray-700);
            margin-top: 0.5rem;
            margin-bottom: 0.25rem;
        }
        
        .card-left .card-category:hover {
            transform: translateY(-1px);
            background-color: var(--gray-200);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }
        
        body.dark .card-left .card-category {
            background-color: #1a1a1a;
            color: #e5e5e5;
            border-color: #2a2a2a;
        }
        
        body.dark .card-left .card-category:hover {
            background-color: #2a2a2a;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }
        
        .card-left .card-category i {
            font-size: 0.65rem;
            flex-shrink: 0;
            opacity: 0.8;
        }
        
        body.dark .site-card .card-thumbnail {
            border-color: #1a1a1a;
            background: #0a0a0a;
        }
        
        .site-card .card-main {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            flex: 1;
            min-height: 80px;
        }
        
        /* Card Footer - CLEAN REWRITE */
        .site-card .card-footer {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50px;
            padding: 0 1rem;
            background-color: var(--gray-50);
            border-top: 1px solid var(--gray-200);
            border-bottom-left-radius: 12px;
            border-bottom-right-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            z-index: 2;
        }
        
        body.dark .site-card .card-footer {
            background-color: #0a0a0a;
            border-top-color: #1a1a1a;
        }
        
        /* Left side - Stats */
        .card-stats {
            display: flex !important;
            align-items: center !important;
            gap: 1rem !important;
            flex-direction: row !important;
            height: 100%;
        }
        
        .stat-item {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            color: var(--gray-500);
            font-size: 0.75rem;
        }
        
        body.dark .stat-item {
            color: #a3a3a3;
        }
        
        .stat-item {
            display: inline-flex !important;
            align-items: center !important;
            gap: 0.5rem !important;
            color: var(--gray-600);
            font-size: 0.875rem;
            font-weight: 500;
            flex-direction: row !important;
            vertical-align: middle;
        }
        
        body.dark .stat-item {
            color: #e5e5e5;
        }
        
        .stat-item i {
            font-size: 0.875rem !important;
            color: var(--gray-500);
            flex-shrink: 0;
            display: inline-block !important;
            vertical-align: middle;
            line-height: 1;
        }
        
        body.dark .stat-item i {
            color: #a3a3a3;
        }
        
        .stat-item span {
            display: inline-block !important;
            vertical-align: middle;
            line-height: 1;
            white-space: nowrap;
        }
        
        /* Right side - Actions */
        .card-actions-new {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        
        
        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 1rem;
        }
        
        .card-info {
            flex: 1;
            min-width: 0;
        }
        
        /* Screenshot Placeholders with Sweet Colors */
        .screenshot-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.25rem;
            border-radius: 8px;
        }
        
        .screenshot-placeholder i {
            font-size: 1.25rem;
            margin-bottom: 0.25rem;
        }
        
        .placeholder-text {
            font-size: 0.6rem;
            font-weight: 500;
            opacity: 0.9;
        }
        
        .gitlab-theme {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            color: #d97706;
        }
        
        .bitbucket-theme {
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
            color: #2563eb;
        }
        
        .azure-theme {
            background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
            color: #4f46e5;
        }
        
        .sourceforge-theme {
            background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
            color: #ea580c;
        }
        
        .codeberg-theme {
            background: linear-gradient(135deg, #ccfbf1 0%, #99f6e4 100%);
            color: #0d9488;
        }
        
        .gitea-theme {
            background: linear-gradient(135deg, #d9f99d 0%, #bef264 100%);
            color: #65a30d;
        }
        
        body.dark .gitlab-theme {
            background: linear-gradient(135deg, rgba(254, 243, 199, 0.15) 0%, rgba(253, 230, 138, 0.15) 100%);
            color: #fde68a;
        }
        
        body.dark .bitbucket-theme {
            background: linear-gradient(135deg, rgba(219, 234, 254, 0.15) 0%, rgba(191, 219, 254, 0.15) 100%);
            color: #bfdbfe;
        }
        
        body.dark .azure-theme {
            background: linear-gradient(135deg, rgba(224, 231, 255, 0.15) 0%, rgba(199, 210, 254, 0.15) 100%);
            color: #c7d2fe;
        }
        
        body.dark .sourceforge-theme {
            background: linear-gradient(135deg, rgba(254, 215, 170, 0.15) 0%, rgba(253, 186, 116, 0.15) 100%);
            color: #fdba74;
        }
        
        body.dark .codeberg-theme {
            background: linear-gradient(135deg, rgba(204, 251, 241, 0.15) 0%, rgba(153, 246, 228, 0.15) 100%);
            color: #99f6e4;
        }
        
        body.dark .gitea-theme {
            background: linear-gradient(135deg, rgba(217, 249, 157, 0.15) 0%, rgba(190, 242, 100, 0.15) 100%);
            color: #bef264;
        }
        
        .card-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .card-screenshot-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }

        .card-info {
            flex: 1;
        }
        
        .card-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 0.25rem;
        }
        
        body.dark .card-title {
            color: var(--dark-text);
        }
        
        .card-domain {
            color: var(--primary);
            font-size: 0.9rem;
            text-decoration: none;
            margin-bottom: 0.75rem;
            display: inline-block;
            font-weight: 500;
        }
        
        .card-domain:hover {
            text-decoration: underline;
        }
        
        .card-description {
            color: var(--gray-600);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }
        
        body.dark .card-description {
            color: var(--dark-text-muted);
        }

        
        /* Professional Similarity Score */
        .similarity-score {
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.875rem;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 0.375rem;
            position: relative;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            overflow: hidden;
        }
        
        .similarity-score::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }
        
        .similarity-score:hover::after {
            left: 100%;
        }
        
        .similarity-score:hover {
            transform: translateY(-1px) scale(1.05);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        
        .similarity-score::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            flex-shrink: 0;
        }
        
        .high-similarity {
            background-color: #f0fdf4;
            color: #15803d;
            border: 1px solid #bbf7d0;
        }
        
        .high-similarity::before {
            background-color: #22c55e;
        }
        
        .medium-similarity {
            background-color: #fffbeb;
            color: #d97706;
            border: 1px solid #fed7aa;
        }
        
        .medium-similarity::before {
            background-color: #f59e0b;
        }
        
        .low-similarity {
            background-color: #fef2f2;
            color: #dc2626;
            border: 1px solid #fecaca;
        }
        
        .low-similarity::before {
            background-color: #ef4444;
        }
        
        body.dark .high-similarity {
            background-color: rgba(34, 197, 94, 0.1);
            color: #4ade80;
            border-color: rgba(34, 197, 94, 0.3);
        }
        
        body.dark .medium-similarity {
            background-color: rgba(245, 158, 11, 0.1);
            color: #fbbf24;
            border-color: rgba(245, 158, 11, 0.3);
        }
        
        body.dark .low-similarity {
            background-color: rgba(239, 68, 68, 0.1);
            color: #f87171;
            border-color: rgba(239, 68, 68, 0.3);
        }

        


        
        /* Action Icons */
        .action-icon {
            width: 32px;
            height: 32px;
            border-radius: 6px;
            border: 1px solid var(--gray-300);
            background-color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            color: var(--gray-500);
            flex-shrink: 0; /* Don't shrink */
            position: relative;
            overflow: hidden;
        }
        
        .action-icon::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(37, 99, 235, 0.1);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.3s ease;
            z-index: 0;
        }
        
        .action-icon:hover::before {
            width: 40px;
            height: 40px;
        }
        
        .action-icon:hover {
            transform: translateY(-2px) scale(1.05);
            border-color: var(--primary);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
        }
        
        .action-icon i {
            position: relative;
            z-index: 1;
            transition: all 0.2s ease;
        }
        
        .action-icon:hover i {
            transform: scale(1.1);
        }
        
        .action-icon.active {
            border-color: var(--primary);
            background-color: var(--primary);
            color: var(--white);
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
        }
        
        body.dark .action-icon {
            border-color: #1a1a1a;
            background-color: #111111;
            color: #a3a3a3;
        }
        
        body.dark .action-icon::before {
            background: rgba(37, 99, 235, 0.15);
        }
        
        body.dark .action-icon:hover {
            border-color: var(--primary);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
        }
        
        body.dark .action-icon.active {
            background-color: var(--primary);
            color: var(--white);
        }
        
        .similarity-rating {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0.75rem;
            border-radius: 6px;
            background-color: var(--gray-50);
            border: 1px solid var(--gray-200);
            flex-shrink: 0; /* Don't shrink */
            white-space: nowrap; /* Keep text on one line */
        }
        
        body.dark .similarity-rating {
            background-color: #0a0a0a;
            border-color: #1a1a1a;
        }
        
        .rating-label {
            font-size: 0.8rem;
            color: var(--gray-600);
            font-weight: 500;
        }
        
        body.dark .rating-label {
            color: #e5e5e5;
        }
        
        .rating-buttons {
            display: flex;
            gap: 0.25rem;
        }
        
        .rating-btn {
            width: 24px;
            height: 24px;
            border-radius: 4px;
            border: 1px solid var(--gray-300);
            background-color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 0.75rem;
            position: relative;
            overflow: hidden;
        }
        
        .rating-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.3s ease;
            z-index: 0;
        }
        
        .rating-btn:hover::before {
            width: 30px;
            height: 30px;
        }
        
        .rating-btn:hover {
            transform: translateY(-1px) scale(1.1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        
        .rating-btn i {
            position: relative;
            z-index: 1;
            transition: all 0.2s ease;
        }
        
        .rating-btn:hover i {
            transform: scale(1.2);
        }
        
        .rating-btn.positive {
            color: var(--gray-500);
        }
        
        .rating-btn.positive::before {
            background: rgba(34, 197, 94, 0.1);
        }
        
        .rating-btn.positive:hover {
            border-color: #bbf7d0;
            color: #22c55e;
        }
        
        .rating-btn.positive.active {
            border-color: #22c55e;
            background-color: #22c55e;
            color: white;
            transform: scale(1.15);
            box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
        }
        
        .rating-btn.negative {
            color: var(--gray-500);
        }
        
        .rating-btn.negative::before {
            background: rgba(239, 68, 68, 0.1);
        }
        
        .rating-btn.negative:hover {
            border-color: #fecaca;
            color: #ef4444;
        }
        
        .rating-btn.negative.active {
            border-color: #ef4444;
            background-color: #ef4444;
            color: white;
            transform: scale(1.15);
            box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
        }
        
        body.dark .rating-btn {
            border-color: #1a1a1a;
            background-color: #111111;
            color: #a3a3a3;
        }
        
        /* Footer - Professional & E-E-A-T Compliant */
        .footer {
            background: linear-gradient(135deg, var(--gray-900) 0%, #0f172a 100%);
            margin-top: 4rem;
            padding: 3rem 0 1.5rem;
            color: var(--white);
            position: relative;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        }
        
        body.dark .footer {
            background: linear-gradient(135deg, var(--black) 0%, #000000 100%);
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }
        
        .footer-main {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
        }
        
        .footer-brand {
            max-width: 400px;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }
        
        .footer-logo .logo-icon {
            color: var(--primary);
        }
        
        .footer-logo-text {
            font-family: 'Poppins', sans-serif;
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--white);
        }
        
        .footer-description {
            color: var(--gray-300);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
        }
        
        .footer-trust-indicators {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--gray-400);
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        .trust-item i {
            color: var(--primary);
            font-size: 0.75rem;
        }
        
        .footer-links-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        
        .footer-column-title {
            font-family: 'Poppins', sans-serif;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        
        .footer-links a {
            color: var(--gray-400);
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 400;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .footer-links a:hover {
            color: var(--white);
            transform: translateX(2px);
        }
        
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            gap: 2rem;
        }
        
        .footer-bottom-left {
            flex: 1;
        }
        
        .copyright {
            color: var(--gray-400);
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        
        .footer-note {
            color: var(--gray-500);
            font-size: 0.75rem;
            font-style: italic;
            margin: 0;
        }
        
        .footer-bottom-right {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        
        .footer-social {
            display: flex;
            gap: 0.75rem;
        }
        
        .social-link {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-400);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.875rem;
        }
        
        .social-link:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--white);
            transform: translateY(-2px);
        }
        
        .back-to-top {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: var(--primary);
            border: none;
            color: var(--white);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.875rem;
        }
        
        .back-to-top:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }
        
        /* Responsive Footer */
        @media (max-width: 768px) {
            .footer {
                padding: 2rem 0 1rem;
                margin-top: 3rem;
            }
            
            .footer-main {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .footer-links-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .footer-trust-indicators {
                flex-direction: column;
                gap: 0.75rem;
            }
            
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 1.5rem;
            }
            
            .footer-bottom-right {
                width: 100%;
                justify-content: space-between;
            }
        }
        
        @media (max-width: 480px) {
            .footer-links-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            
            .footer-social {
                gap: 0.5rem;
            }
            
            .social-link {
                width: 32px;
                height: 32px;
                font-size: 0.8rem;
            }
            
            .back-to-top {
                width: 36px;
                height: 36px;
            }
        }
        
        /* Responsive Design - Professional Mobile First */
        @media (max-width: 1024px) {
            .nav {
                padding: 0 1.5rem;
            }
            
            .search-input {
                width: 180px;
            }
            
            .search-input:focus {
                width: 220px;
            }
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }
            
            .nav {
                padding: 0 1rem;
                position: relative;
            }
            
            /* Mobile Navigation - Professional Hamburger Menu */
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: var(--white);
                border-left: 1px solid var(--gray-200);
                box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
                flex-direction: column;
                gap: 0;
                padding: 5rem 0 2rem;
                z-index: 1001;
                transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                overflow-y: auto;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            body.dark .nav-menu {
                background: #111111;
                border-left-color: #1a1a1a;
                box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
            }
            
            .nav-item {
                width: 100%;
            }
            
            .nav-item:not(:last-child)::after {
                display: none;
            }
            
            .nav-link {
                padding: 1.2rem 2rem;
                border-radius: 0;
                justify-content: flex-start;
                gap: 1rem;
                width: 100%;
                font-size: 1rem;
                border-bottom: 1px solid var(--gray-100);
            }
            
            .nav-link:hover {
                background-color: var(--gray-50);
                transform: translateX(5px);
            }
            
            .nav-link.active {
                background-color: rgba(37, 99, 235, 0.05);
                border-left: 3px solid var(--primary);
            }
            
            body.dark .nav-link {
                border-bottom-color: #1a1a1a;
            }
            
            body.dark .nav-link:hover {
                background-color: #0a0a0a;
            }
            
            body.dark .nav-link.active {
                background-color: rgba(37, 99, 235, 0.1);
            }
            
            /* Mobile Menu Overlay */
            .mobile-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.5);
                z-index: 1000;
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
            }
            
            .mobile-overlay.active {
                opacity: 1;
                visibility: visible;
            }
            
            /* Hamburger Menu Button */
            .mobile-menu-toggle {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                width: 40px;
                height: 40px;
                background: none;
                border: none;
                cursor: pointer;
                padding: 0;
                z-index: 1002;
                position: relative;
            }
            
            .hamburger-line {
                width: 24px;
                height: 2px;
                background-color: var(--gray-700);
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                transform-origin: center;
            }
            
            .hamburger-line:nth-child(1) {
                margin-bottom: 5px;
            }
            
            .hamburger-line:nth-child(2) {
                margin-bottom: 5px;
            }
            
            /* Hamburger Animation */
            .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            
            .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
                opacity: 0;
            }
            
            .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }
            
            body.dark .hamburger-line {
                background-color: #e5e5e5;
            }
            
            .nav-controls {
                gap: 0.75rem;
            }
            
            .search-container {
                display: none;
            }
            
            .theme-toggle {
                width: 36px;
                height: 36px;
            }
            
            .theme-toggle i {
                font-size: 0.9rem;
            }
            
            .logo {
                padding: 0.25rem 0.375rem;
            }
            
            .logo-text {
                font-size: 1rem;
            }
            
            .logo-icon svg {
                width: 24px;
                height: 24px;
            }
            
            /* Content Responsive */
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-description {
                font-size: 1rem;
            }
            
            .site-header {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }
            
            .site-screenshot {
                width: 100%;
                max-width: 200px;
                height: 120px;
                margin: 0 auto;
            }
            
            .loading-skeleton {
                grid-template-columns: 1fr;
                gap: 0.75rem;
            }
            
            .skeleton-item {
                height: 50px;
            }
            
            .skeleton-price {
                width: 150px;
                height: 35px;
            }
            
            .feature-grid {
                grid-template-columns: 1fr;
                gap: 0.75rem;
            }
            
            .pricing-info {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }
            
            .site-actions {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }
            
            .category-filters {
                justify-content: center;
                gap: 0.5rem;
            }
            
            .filter-btn {
                font-size: 0.8rem;
                padding: 0.4rem 0.8rem;
            }
            
            /* Fixed Site Card Mobile Layout */
            .sites-grid .site-card {
                flex-direction: column !important;
                min-height: auto !important;
                padding-bottom: 50px;
                margin-bottom: 0.75rem !important;
            }
            
            .card-content {
                flex-direction: column !important;
                min-height: auto !important;
                padding: 1rem !important;
            }
            
            .card-left {
                width: 100% !important;
                padding: 0 !important;
                align-items: center;
            }
            
            .card-main {
                padding: 0.5rem 0 0 !important;
            }
            
            .card-thumbnail {
                width: 100%;
                max-width: 200px;
                height: 120px;
            }
            
            .card-category {
                margin-top: 0.5rem !important;
                margin-bottom: 0.25rem !important;
                font-size: 0.65rem !important;
                padding: 0.2rem 0.4rem !important;
            }
            
            .card-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.25rem;
                text-align: left;
            }
            
            .card-footer {
                position: absolute !important;
                bottom: 0 !important;
                left: 0 !important;
                right: 0 !important;
                height: 50px !important;
                flex-direction: row !important;
                justify-content: space-between !important;
                align-items: center !important;
                padding: 0 1rem !important;
                margin-top: 0 !important;
            }
            
            .card-stats {
                gap: 0.75rem !important;
            }
            
            .stat-item {
                font-size: 0.7rem !important;
            }
            
            .card-actions-new {
                flex-direction: row !important;
                gap: 0.5rem !important;
            }
            
            .similarity-rating {
                display: none; /* Hide on mobile for space */
            }
            
            /* Reviews Mobile */
            .preview-reviews-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .modern-rating-card {
                flex-direction: column;
                gap: 3rem;
                text-align: center;
                padding: 2rem 0;
            }
            
            .rating-stats-modern {
                gap: 3rem;
            }
            
            .rating-number-large {
                font-size: 3rem;
            }
            
            .stat-number-blue,
            .stat-number-green {
                font-size: 2.5rem;
            }
            
            .no-reviews-state {
                padding: 2rem 1rem;
            }
            
            .add-review-card {
                margin: 0 0.5rem 2rem;
                padding: 2rem 1.5rem;
                border-radius: 16px;
            }
            
            .add-review-title {
                font-size: 1.5rem;
            }
            
            .form-row {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .rating-input {
                padding: 1rem;
            }
            
            .star-rating {
                gap: 0.25rem;
            }
            
            .star-rating label {
                font-size: 1.5rem;
            }
            
            .form-actions {
                flex-direction: column;
                align-items: stretch;
                gap: 1rem;
            }
            
            .submit-review-btn {
                width: 100%;
                justify-content: center;
                padding: 1rem;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .nav {
                padding: 0 0.75rem;
            }
            
            .logo {
                padding: 0.25rem;
            }
            
            .logo-text {
                font-size: 0.9rem;
            }
            
            .logo-icon svg {
                width: 20px;
                height: 20px;
            }
            
            .hero-title {
                font-size: 1.75rem;
            }
            
            .nav-menu {
                width: 100%;
                right: -100%;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .theme-toggle {
                width: 32px;
                height: 32px;
            }
            
            .theme-toggle i {
                font-size: 0.8rem;
            }
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }
        
        @keyframes heartBeat {
            0% {
                transform: scale(1);
            }
            14% {
                transform: scale(1.3);
            }
            28% {
                transform: scale(1);
            }
            42% {
                transform: scale(1.3);
            }
            70% {
                transform: scale(1);
            }
        }
        
        .animate-in {
            animation: fadeInUp 0.6s ease-out;
        }
        
        .pulse-animation {
            animation: pulse 0.3s ease;
        }
        
        .heart-beat {
            animation: heartBeat 1.3s ease-in-out;
        }

        
        /* Subtle Background Patterns */
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(5, 150, 105, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(217, 119, 6, 0.015) 0%, transparent 50%);
            pointer-events: none;
        }
        
        body.dark .hero::after {
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(5, 150, 105, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(217, 119, 6, 0.02) 0%, transparent 50%);
        }
        
        /* Screen Reader Only Labels */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
/* Alternative Website Cards - No Cursor */
.site-card.no-cursor {
    cursor: default !important;
}

.site-card.no-cursor:hover {
    cursor: default !important;
}

/* Domain with External Link */
.domain-with-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.external-link-icon {
    color: #666;
    font-size: 12px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    text-decoration: none;
}

.external-link-icon:hover {
    opacity: 1;
    color: var(--primary);
    text-decoration: none;
}

/* Screenshot Link */
.screenshot-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.screenshot-link:hover {
    text-decoration: none;
}
/* Category Link */
.card-category {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.card-category:hover {
    opacity: 0.8;
    text-decoration: none;
}