        /* ===== CSS RESET & VARIABLES ===== */
        :root {
            --cricket-green: #1B5E20;
            --cricket-blue: #0D47A1;
            --cricket-gold: #FFD700;
            --cricket-red: #D32F2F;
            --cricket-cream: #FFF8E1;
            --cricket-dark: #1A237E;
            --cricket-light: #E8F5E9;
            --search-primary: linear-gradient(135deg, #00aa44 0%, #00aa44 100%);
            --search-secondary: linear-gradient(135deg, #1B5E20 0%, #0D47A1 100%);
            --text-dark: #212121;
            --text-medium: #424242;
            --text-light: #757575;
            --bg-light: #F5F5F5;
            --bg-white: #FFFFFF;
            --border-color: #E0E0E0;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
            --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
            --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
            --radius-sm: 6px;
            --radius-md: 10px;
            --radius-lg: 16px;
            --radius-xl: 24px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            line-height: 1.7;
            color: var(--text-medium);
            background: var(--bg-light);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 800;
            color: var(--text-dark);
            line-height: 1.3;
        }

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

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul {
            list-style: none;
        }

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

        .btn {
            display: inline-block;
    padding: 6px 16px;
    border-radius: 3px;
    text-transform: uppercase;
    text-decoration: none;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    font-weight: bold;
    cursor: pointer;
        }

        .btn-primary {
            background: var(--search-primary);
            color: white;
        }

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

        .btn-search {
            background: var(--search-primary);
            color: var(--bg-white);
            font-weight: 700;
        }

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

        .btn-outline {
            background: transparent;
            border: 2px solid var(--cricket-green);
            color: var(--cricket-green);
        }

        .btn-outline:hover {
            background: var(--cricket-green);
            color: white;
        }

        .section-title {
            position: relative;
            margin-bottom: 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .section-title h2 {
            font-size: 32px;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--search-secondary);
            border-radius: 2px;
        }

        .badge {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .badge-search {
            background: var(--search-secondary);
            color: var(--text-dark);
        }

        .badge-match {
            background: var(--cricket-red);
            color: white;
        }

        .badge-relevant {
            background: var(--cricket-blue);
            color: white;
        }

        /* ===== SEARCH HERO SECTION ===== */
        .search-hero-section {
            position: relative;
            padding: 60px 0 40px;
            background: linear-gradient(135deg, rgba(21, 101, 192, 0.1) 0%, rgba(27, 94, 32, 0.1) 100%);
            overflow: hidden;
        }

        .search-hero-section:before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 800"><path fill="%231565C0" fill-opacity="0.05" d="M400 0L0 400h800L400 0zm0 800l400-400H0l400 400z"/></svg>');
            opacity: 0.3;
            z-index: 1;
        }

        .search-hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .search-breadcrumb {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 30px;
            font-size: 14px;
            color: var(--text-light);
            flex-wrap: wrap;
        }

        .search-breadcrumb a {
            color: var(--cricket-blue);
            font-weight: 500;
        }

        .search-breadcrumb a:hover {
            color: var(--cricket-green);
        }

        .search-breadcrumb .separator {
            color: var(--text-light);
        }

        .search-icons {
            width: 80px;
            height: 80px;
            background: var(--search-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            color: white;
            font-size: 32px;
            box-shadow: var(--shadow-lg);
        }

        .search-hero-content h1 {
            font-size: 42px;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

        .search-query {
            background: var(--search-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            position: relative;
            display: inline-block;
        }

        .search-query:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--search-primary);
            border-radius: 2px;
        }

        .search-description {
            font-size: 18px;
            color: var(--text-medium);
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ===== SEARCH FORM SECTION ===== */
        .search-form-section {
            padding: 40px 0 0px;
            background: var(--bg-white);
        }

        .search-form-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .search-form {
            position: relative;
        }

        .search-input-group {
            display: flex;
            gap: 10px;
            width: 100%;
        }

        .search-input {
            flex-grow: 1;
            padding: 16px 24px;
            border: 2px solid var(--border-color);
            border-radius: var(--radius-lg);
            font-size: 16px;
            font-family: 'Roboto', sans-serif;
            transition: var(--transition);
        }

        .search-input:focus {
            outline: none;
            border-color: var(--cricket-blue);
            box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
        }

        .search-button {
            padding: 16px 32px;
            min-width: 120px;
        }

        .search-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }

        .filter-btn {
            padding: 10px 20px;
            background: var(--bg-light);
            border-radius: var(--radius-md);
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            border: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .filter-btn.active {
            background: var(--cricket-green);
            color: white;
            border-color: var(--cricket-green);
        }

        .filter-btn:hover:not(.active) {
            background: #e8e8e8;
        }

        /* ===== SEARCH STATS SECTION ===== */
        .search-stats-section {
            padding: 30px 0;
            background: var(--bg-light);
        }

        .search-stats-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .search-stats {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--bg-white);
            padding: 20px 30px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            flex-wrap: wrap;
            gap: 20px;
        }

        .search-stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            flex: 1;
            min-width: 150px;
        }

        .search-stat-number {
            font-size: 36px;
            font-weight: 800;
            color: var(--cricket-blue);
            line-height: 1;
            margin-bottom: 5px;
        }

        .search-stat-label {
            font-size: 14px;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* ===== SEARCH RESULTS SECTION ===== */
        .search-results-section {
            padding: 60px 0 80px;
            background: var(--bg-white);
        }

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

        .search-results-header h2 {
            font-size: 28px;
            color: var(--text-dark);
        }

        .search-results-count {
            font-size: 16px;
            color: var(--text-light);
            background: var(--bg-light);
            padding: 10px 20px;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-color);
        }

        .search-results-count strong {
            color: var(--cricket-blue);
            font-weight: 700;
        }

        .search-results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .search-result-card {
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 1px solid var(--border-color);
            position: relative;
        }

        .search-result-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--cricket-blue);
        }

        .search-result-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--search-primary);
            z-index: 2;
        }

        .search-result-image {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .search-result-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .search-result-card:hover .search-result-image img {
            transform: scale(1.1);
        }

        .search-result-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            z-index: 2;
        }

        .search-result-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .search-result-category {
            display: inline-block;
            color: var(--cricket-blue);
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }

        .search-result-title {
            font-size: 20px;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 15px;
            flex-grow: 1;
            position: relative;
        }

        .search-result-title a:hover {
            color: var(--cricket-blue);
        }

        .search-result-excerpt {
            color: var(--text-light);
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .search-result-highlight {
            background: var(--search-secondary);
            color: var(--text-dark);
            padding: 2px 4px;
            border-radius: 3px;
            font-weight: 600;
        }

        .search-result-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: var(--text-light);
            padding-top: 15px;
            border-top: 1px solid var(--border-color);
        }

        .search-result-date {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .search-result-read {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .search-result-relevance {
            display: flex;
            align-items: center;
            gap: 5px;
            margin-top: 10px;
            font-size: 12px;
            color: var(--cricket-green);
            font-weight: 600;
        }

        .relevance-stars {
            display: flex;
            gap: 2px;
        }

        .relevance-stars i {
            color: var(--cricket-gold);
        }

        /* ===== NO RESULTS SECTION ===== */
        .no-results-section {
            padding: 80px 0;
            text-align: center;
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            margin: 40px 0;
        }

        .no-results-icon {
            width: 100px;
            height: 100px;
            background: var(--cricket-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            color: var(--cricket-red);
            font-size: 48px;
        }

        .no-results-section h2 {
            font-size: 32px;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

        .no-results-section p {
            font-size: 18px;
            color: var(--text-light);
            max-width: 500px;
            margin: 0 auto 30px;
        }

        .search-suggestions {
            background: var(--bg-light);
            padding: 30px;
            border-radius: var(--radius-lg);
            margin-top: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .search-suggestions h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .suggestion-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }

        .suggestion-item {
            padding: 10px 20px;
            background: var(--bg-white);
            border-radius: var(--radius-md);
            font-size: 14px;
            font-weight: 500;
            color: var(--cricket-blue);
            transition: var(--transition);
            border: 1px solid var(--border-color);
        }

        .suggestion-item:hover {
            background: var(--cricket-blue);
            color: white;
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        /* ===== RELATED SEARCHES SECTION ===== */
        .related-searches-section {
            padding: 40px 0;
            background: var(--bg-light);
            border-top: 1px solid var(--border-color);
        }

        .related-searches-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .related-searches-title {
            font-size: 18px;
            margin-bottom: 25px;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .related-searches-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }

        .related-search {
            padding: 10px 24px;
            background: var(--bg-white);
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            color: var(--cricket-blue);
            transition: var(--transition);
            border: 2px solid var(--border-color);
        }

        .related-search:hover {
            background: var(--cricket-blue);
            color: white;
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
            border-color: var(--cricket-blue);
        }

        /* ===== LOAD MORE SECTION ===== */
        .search-load-more-section {
            text-align: center;
            margin-top: 50px;
        }

        .search-load-more-btn {
            position: relative;
            padding: 15px 40px;
            font-size: 16px;
            overflow: hidden;
        }

        .search-load-more-btn .loading {
            display: none;
        }

        .search-load-more-btn.loading .text {
            display: none;
        }

        .search-load-more-btn.loading .loading {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .loader {
            width: 18px;
            height: 18px;
            border: 2px solid rgba(255,255,255,0.3);
            border-top-color: white;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

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

        /* ===== ADVERTISEMENT SECTION ===== */
        .ad-section {
            margin: 40px 0;
            text-align: center;
        }

        .ad-container {
            background: #f8f9fa;
            border: 1px dashed #dee2e6;
            border-radius: var(--radius-lg);
            padding: 30px;
            margin: 0 auto;
        }

        .ad-label {
            font-size: 12px;
            color: #6c757d;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 10px;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 1200px) {
            .search-results-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }

        @media (max-width: 992px) {
            .search-hero-content h1 {
                font-size: 36px;
            }
            
            .search-stats {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .search-stat-item {
                min-width: 200px;
            }
        }

        @media (max-width: 768px) {
            .search-hero-section {
                padding: 40px 0 30px;
            }
            
            .search-hero-content h1 {
                font-size: 28px;
            }
            
            .search-results-grid {
                grid-template-columns: 1fr;
            }
            
            .search-input-group {
                flex-direction: column;
            }
            
            .search-button {
                width: 100%;
            }
            
            .search-description {
                font-size: 16px;
            }
        }

        @media (max-width: 576px) {
            .container {
                padding: 0 15px;
            }
            
            .search-hero-content h1 {
                font-size: 24px;
            }
            
            .search-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }
            
            .search-stat-number {
                font-size: 28px;
            }
            
            .search-results-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .filter-btn {
                padding: 8px 15px;
                font-size: 13px;
            }
        }

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

        .animate-fade-in-up {
            animation: fadeInUp 0.6s ease-out forwards;
        }

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

        .pulse {
            animation: pulse 2s infinite;
        }

        /* ===== SCROLL PROGRESS ===== */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 4px;
            background: var(--search-primary);
            z-index: 1000;
            transition: width 0.2s ease;
        }

        /* ===== HIGHLIGHT ANIMATION ===== */
        @keyframes highlight {
            0% { background-color: transparent; }
            50% { background-color: var(--search-secondary); }
            100% { background-color: transparent; }
        }

        .highlight-term {
            animation: highlight 2s ease;
        }
