
:root {
    /* Modern Color Palette */
    --metric-blue: #2563eb;
    --metric-green: #059669;
    --metric-amber: #d97706;
    --metric-red: #dc2626;
    --metric-cyan: #0891b2;
    --metric-gray-50: #f9fafb;
    --metric-gray-100: #f3f4f6;
    --metric-gray-200: #e5e7eb;
    --metric-gray-300: #d1d5db;
    --metric-gray-400: #9ca3af;
    --metric-gray-500: #6b7280;
    --metric-gray-600: #4b5563;
    --metric-gray-700: #374151;
    --metric-gray-800: #1f2937;
    /* Ultra Compact Spacing */
    --space-xxs: 0.125rem; /* 2px */
    --space-xs: 0.25rem; /* 4px */
    --space-sm: 0.375rem; /* 6px */
    --space-md: 0.5rem; /* 8px */
    --space-lg: 0.75rem; /* 12px */
    --space-xl: 1rem; /* 16px */
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    color: var(--metric-gray-700);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== METRICS BLOCK ===== */
.metrics-block {
    width: 100%;
    max-width: 400px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--metric-gray-200);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

    .metrics-block:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    }

/* Header */
.metrics-header {
    background: linear-gradient(135deg, var(--metric-gray-800) 0%, var(--metric-gray-900) 100%);
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.metrics-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.metrics-title-text {
    font-weight: 600;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.metrics-title-icon {
    opacity: 0.8;
}

.metrics-subtitle {
    color: var(--metric-gray-400);
    margin-top: var(--space-xs);
    line-height: 1.3;
}

/* Metrics Container */
.metrics-container {
    padding: var(--space-sm);
}

/* Individual Metric Item */
.metric-item {
    display: flex;
    align-items: center;
    padding: var(--space-sm);
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--metric-gray-200);
    margin-bottom: var(--space-sm);
    transition: all var(--transition-fast);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    .metric-item:last-child {
        margin-bottom: 0;
    }

    .metric-item:hover {
        border-color: var(--metric-gray-300);
        transform: translateX(4px);
        box-shadow: var(--shadow-md);
    }

/* Image Column */
.metric-image-col {
    flex-shrink: 0;
    width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: var(--space-sm);
}

.metric-image-wrapper {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: var(--metric-gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--metric-gray-200);
    transition: all var(--transition-fast);
    overflow: hidden;
}

.metric-item:hover .metric-image-wrapper {
    transform: scale(1.08);
    border-color: var(--metric-gray-300);
}

.metric-image {
    max-height: 48px;
    max-width: 48px;
    height: auto;
    width: auto;
    object-fit: contain;
    filter: grayscale(0.2);
    transition: filter var(--transition-fast);
}

.metric-item:hover .metric-image {
    filter: grayscale(0);
}

/* Content Column */
.metric-content-col {
    flex: 1;
    min-width: 0; /* Prevent overflow */
}

.metric-title-row {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-xs);
}

.metric-title {
    font-weight: 600;
    color: var(--metric-gray-800);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.metric-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.badge-crossref {
    background: rgba(37, 99, 235, 0.15);
    color: var(--metric-blue);
}

.badge-scholar {
    background: rgba(5, 150, 105, 0.15);
    color: var(--metric-green);
}

.badge-issn {
    background: rgba(217, 119, 6, 0.15);
    color: var(--metric-amber);
}

.badge-sjiif {
    background: rgba(220, 38, 38, 0.15);
    color: var(--metric-red);
}

.badge-hindex {
    background: rgba(8, 145, 178, 0.15);
    color: var(--metric-cyan);
}

.metric-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-weight: 500;
    text-decoration: none;
    color: var(--metric-gray-600);
    transition: color var(--transition-fast);
    padding: var(--space-xxs) var(--space-xs);
    border-radius: var(--radius-sm);
    background: var(--metric-gray-50);
    width: fit-content;
}

.metric-item:hover .metric-link {
    color: var(--metric-gray-800);
    background: var(--metric-gray-100);
}

.metric-link-icon {
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.metric-item:hover .metric-link-icon {
    opacity: 1;
}

.metric-description {
    color: var(--metric-gray-500);
    line-height: 1.3;
    margin-top: var(--space-xs);
    display: none; /* Hidden by default for compactness */
}

.metric-item:hover .metric-description {
    display: block;
    animation: fadeIn var(--transition-normal) ease-out;
}

/* Hover Indicator */
.metric-hover-indicator {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: transparent;
    transition: background var(--transition-fast);
}

.metric-item[data-metric="crossref"]:hover .metric-hover-indicator {
    background: var(--metric-blue);
}

.metric-item[data-metric="googleScholar"]:hover .metric-hover-indicator {
    background: var(--metric-green);
}

.metric-item[data-metric="issn"]:hover .metric-hover-indicator {
    background: var(--metric-amber);
}

.metric-item[data-metric="sjiif"]:hover .metric-hover-indicator {
    background: var(--metric-red);
}

.metric-item[data-metric="hindex"]:hover .metric-hover-indicator {
    background: var(--metric-cyan);
}

/* Footer */
.metrics-footer {
    padding: var(--space-sm) var(--space-md);
    background: var(--metric-gray-50);
    border-top: 1px solid var(--metric-gray-200);
    text-align: center;
}

.metrics-note {
    color: var(--metric-gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
}

.metrics-note-icon {
    font-size: 0.625rem;
    opacity: 0.6;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.metric-item {
    animation: fadeIn 0.3s ease-out backwards;
}

    .metric-item:nth-child(1) {
        animation-delay: 0.05s;
    }

    .metric-item:nth-child(2) {
        animation-delay: 0.1s;
    }

    .metric-item:nth-child(3) {
        animation-delay: 0.15s;
    }

    .metric-item:nth-child(4) {
        animation-delay: 0.2s;
    }

    .metric-item:nth-child(5) {
        animation-delay: 0.25s;
    }

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
    body {
        padding: var(--space-sm);
        align-items: flex-start;
    }

    .metrics-block {
        max-width: 100%;
        border-radius: var(--radius-md);
    }

    .metrics-header {
        padding: var(--space-sm) var(--space-md);
    }

    .metric-image-col {
        width: 56px;
    }

    .metric-image-wrapper {
        width: 48px;
        height: 48px;
    }

    .metric-image {
        max-height: 40px;
        max-width: 40px;
    }

    .metric-title {
        font-size: 0.75rem;
    }

    .metric-link {
        font-size: 0.6875rem;
    }

    .metrics-footer {
        padding: var(--space-xs) var(--space-sm);
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    body {
        background: white;
        padding: 0;
    }

    .metrics-block {
        box-shadow: none;
        border: 1px solid #ddd;
        max-width: 100%;
    }

    .metric-item:hover {
        transform: none;
        box-shadow: none;
        border-color: #ddd;
    }

    .metric-link {
        color: #000;
        text-decoration: underline;
        background: none;
    }

    .metrics-footer {
        display: none;
    }
}
      /* Ultra-Compact Academic Metrics Block */
        .metrics-block {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            max-width: 100%;
            margin: 0 auto;
        }
        
        .metrics-header {
            background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
            padding: 12px 16px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .metrics-title {
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: white;
        }
        
        .metrics-title-text {
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .metrics-title-text::before {
            content: "📊";
            font-size: 16px;
        }
        
        .metrics-title-icon::before {
            content: "ℹ️";
            font-size: 14px;
            opacity: 0.7;
        }
        
        .metrics-subtitle {
            font-size: 12px;
            color: #9ca3af;
            margin-top: 4px;
            line-height: 1.3;
        }
        
        .metrics-container {
            padding: 8px;
        }
        
        .metric-item {
            display: flex;
            align-items: center;
            padding: 10px 12px;
            background: white;
            border-radius: 6px;
            border: 1px solid #e5e7eb;
            margin-bottom: 6px;
            transition: all 0.2s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        .metric-item:last-child {
            margin-bottom: 0;
        }
        
        .metric-item:hover {
            border-color: #d1d5db;
            transform: translateX(3px);
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }
        
        .metric-hover-indicator {
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: transparent;
            transition: background 0.2s ease;
        }
        
        .metric-item[data-metric="crossref"]:hover .metric-hover-indicator { background: #2563eb; }
        .metric-item[data-metric="googleScholar"]:hover .metric-hover-indicator { background: #059669; }
        .metric-item[data-metric="issn"]:hover .metric-hover-indicator { background: #d97706; }
        .metric-item[data-metric="sjiif"]:hover .metric-hover-indicator { background: #dc2626; }
        .metric-item[data-metric="hindex"]:hover .metric-hover-indicator { background: #0891b2; }
        
        .metric-image-col {
            flex-shrink: 0;
            width: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-right: 12px;
        }
        
        .metric-image-wrapper {
            width: 48px;
            height: 48px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: bold;
            transition: all 0.2s ease;
        }
        
        .metric-item[data-metric="crossref"] .metric-image-wrapper {
            background: #eff6ff;
            color: #2563eb;
            border: 2px solid #dbeafe;
        }
        
        .metric-item[data-metric="googleScholar"] .metric-image-wrapper {
            background: #ecfdf5;
            color: #059669;
            border: 2px solid #d1fae5;
        }
        
        .metric-item[data-metric="issn"] .metric-image-wrapper {
            background: #fffbeb;
            color: #d97706;
            border: 2px solid #fef3c7;
        }
        
        .metric-item[data-metric="sjiif"] .metric-image-wrapper {
            background: #fef2f2;
            color: #dc2626;
            border: 2px solid #fee2e2;
        }
        
        .metric-item[data-metric="hindex"] .metric-image-wrapper {
            background: #ecfeff;
            color: #0891b2;
            border: 2px solid #cffafe;
        }
        
        .metric-item:hover .metric-image-wrapper {
            transform: scale(1.1);
        }
        
        .metric-content-col {
            flex: 1;
            min-width: 0;
        }
        
        .metric-title-row {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 4px;
        }
        
        .metric-title {
            font-size: 13px;
            font-weight: 600;
            color: #1f2937;
            line-height: 1.2;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .metric-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            font-size: 10px;
            font-weight: 700;
        }
        
        .badge-crossref { background: rgba(37, 99, 235, 0.15); color: #2563eb; }
        .badge-scholar { background: rgba(5, 150, 105, 0.15); color: #059669; }
        .badge-issn { background: rgba(217, 119, 6, 0.15); color: #d97706; }
        .badge-sjiif { background: rgba(220, 38, 38, 0.15); color: #dc2626; }
        .badge-hindex { background: rgba(8, 145, 178, 0.15); color: #0891b2; }
        
        .metric-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 500;
            text-decoration: none;
            color: #4b5563;
            transition: color 0.2s ease;
            padding: 4px 8px;
            border-radius: 4px;
            background: #f9fafb;
            width: fit-content;
        }
        
        .metric-item:hover .metric-link {
            color: #1f2937;
            background: #f3f4f6;
        }
        
        .metric-link::before {
            content: "🔗";
            font-size: 10px;
            opacity: 0.7;
        }
        
        .metric-description {
            font-size: 11px;
            color: #6b7280;
            line-height: 1.3;
            margin-top: 4px;
            display: none;
        }
        
        .metric-item:hover .metric-description {
            display: block;
            animation: fadeIn 0.2s ease-out;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-4px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .metrics-footer {
            padding: 8px 12px;
            background: #f9fafb;
            border-top: 1px solid #e5e7eb;
            text-align: center;
        }
        
        .metrics-note {
            font-size: 11px;
            color: #6b7280;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }
        
        .metrics-note::before {
            content: "🔄";
            font-size: 10px;
            opacity: 0.6;
        }
        
        /* Mobile Responsive */
        @media (max-width: 480px) {
            .metrics-block {
                border-radius: 6px;
            }
            
            .metrics-header {
                padding: 10px 12px;
            }
            
            .metrics-title-text {
                font-size: 12px;
            }
            
            .metric-image-col {
                width: 48px;
                padding-right: 8px;
            }
            
            .metric-image-wrapper {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
            
            .metric-title {
                font-size: 12px;
            }
            
            .metric-link {
                font-size: 11px;
                padding: 3px 6px;
            }
            
            .metrics-footer {
                padding: 6px 8px;
            }
        }
		
		        .journal-stats-block {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
            background: #ffffff;
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            max-width: 100%;
        }
        
        .stats-header {
            background: #2c3e50;
            padding: 12px 16px;
            border-bottom: 1px solid #1a252f;
            color: white;
        }
        
        .stats-title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 4px;
        }
        
        .stats-title-text {
            font-size: 14px;
            font-weight: bold;
            text-transform: uppercase;
        }
        
        .stats-title-badge {
            background: #3498db;
            color: white;
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: bold;
        }
        
        .stats-subtitle {
            font-size: 12px;
            color: #bdc3c7;
        }
        
        .stats-container {
            padding: 8px 0;
        }
        
        .stat-item {
            padding: 12px 16px;
            border-bottom: 1px solid #f1f1f1;
            transition: background 0.2s;
        }
        
        .stat-item:last-child {
            border-bottom: none;
        }
        
        .stat-item:hover {
            background: #f8f9fa;
        }
        
        .stat-icon-col {
            float: left;
            width: 36px;
            height: 36px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            margin-right: 12px;
        }
        
        .stat-item:nth-child(1) .stat-icon-col {
            background: #e3f2fd;
            color: #1976d2;
        }
        
        .stat-item:nth-child(2) .stat-icon-col {
            background: #e8f5e9;
            color: #388e3c;
        }
        
        .stat-item:nth-child(3) .stat-icon-col {
            background: #fff3e0;
            color: #f57c00;
        }
        
        .stat-item:nth-child(4) .stat-icon-col {
            background: #f3e5f5;
            color: #7b1fa2;
        }
        
        .stat-content-col {
            overflow: hidden;
        }
        
        .stat-main-text {
            font-size: 13px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 2px;
        }
        
        .stat-label {
            color: #34495e;
        }
        
        .stat-value {
            font-weight: bold;
            background: #ecf0f1;
            padding: 1px 6px;
            border-radius: 3px;
            font-size: 12px;
            margin-left: 6px;
        }
        
        .stat-details {
            font-size: 11px;
            color: #7f8c8d;
            margin-top: 2px;
        }
        
        .price-values {
            margin-top: 4px;
        }
        
        .price-value {
            display: block;
            font-size: 12px;
            font-weight: bold;
            padding: 2px 6px;
            border-radius: 3px;
            margin-bottom: 2px;
        }
        
        .stats-footer {
            padding: 10px 16px;
            background: #f8f9fa;
            border-top: 1px solid #eee;
            text-align: center;
            font-size: 11px;
            color: #7f8c8d;
        }
        
        @media (max-width: 480px) {
            .stats-header {
                padding: 10px 12px;
            }
            
            .stat-item {
                padding: 10px 12px;
            }
            
            .stat-icon-col {
                width: 32px;
                height: 32px;
                font-size: 14px;
                margin-right: 10px;
            }
        }
		
		        /* ===== ELITE ACADEMIC NAVIGATION - REFINED DESIGN ===== */
               /* ===== ELITE ACADEMIC NAVIGATION - REFINED DESIGN ===== */
        .academic-nav {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', 'SF Pro Display', system-ui, sans-serif;
        }
        
        .academic-nav > ul {
            list-style: none;
            padding: 0;
            margin: 0;
            background: #ffffff;
            border-radius: 16px;
            border: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow: 
                0 4px 20px rgba(0, 0, 0, 0.05),
                0 1px 3px rgba(0, 0, 0, 0.03);
            overflow: hidden;
            position: relative;
        }
        
        .academic-nav > ul::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(0, 0, 0, 0.05) 20%, 
                rgba(0, 0, 0, 0.1) 50%, 
                rgba(0, 0, 0, 0.05) 80%, 
                transparent);
        }
        
        /* Navigation Header */
        .nav-header {
            padding: 20px 24px;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: #ffffff;
            position: relative;
            overflow: hidden;
        }
        
        .nav-header::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, 
                transparent 30%, 
                rgba(255, 255, 255, 0.03) 50%, 
                transparent 70%);
            animation: gentleShine 8s infinite linear;
        }
        
        @keyframes gentleShine {
            0% { transform: translateX(-100%) skewX(-15deg); }
            100% { transform: translateX(100%) skewX(-15deg); }
        }
        
        .nav-title {
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 0.4px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 12px;
            position: relative;
            z-index: 1;
        }
        
        .nav-title::before {
            content: "📚";
            font-size: 20px;
            opacity: 0.9;
            filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
        }
        
        .nav-badge {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            color: #ffffff;
            padding: 6px 14px;
            border-radius: 24px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.8px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            position: relative;
            z-index: 1;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }
        
        /* Subtitle */
        .nav-subtitle {
            padding: 16px 24px;
            font-size: 14px;
            color: #475569;
            line-height: 1.5;
            background: #f8fafc;
            border-bottom: 1px solid #e2e8f0;
            font-weight: 500;
            letter-spacing: -0.1px;
        }
        
        /* Categories Container */
        .category-items-container {
            padding: 8px;
        }
        
        /* Individual Category Item */
        .category-item {
            margin: 4px 8px 8px;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
            position: relative;
            border: 1px solid transparent;
			display:flex;
        }
        
        .category-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            border-color: rgba(0, 0, 0, 0.05);
        }
        
        .category-item::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: transparent;
            transition: background 0.35s ease;
        }
        
        /* Category Colors */
        .category-agriculture { --cat-color: #10b981; --cat-light: rgba(16, 185, 129, 0.08); }
        .category-engineering { --cat-color: #3b82f6; --cat-light: rgba(59, 130, 246, 0.08); }
        .category-sciences { --cat-color: #8b5cf6; --cat-light: rgba(139, 92, 246, 0.08); }
        .category-computer { --cat-color: #f59e0b; --cat-light: rgba(245, 158, 11, 0.08); }
        .category-physics { --cat-color: #ef4444; --cat-light: rgba(239, 68, 68, 0.08); }
        .category-chemistry { --cat-color: #06b6d4; --cat-light: rgba(6, 182, 212, 0.08); }
        .category-biology { --cat-color: #84cc16; --cat-light: rgba(132, 204, 22, 0.08); }
        .category-mathematics { --cat-color: #8b5cf6; --cat-light: rgba(139, 92, 246, 0.08); }
        
        .category-item:hover::before {
            background: var(--cat-color);
        }
        
        /* Category Link Container */
        .category-item > div {
            display: flex;
            align-items: center;
            background: #ffffff;
            transition: all 0.35s ease;
            position: relative;
            cursor: pointer;
        }
        
        .category-item:hover > div {
            background: var(--cat-light);
            padding-left: 24px;
        }
        
        /* Category Icon - Refined Design */
        .category-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 18px;
            font-size: 22px;
            transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        .category-icon::before {
            content: "";
            position: absolute;
            inset: 0;
            background: inherit;
            opacity: 0.1;
        }
        
        .category-icon::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 1px;
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.8) 0%, 
                rgba(255, 255, 255, 0.2) 50%, 
                transparent 100%);
            -webkit-mask: 
                linear-gradient(#fff 0 0) content-box, 
                linear-gradient(#fff 0 0);
            mask: 
                linear-gradient(#fff 0 0) content-box, 
                linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }
        
        .category-item:hover .category-icon {
            transform: scale(1.08) rotate(3deg);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }
        
        /* Icon Backgrounds with Refined Gradients */
        .category-agriculture .category-icon {
            background: linear-gradient(135deg, #10b981 0%, #0d9c6e 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
        }
        
        .category-engineering .category-icon {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
        }
        
        .category-sciences .category-icon {
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
        }
        
        .category-computer .category-icon {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
        }
        
        .category-physics .category-icon {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25);
        }
        
        .category-chemistry .category-icon {
            background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(6, 182, 212, 0.25);
        }
        
        .category-biology .category-icon {
            background: linear-gradient(135deg, #84cc16 0%, #65a30d 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(132, 204, 22, 0.25);
        }
        
        .category-mathematics .category-icon {
            background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
        }
        
        /* Category Content */
        .category-content {
            flex: 1;
            min-width: 0;
            padding-right: 12px;
        }
        
        .category-title {
            font-size: 15px;
            font-weight: 700;
            color: #1e293b;
            line-height: 1.3;
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: -0.1px;
        }
        
        .category-description {
            font-size: 13px;
            color: #64748b;
            line-height: 1.5;
            opacity: 0;
            max-height: 0;
            transform: translateY(-5px);
            transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
            overflow: hidden;
            letter-spacing: -0.1px;
        }
        
        .category-item:hover .category-description {
            opacity: 1;
            max-height: 40px;
            transform: translateY(0);
        }
        
        /* Category Badge */
        .category-badge {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            color: var(--cat-color);
            padding: 5px 12px;
            border-radius: 14px;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.8px;
            border: 1px solid rgba(0, 0, 0, 0.08);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            text-transform: uppercase;
        }
        
        /* Arrow Indicator */
        .category-arrow {
            color: #94a3b8;
            font-size: 18px;
            font-weight: 300;
            opacity: 0;
            transform: translateX(-8px) scale(0.8);
            transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
            flex-shrink: 0;
        }
        
        .category-item:hover .category-arrow {
            opacity: 1;
            transform: translateX(0) scale(1);
            color: var(--cat-color);
        }
        
        /* Footer */
        .nav-footer {
            padding: 16px 24px;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border-top: 1px solid #e2e8f0;
        }
        
        .nav-note {
            font-size: 12px;
            color: #64748b;
            font-weight: 500;
            letter-spacing: 0.3px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            text-align: center;
            line-height: 1.4;
        }
        
        .nav-note::before {
            content: "✨";
            font-size: 14px;
            opacity: 0.8;
        }
        
        /* Loading Animation */
        @keyframes subtleFadeIn {
            from {
                opacity: 0;
                transform: translateY(8px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .category-item {
            animation: subtleFadeIn 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
        }
        
        .category-item:nth-child(1) { animation-delay: 0.05s; }
        .category-item:nth-child(2) { animation-delay: 0.1s; }
        .category-item:nth-child(3) { animation-delay: 0.15s; }
        .category-item:nth-child(4) { animation-delay: 0.2s; }
        .category-item:nth-child(5) { animation-delay: 0.25s; }
        .category-item:nth-child(6) { animation-delay: 0.3s; }
        .category-item:nth-child(7) { animation-delay: 0.35s; }
        .category-item:nth-child(8) { animation-delay: 0.4s; }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .academic-nav > ul {
                border-radius: 14px;
            }
            
            .nav-header {
                padding: 18px 20px;
            }
            
            .nav-title {
                font-size: 15px;
            }
            
            .nav-badge {
                padding: 5px 12px;
                font-size: 11px;
            }
            
            .nav-subtitle {
                padding: 14px 20px;
                font-size: 13.5px;
            }
            
            .category-item > div {
                padding: 16px 18px;
            }
            
            .category-icon {
                width: 44px;
                height: 44px;
                font-size: 20px;
                margin-right: 16px;
            }
            
            .category-title {
                font-size: 14.5px;
            }
            
            .category-badge {
                padding: 4px 10px;
                font-size: 10.5px;
            }
            
            .category-item:hover > div {
                padding-left: 22px;
            }
        }
        
        /* Ultra-Compact for Small Screens */
        @media (max-width: 480px) {
            .nav-header {
                padding: 16px 18px;
            }
            
            .nav-title {
                font-size: 14px;
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            
            .nav-badge {
                align-self: flex-start;
            }
            
            .category-item > div {
                padding: 14px 16px;
            }
            
            .category-icon {
                width: 40px;
                height: 40px;
                font-size: 18px;
                margin-right: 14px;
            }
            
            .category-title {
                font-size: 14px;
                flex-wrap: wrap;
            }
        }
        
        /* Hover State Refinements */
        .category-item:hover {
            z-index: 10;
        }
        
        .category-item:hover .category-icon {
            filter: brightness(1.05);
        }
        
 /* policy*/
 :root {
    /* Modern Color Palette */
    --policy-blue: #2563eb;
    --policy-green: #059669;
    --policy-amber: #d97706;
    --policy-red: #dc2626;
    --policy-cyan: #0891b2;
    --policy-purple: #7c3aed;
    --policy-pink: #db2777;
    --policy-indigo: #4f46e5;
    --policy-teal: #0d9488;
    --policy-orange: #ea580c;
    --policy-gray-50: #f9fafb;
    --policy-gray-100: #f3f4f6;
    --policy-gray-200: #e5e7eb;
    --policy-gray-300: #d1d5db;
    --policy-gray-400: #9ca3af;
    --policy-gray-500: #6b7280;
    --policy-gray-600: #4b5563;
    --policy-gray-700: #374151;
    --policy-gray-800: #1f2937;
    --policy-gray-900: #111827;
    
    /* Ultra Compact Spacing */
    --space-xxs: 0.125rem; /* 2px */
    --space-xs: 0.25rem; /* 4px */
    --space-sm: 0.375rem; /* 6px */
    --space-md: 0.5rem; /* 8px */
    --space-lg: 0.75rem; /* 12px */
    --space-xl: 1rem; /* 16px */
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== POLICIES BLOCK ===== */
.policies-block {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    max-width: 100%;
    margin: 0 auto;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.policies-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* Header */
.policies-header {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.policies-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.policies-title-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.policies-title-text::before {
    content: "📋";
    font-size: 16px;
}

.policies-title-icon::before {
    content: "ℹ️";
    font-size: 14px;
    opacity: 0.7;
}

.policies-subtitle {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 4px;
    line-height: 1.3;
}

/* Policies Container */
.policies-container {
    padding: 8px;
    max-height: 500px;
    overflow-y: auto;
}

.policies-container::-webkit-scrollbar {
    width: 6px;
}

.policies-container::-webkit-scrollbar-track {
    background: var(--policy-gray-100);
    border-radius: 3px;
}

.policies-container::-webkit-scrollbar-thumb {
    background: var(--policy-gray-300);
    border-radius: 3px;
}

.policies-container::-webkit-scrollbar-thumb:hover {
    background: var(--policy-gray-400);
}

/* Individual Policy Item */
.policy-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    margin-bottom: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.policy-item:last-child {
    margin-bottom: 0;
}

.policy-item:hover {
    border-color: #d1d5db;
    transform: translateX(3px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Hover Indicator */
.policy-hover-indicator {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: transparent;
    transition: background 0.2s ease;
}

.policy-item[data-policy="about"]:hover .policy-hover-indicator { background: #2563eb; }
.policy-item[data-policy="ethics"]:hover .policy-hover-indicator { background: #dc2626; }
.policy-item[data-policy="openAccess"]:hover .policy-hover-indicator { background: #059669; }
.policy-item[data-policy="peerReview"]:hover .policy-hover-indicator { background: #d97706; }
.policy-item[data-policy="licensing"]:hover .policy-hover-indicator { background: #7c3aed; }
.policy-item[data-policy="archiving"]:hover .policy-hover-indicator { background: #0891b2; }
.policy-item[data-policy="frequency"]:hover .policy-hover-indicator { background: #db2777; }
.policy-item[data-policy="language"]:hover .policy-hover-indicator { background: #0d9488; }
.policy-item[data-policy="copyright"]:hover .policy-hover-indicator { background: #4f46e5; }
.policy-item[data-policy="editorial"]:hover .policy-hover-indicator { background: #ea580c; }

/* Image Column */
.policy-image-col {
    flex-shrink: 0;
    width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 12px;
}

.policy-image-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.2s ease;
}

/* Color Coding for Policy Types */
.policy-item[data-policy="about"] .policy-image-wrapper {
    background: #eff6ff;
    color: #2563eb;
    border: 2px solid #dbeafe;
}

.policy-item[data-policy="ethics"] .policy-image-wrapper {
    background: #fef2f2;
    color: #dc2626;
    border: 2px solid #fee2e2;
}

.policy-item[data-policy="openAccess"] .policy-image-wrapper {
    background: #ecfdf5;
    color: #059669;
    border: 2px solid #d1fae5;
}

.policy-item[data-policy="peerReview"] .policy-image-wrapper {
    background: #fffbeb;
    color: #d97706;
    border: 2px solid #fef3c7;
}

.policy-item[data-policy="licensing"] .policy-image-wrapper {
    background: #f5f3ff;
    color: #7c3aed;
    border: 2px solid #ede9fe;
}

.policy-item[data-policy="archiving"] .policy-image-wrapper {
    background: #ecfeff;
    color: #0891b2;
    border: 2px solid #cffafe;
}

.policy-item[data-policy="frequency"] .policy-image-wrapper {
    background: #fdf2f8;
    color: #db2777;
    border: 2px solid #fce7f3;
}

.policy-item[data-policy="language"] .policy-image-wrapper {
    background: #f0fdfa;
    color: #0d9488;
    border: 2px solid #ccfbf1;
}

.policy-item[data-policy="copyright"] .policy-image-wrapper {
    background: #eef2ff;
    color: #4f46e5;
    border: 2px solid #e0e7ff;
}

.policy-item[data-policy="editorial"] .policy-image-wrapper {
    background: #fff7ed;
    color: #ea580c;
    border: 2px solid #fed7aa;
}

.policy-item:hover .policy-image-wrapper {
    transform: scale(1.1);
}

/* Content Column */
.policy-content-col {
    flex: 1;
    min-width: 0;
}

.policy-title-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.policy-title {
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Badge Styling */
.policy-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
}

.badge-about { background: rgba(37, 99, 235, 0.15); color: #2563eb; }
.badge-ethics { background: rgba(220, 38, 38, 0.15); color: #dc2626; }
.badge-oa { background: rgba(5, 150, 105, 0.15); color: #059669; }
.badge-peer { background: rgba(217, 119, 6, 0.15); color: #d97706; }
.badge-license { background: rgba(124, 58, 237, 0.15); color: #7c3aed; }
.badge-archive { background: rgba(8, 145, 178, 0.15); color: #0891b2; }
.badge-freq { background: rgba(219, 39, 119, 0.15); color: #db2777; }
.badge-lang { background: rgba(13, 148, 136, 0.15); color: #0d9488; }
.badge-copyright { background: rgba(79, 70, 229, 0.15); color: #4f46e5; }
.badge-editorial { background: rgba(234, 88, 12, 0.15); color: #ea580c; }

/* Link Styling */
.policy-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    color: #4b5563;
    transition: color 0.2s ease;
    padding: 4px 8px;
    border-radius: 4px;
    background: #f9fafb;
    width: fit-content;
}

.policy-item:hover .policy-link {
    color: #1f2937;
    background: #f3f4f6;
}

.policy-link::before {
    content: "📄";
    font-size: 10px;
    opacity: 0.7;
}

/* Description */
.policy-description {
    font-size: 11px;
    color: #6b7280;
    line-height: 1.3;
    margin-top: 4px;
    display: none;
}

.policy-item:hover .policy-description {
    display: block;
    animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Footer */
.policies-footer {
    padding: 8px 12px;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.policies-note {
    font-size: 11px;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.policies-note::before {
    content: "📌";
    font-size: 10px;
    opacity: 0.6;
}

/* Staggered Animations */
.policy-item {
    animation: fadeIn 0.3s ease-out backwards;
}

.policy-item:nth-child(1) { animation-delay: 0.05s; }
.policy-item:nth-child(2) { animation-delay: 0.1s; }
.policy-item:nth-child(3) { animation-delay: 0.15s; }
.policy-item:nth-child(4) { animation-delay: 0.2s; }
.policy-item:nth-child(5) { animation-delay: 0.25s; }
.policy-item:nth-child(6) { animation-delay: 0.3s; }
.policy-item:nth-child(7) { animation-delay: 0.35s; }
.policy-item:nth-child(8) { animation-delay: 0.4s; }
.policy-item:nth-child(9) { animation-delay: 0.45s; }
.policy-item:nth-child(10) { animation-delay: 0.5s; }

/* Mobile Responsive */
@media (max-width: 480px) {
    .policies-block {
        border-radius: 6px;
    }
    
    .policies-header {
        padding: 10px 12px;
    }
    
    .policies-title-text {
        font-size: 12px;
    }
    
    .policy-image-col {
        width: 48px;
        padding-right: 8px;
    }
    
    .policy-image-wrapper {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .policy-title {
        font-size: 12px;
    }
    
    .policy-link {
        font-size: 11px;
        padding: 3px 6px;
    }
    
    .policies-footer {
        padding: 6px 8px;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
        padding: 0;
    }
    
    .policies-block {
        box-shadow: none;
        border: 1px solid #ddd;
        max-width: 100%;
    }
    
    .policy-item:hover {
        transform: none;
        box-shadow: none;
        border-color: #ddd;
    }
    
    .policy-link {
        color: #000;
        text-decoration: underline;
        background: none;
    }
    
    .policies-footer {
        display: none;
    }
}

/*editorial board*/
        /* OJS Editorial Board Specific Styles */
        .ojs-editorial-board-container {
            font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: #1e293b;
            line-height: 1.4;
            max-width: 1000px;
            margin: 0 auto;
            padding: 10px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        /* Section Headers for Roles */
        .role-section {
            margin-bottom: 24px;
        }

        .role-title {
            font-size: 18px;
            font-weight: 700;
            color: #0f172a;
            border-bottom: 2px solid #e2e8f0;
            padding-bottom: 6px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
            text-transform: uppercase;
            letter-spacing: 0.03em;
        }

        .role-title i {
            color: #0284c7;
            font-size: 16px;
        }

        /* Compact Grid Layout */
        .board-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 12px;
        }

        /* Individual Member Card - Very Compact */
        .member-card {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            padding: 12px;
            display: flex;
            gap: 12px;
            align-items: center;
            transition: all 0.2s ease;
            position: relative;
        }

        .member-card:hover {
            border-color: #cbd5e1;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transform: translateY(-1px);
        }

        /* Avatar / Initials Circle */
        .member-avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: #f1f5f9;
            color: #475569;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            flex-shrink: 0;
            border: 1px solid #e2e8f0;
        }

        /* Special Avatar Colors */
        .featured-member .member-avatar {
            width: 54px;
            height: 54px;
            font-size: 18px;
            background: #0f172a;
            color: white;
            border: none;
        }

        .advisory-member .member-avatar {
            background: #ecfdf5;
            color: #166534;
            border-color: #bbf7d0;
        }

        /* Member Details */
        .member-info {
            flex: 1;
            min-width: 0;
        }

        .member-name {
            font-size: 14px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 2px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .member-email {
            font-size: 11px;
            color: #0284c7;
            margin-bottom: 3px;
            display: flex;
            align-items: center;
            gap: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .member-email i {
            font-size: 10px;
            opacity: 0.8;
        }

        .member-affiliation {
            font-size: 12px;
            color: #64748b;
            margin-bottom: 3px;
            line-height: 1.2;
            display: block;
        }

        .member-meta {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            margin-top: 3px;
        }

        .member-country {
            color: #166534;
            background: #f0fdf4;
            padding: 1px 6px;
            border-radius: 4px;
            font-weight: 600;
        }

        /* Action Buttons - Minimal */
        .member-actions {
            display: flex;
            gap: 8px;
            align-items: center;
            margin-top: 4px;
        }

        .member-more-btn {
            font-size: 11px;
            color: #64748b;
            text-decoration: none;
            padding: 2px 8px;
            border: 1px solid #e2e8f0;
            border-radius: 4px;
            background: #f8fafc;
            transition: all 0.2s ease;
            cursor: pointer;
            white-space: nowrap;
        }

        .member-more-btn:hover {
            background: #f1f5f9;
            border-color: #cbd5e1;
            color: #475569;
        }

        .mini-btn {
            color: #94a3b8;
            font-size: 12px;
            text-decoration: none;
            transition: color 0.2s;
        }

        .mini-btn:hover {
            color: #0284c7;
        }

        /* Specialized Layout for Editor-in-Chief (Featured) */
        .featured-member {
            grid-column: 1 / -1;
            background: linear-gradient(to right, #f8fafc, #ffffff);
            border-left: 4px solid #0284c7;
            padding: 16px;
        }

        .featured-member .member-name {
            font-size: 16px;
        }

        .featured-member .member-email {
            font-size: 12px;
        }

        /* Advisory Board Style */
        .advisory-member {
            border-left: 3px solid #10b981;
        }

        /* Responsive Fixes */
        @media (max-width: 600px) {
            .board-grid {
                grid-template-columns: 1fr;
            }
            
            .member-card {
                padding: 10px;
            }
            
            .member-actions {
                flex-wrap: wrap;
            }
        }
		
		/*about journal*/
		        .journal-container {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }

        /* Header Section */
        .journal-header {
            background: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
            color: white;
            padding: 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .journal-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.3;
        }

        .journal-title {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 10px;
            letter-spacing: -0.5px;
            position: relative;
            z-index: 2;
        }

        .journal-subtitle {
            font-size: 16px;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto 20px;
            line-height: 1.5;
            position: relative;
            z-index: 2;
        }

        .journal-abbreviation {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 700;
            letter-spacing: 1px;
            position: relative;
            z-index: 2;
        }

        /* Content Sections */
        .section {
            padding: 30px 40px;
            border-bottom: 1px solid #e2e8f0;
        }

        .section:last-child {
            border-bottom: none;
        }

        .section-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .section-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
        }

        .section-title {
            font-size: 22px;
            font-weight: 700;
            color: #1e293b;
        }

        .content-box {
            background: #f8fafc;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 25px;
        }

        .content-box:last-child {
            margin-bottom: 0;
        }

        .content-title {
            font-size: 18px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .content-title i {
            color: #3b82f6;
        }

        .content-text {
            color: #475569;
            line-height: 1.7;
            margin-bottom: 15px;
        }

        .content-text:last-child {
            margin-bottom: 0;
        }

        /* Scope List */
        .scope-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin-top: 15px;
        }

        .scope-item {
            background: white;
            border-radius: 8px;
            padding: 15px;
            border-left: 4px solid #3b82f6;
            transition: transform 0.2s ease;
        }

        .scope-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .scope-item i {
            color: #3b82f6;
            margin-right: 8px;
            font-size: 14px;
        }

        /* Policies Grid */
        .policies-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .policy-card {
            background: white;
            border-radius: 10px;
            padding: 20px;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .policy-card:hover {
            border-color: #3b82f6;
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.1);
        }

        .policy-number {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .policy-title {
            font-size: 16px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 10px;
        }

        .policy-desc {
            font-size: 14px;
            color: #64748b;
            line-height: 1.5;
        }

        /* Highlight Box */
        .highlight-box {
            background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
            border: 1px solid #a7f3d0;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            position: relative;
            overflow: hidden;
        }

        .highlight-box::before {
            content: '⭐';
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            opacity: 0.3;
        }

        .highlight-title {
            font-size: 18px;
            font-weight: 700;
            color: #065f46;
            margin-bottom: 10px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .journal-header {
                padding: 30px 20px;
            }
            
            .journal-title {
                font-size: 24px;
            }
            
            .section {
                padding: 25px;
            }
            
            .scope-list {
                grid-template-columns: 1fr;
            }
            
            .policies-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 10px;
            }
            
            .journal-title {
                font-size: 22px;
            }
            
            .section {
                padding: 20px;
            }
            
            .content-box {
                padding: 20px;
            }
        }