        body {
            background: #f8fafc;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            margin: 0;
        }
        .container{
            padding: 24px 16px;
            max-width: 1280px;
            margin: 0 auto;
        }
        .page-header {
            margin-bottom: 20px;
        }
        .page-header h1 {
            font-size: 28px;
            font-weight: 700;
            color: #0f172a;
            margin: 0 0 8px 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .page-header h1 svg { 
            color: #059669; 
        }
        .page-header p {
            color: #64748b;
            font-size: 15px;
            margin: 0;
        }
        
        /* A-Z Index - Ab Sticky Hai */
        .alphabet-wrapper {
            position: sticky;
            top: 0;
            z-index: 100;
            background: #f8fafc;
            padding: 12px 0 16px 0;
            margin: 0 -16px;
            padding-left: 16px;
            padding-right: 16px;
        }
        .alphabet-index {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            padding: 12px;
            background: white;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        }
        .alphabet-index a {
            min-width: 36px;
            height: 36px;
            padding: 0 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            text-decoration: none;
            color: #334155;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.15s ease;
        }
        .alphabet-index a:hover {
            background: #059669;
            color: white;
            border-color: #059669;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(5,150,105,0.2);
        }
        .alphabet-index a.active {
            background: #059669;
            color: white;
            border-color: #059669;
        }
        .alphabet-index a.disabled {
            background: #f1f5f9;
            color: #cbd5e1;
            cursor: not-allowed;
            pointer-events: none;
            transform: none;
            box-shadow: none;
        }
        
        .alpha-section {
            margin-bottom: 40px;
            background: white;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            padding: 20px 24px 24px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.04);
            scroll-margin-top: 100px; /* Sticky bar ke liye offset */
        }
        .alpha-title { 
            font-size: 22px; 
            font-weight: 700; 
            margin: 0 0 16px 0;
            color: #059669;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .alpha-title::after {
            content: '';
            flex: 1;
            height: 1px;
            background: linear-gradient(to right, #d1fae5, transparent);
        }
        .city-list { 
            display: grid; 
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); 
            gap: 12px; 
        }
        .city-item { 
            background: #f8fafc; 
            border-radius: 8px; 
            font-size: 14px;
            border: 1px solid #e2e8f0;
            transition: all 0.2s ease;
            overflow: hidden;
        }
        .city-item:hover {
            background: white;
            border-color: #059669;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(5,150,105,0.15);
        }
        .city-item a {
            text-decoration: none;
            color: #334155;
            display: block;
            padding: 12px 14px;
            font-weight: 500;
        }
        .city-item:hover a {
            color: #059669;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        @media (max-width: 640px) {
            .city-list { 
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); 
            }
            .alphabet-index a {
                min-width: 32px;
                height: 32px;
                font-size: 13px;
            }
            .alphabet-wrapper {
                top: 0;
            }
        }