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

        body {
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
            background: #f8fafc;
            color: #0b1120;
            overflow-x: hidden;
        }

        /* Hero Section */
        .resources-hero {
            position: relative;
            padding: 100px 0 80px;
            background: linear-gradient(135deg, #0b1120 0%, #1a2a3a 50%, #2d1b4b 100%);
            overflow: hidden;
        }

        .resources-hero .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
            color: white;
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(12px);
            padding: 8px 22px;
            border-radius: 60px;
            margin-bottom: 28px;
        }

        .hero-badge i {
            color: #ffd966;
        }

        .hero-title {
            font-size: 3.6rem;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .hero-title span {
            background: linear-gradient(135deg, #FFD966, #FF8A5C);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-description {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            color: rgba(255,255,255,0.9);
        }

        /* Stats Section */
        .stats-section {
            max-width: 1200px;
            margin: -40px auto 50px;
            padding: 0 20px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            background: white;
            border-radius: 30px;
            padding: 35px 30px;
            box-shadow: 0 20px 40px -15px rgba(0,0,0,0.1);
        }

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

        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #da0b4e, #4f46e5);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-label {
            color: #64748b;
            margin-top: 5px;
            font-size: 0.9rem;
        }

        /* Category Filter Bar */
        .category-filter-bar {
            max-width: 1200px;
            margin: 0 auto 30px;
            padding: 0 20px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px;
        }

        .category-filter-btn {
            padding: 10px 24px;
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s;
            color: #475569;
        }

        .category-filter-btn:hover {
            border-color: #da0b4e;
            color: #da0b4e;
            transform: translateY(-2px);
        }

        .category-filter-btn.active {
            background: linear-gradient(135deg, #da0b4e, #4f46e5);
            color: white;
            border-color: transparent;
        }

        /* Active Filter Info */
        .active-filter-info {
            text-align: center;
            margin-bottom: 25px;
            color: #64748b;
            font-size: 0.9rem;
        }

        .active-filter-info span {
            background: #f1f5f9;
            padding: 5px 12px;
            border-radius: 20px;
            font-weight: 600;
            color: #da0b4e;
        }

        /* Tools Grid */
        .tools-section {
            max-width: 1200px;
            margin: 0 auto 60px;
            padding: 0 20px;
        }

        .section-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #0b1120;
        }

        .section-subtitle {
            text-align: center;
            color: #64748b;
            margin-bottom: 40px;
            font-size: 1rem;
        }

        .section-title span {
            background: linear-gradient(135deg, #da0b4e, #4f46e5);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }

        .tool-card {
            background: white;
            border-radius: 24px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            border: 1px solid #eef2f6;
            position: relative;
            overflow: hidden;
        }

        .tool-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #da0b4e, #4f46e5, #ffd966);
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .tool-card:hover::before {
            transform: scaleX(1);
        }

        .tool-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 30px -12px rgba(0,0,0,0.15);
            border-color: #ffd966;
        }

        /* Logo Styles */
        .tool-logo {
            width: 70px;
            height: 70px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8fafc;
            border-radius: 16px;
            padding: 10px;
        }

        .tool-logo-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s;
        }

        .tool-card:hover .tool-logo-img {
            transform: scale(1.05);
        }

        .tool-name {
            font-size: 1.2rem;
            font-weight: 700;
            color: #0b1120;
            margin-bottom: 5px;
        }

        .tool-category {
            font-size: 0.7rem;
            color: #da0b4e;
            background: #da0b4e10;
            padding: 3px 10px;
            border-radius: 20px;
            display: inline-block;
            margin-bottom: 12px;
        }

        .tool-description {
            color: #64748b;
            font-size: 0.85rem;
            line-height: 1.5;
            margin: 12px 0;
        }

        .tool-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #da0b4e;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
            transition: gap 0.3s;
            margin-top: 10px;
        }

        .tool-link:hover {
            gap: 12px;
        }

        /* No Results Message */
        .no-results {
            grid-column: 1 / -1;
            text-align: center;
            padding: 60px;
            background: white;
            border-radius: 24px;
        }

        .no-results i {
            font-size: 4rem;
            color: #cbd5e1;
            margin-bottom: 15px;
        }

        .no-results h3 {
            color: #475569;
            margin-bottom: 8px;
        }

        .no-results p {
            color: #64748b;
        }

        /* Categories Section - Now Clickable */
        .categories-section {
            max-width: 1200px;
            margin: 0 auto 60px;
            padding: 0 20px;
        }

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

        .category-card {
            background: white;
            border-radius: 20px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s;
            border: 1px solid #eef2f6;
            cursor: pointer;
        }

        .category-card:hover {
            transform: translateY(-5px);
            border-color: #da0b4e;
            box-shadow: 0 10px 25px -12px rgba(218, 11, 78, 0.2);
        }

        .category-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #da0b4e10, #4f46e510);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 2rem;
            color: #da0b4e;
        }

        .category-card h3 {
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

        .category-card p {
            color: #64748b;
            font-size: 0.85rem;
        }

        /* Info Note */
        .info-note {
            max-width: 800px;
            margin: 0 auto 60px;
            padding: 20px 30px;
            background: #fef9e6;
            border-left: 4px solid #ffd966;
            border-radius: 16px;
            text-align: center;
        }

        .info-note i {
            color: #ffd966;
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .info-note p {
            color: #5b5b5b;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .categories-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            .tools-grid {
                grid-template-columns: 1fr;
            }
            .categories-grid {
                grid-template-columns: 1fr;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .category-filter-bar {
                gap: 8px;
            }
            .category-filter-btn {
                padding: 6px 16px;
                font-size: 0.75rem;
            }
        }

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

        .tool-card, .category-card {
            animation: fadeInUp 0.5s ease forwards;
        }