        :root {
            --bg-color: #f9f9fa;
            --text-main: #111827;
            --text-muted: #6b7280;
            --border-color: #e5e7eb;
            --accent: #2563eb;
            --card-bg: #ffffff;
			--header-bg: #fff;
			  
        --header-text: #111827;
        --header-muted: #6b7280;
        --header-border: #2563eb;
        --header-accent: #2563eb;
        }

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

        body {
            font-family: system-ui, -apple-system, sans-serif;
            background-color: var(--bg-color);
            color: var(--text-main);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }


        .page-header {
            background-color: var(--card-bg);
            border-bottom: 1px solid var(--border-color);
            padding: 4rem 2rem;
            text-align: center;
        }

        .page-header h1 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--text-main);
        }
        
        .page-header p {
            color: var(--text-muted);
            font-size: 1.125rem;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 3rem 2rem;
        }

        /* ==========================================
           ALPHABET NAV JUMP LINKS
           ========================================== */
        .alpha-nav {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 4rem;
            background: var(--card-bg);
            padding: 1.5rem;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
        }

        .alpha-nav a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background-color: #f3f4f6;
            color: var(--text-main);
            text-decoration: none;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.2s;
        }

        .alpha-nav a:hover {
            background-color: var(--accent);
            color: #fff;
            transform: translateY(-2px);
        }

        /* ==========================================
           CONTRIBUTOR GRID
           ========================================== */
        .letter-section {
            margin-bottom: 4rem;
        }

        .letter-header {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
            padding-top: 2rem;
            margin-top: -2rem;
        }

        .letter-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent);
            margin-right: 1.5rem;
            width: 40px;
        }

        .letter-header::after {
            content: "";
            flex-grow: 1;
            height: 2px;
            background-color: var(--border-color);
        }

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

        .contributor-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 1.5rem;
            text-decoration: none;
            color: var(--text-main);
            display: flex;
            flex-direction: column;
            transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
        }

        .contributor-card:hover {
            transform: translateY(-3px);
            border-color: var(--accent);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
        }

        .contributor-name {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-main);
        }

        .contributor-bio {
            font-size: 0.875rem;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex-grow: 1;
        }

        .contributor-footer {
            margin-top: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1rem;
            border-top: 1px solid #f3f4f6;
        }

        .works-badge {
            background-color: #eff6ff;
            color: var(--accent);
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 600;
        }
        
        .arrow-icon {
            color: var(--text-muted);
            transition: color 0.2s;
        }
        
        .contributor-card:hover .arrow-icon {
            color: var(--accent);
        }
		
		
		/* Shared CSS variables */
    
    .site-header {
        background-color: var(--header-bg);
        border-bottom: 2px solid var(--header-border);
        position: sticky;
        top: 0;
        z-index: 1000;
        padding: 1rem 2rem;
    }

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

    .brand-logo {
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--header-text);
        text-decoration: none;
        letter-spacing: -0.025em;
    }

    .brand-logo span {
        color: var(--header-accent);
    }

    .header-right {
        display: flex;
        align-items: center;
        gap: 2rem;
    }

    .main-nav {
        display: flex;
        gap: 2rem;
        align-items: center;
    }

    .nav-link {
        color: var(--header-muted);
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
        transition: color 0.15s ease;
        padding: 0.5rem 0;
        border-bottom: 2px solid transparent;
    }

    .nav-link:hover {
        color: var(--header-accent);
    }

    .nav-link.active {
        color: var(--header-accent);
        border-bottom-color: var(--header-accent);
    }

    /* --- Search Styles --- */
    .search-wrapper {
        position: relative;
        width: 300px;
    }

    .search-input {
        width: 100%;
        padding: 0.5rem 1rem 0.5rem 2.5rem;
        border: 1px solid var(--header-border);
        border-radius: 9999px;
        background-color: #f9f9fa;
        font-size: 0.9rem;
        transition: border-color 0.2s, box-shadow 0.2s;
        outline: none;
    }

    .search-input:focus {
        border-color: var(--header-accent);
        background-color: #fff;
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }

    .search-icon {
        position: absolute;
        left: 0.8rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--header-muted);
        pointer-events: none;
        width: 16px;
        height: 16px;
    }

    .search-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin-top: 0.5rem;
        background: #fff;
        border: 1px solid var(--header-border);
        border-radius: 12px;
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        display: none;
        max-height: 400px;
        overflow-y: auto;
    }

    .search-dropdown.active {
        display: block;
    }

    .search-group-title {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        color: var(--header-muted);
        background-color: #f9f9fa;
        border-bottom: 1px solid var(--header-border);
        border-top: 1px solid var(--header-border);
    }
    
    .search-group-title:first-child {
        border-top: none;
    }

    .search-item {
        display: block;
        padding: 0.75rem 1rem;
        text-decoration: none;
        color: var(--header-text);
        font-size: 0.9rem;
        transition: background-color 0.15s;
    }

    .search-item:hover {
        background-color: #eff6ff;
        color: var(--header-accent);
    }

    .search-item span {
        display: block;
        font-size: 0.75rem;
        color: var(--header-muted);
        margin-top: 0.1rem;
    }
	
	
	
	
	
	
.disclaimer{
    position:relative;
    display:flex;
    justify-content:center;
    margin:1rem 0;
}

.disclaimer-btn{
    border:0;
    background:#f3f3f3;
    color:#c93b3b;
    padding:4px 10px;
    border-radius:20px;
    cursor:pointer;
    font-size:.9rem;
}
.disclaimer-btn a{
    
    
    color:#c93b3b;
	font-weight:bold;
    
    
    
    
}

.disclaimer-box{
    position:absolute;
    top:110%;
    left:50%;
    transform:translateX(-50%);
    width:320px;
    max-width:90vw;
    background:#fff;
    border:1px solid #ddd;
    border-radius:8px;
    padding:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
    display:none;
    z-index:1000;
    text-align:left;
}

.disclaimer:hover .disclaimer-box{
    display:block;
}

.disclaimer.open .disclaimer-box{
    display:block;
}

@media (max-width: 768px) {

    .site-header {
        padding: 1rem;
    }

    .header-container {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .header-right {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .main-nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .search-wrapper {
        width: 100%;
    }
}