
: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;
            }
        }
		
:root {
    --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;
    --space-xxs: .125rem;
    --space-xs: .25rem;
    --space-sm: .375rem;
    --space-md: .5rem;
    --space-lg: .75rem;
    --space-xl: 1rem;
    --radius-sm: .25rem;
    --radius-md: .375rem;
    --radius-lg: .5rem;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
    --shadow-md: 0 1px 3px rgba(0,0,0,.1) , 0 1px 2px rgba(0,0,0,.06);
    --shadow-lg: 0 4px 6px -1px rgba(0,0,0,.1) , 0 2px 4px -1px rgba(0,0,0,.06);
    --transition-fast: 150ms cubic-bezier(.4,0,.2,1);
    --transition-normal: 200ms cubic-bezier(.4,0,.2,1)
}

.policies-block {
    font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(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,.1) , 0 8px 10px -6px rgba(0,0,0,.1)
}

.policies-header {
    background: linear-gradient(135deg,#1f2937 0%,#374151 100%);
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,.1)
}

.policies-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff
}

.policies-title-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .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: .7
}

.policies-subtitle {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 4px;
    line-height: 1.3
}

.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)
}

.policy-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    margin-bottom: 6px;
    transition: all .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,.05)
}

.policy-hover-indicator {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: transparent;
    transition: background .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
}

.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 .2s ease
}

.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)
}

.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
}

.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,.15);
    color: #2563eb
}

.badge-ethics {
    background: rgba(220,38,38,.15);
    color: #dc2626
}

.badge-oa {
    background: rgba(5,150,105,.15);
    color: #059669
}

.badge-peer {
    background: rgba(217,119,6,.15);
    color: #d97706
}

.badge-license {
    background: rgba(124,58,237,.15);
    color: #7c3aed
}

.badge-archive {
    background: rgba(8,145,178,.15);
    color: #0891b2
}

.badge-freq {
    background: rgba(219,39,119,.15);
    color: #db2777
}

.badge-lang {
    background: rgba(13,148,136,.15);
    color: #0d9488
}

.badge-copyright {
    background: rgba(79,70,229,.15);
    color: #4f46e5
}

.badge-editorial {
    background: rgba(234,88,12,.15);
    color: #ea580c
}

.policy-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    color: #4b5563;
    transition: color .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: .7
}

.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 .2s ease-out
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.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: .6
}

.policy-item {
    animation: fadeIn .3s ease-out backwards
}

.policy-item:nth-child(1) {
    animation-delay: .05s
}

.policy-item:nth-child(2) {
    animation-delay: .1s
}

.policy-item:nth-child(3) {
    animation-delay: .15s
}

.policy-item:nth-child(4) {
    animation-delay: .2s
}

.policy-item:nth-child(5) {
    animation-delay: .25s
}

.policy-item:nth-child(6) {
    animation-delay: .3s
}

.policy-item:nth-child(7) {
    animation-delay: .35s
}

.policy-item:nth-child(8) {
    animation-delay: .4s
}

.policy-item:nth-child(9) {
    animation-delay: .45s
}

.policy-item:nth-child(10) {
    animation-delay: .5s
}

@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
    }
}

@media print {
    body {
        background: #fff;
        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
    }
}

.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: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05)
}

.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: .03em
}

.role-title i {
    color: #0284c7;
    font-size: 16px
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
    gap: 12px
}

.member-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
    transition: all .2s ease;
    position: relative
}

.member-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    transform: translateY(-1px)
}

.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
}

.featured-member .member-avatar {
    width: 54px;
    height: 54px;
    font-size: 18px;
    background: #0f172a;
    color: #fff;
    border: none
}

.advisory-member .member-avatar {
    background: #ecfdf5;
    color: #166534;
    border-color: #bbf7d0
}

.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: .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
}

.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 .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 .2s
}

.mini-btn:hover {
    color: #0284c7
}

.featured-member {
    grid-column: 1 / -1;
    background: linear-gradient(to right,#f8fafc,#fff);
    border-left: 4px solid #0284c7;
    padding: 16px
}

.featured-member .member-name {
    font-size: 16px
}

.featured-member .member-email {
    font-size: 12px
}

.advisory-member {
    border-left: 3px solid #10b981
}

@media (max-width: 600px) {
    .board-grid {
        grid-template-columns:1fr
    }

    .member-card {
        padding: 10px
    }

    .member-actions {
        flex-wrap: wrap
    }
}

.journal-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
    overflow: hidden
}

.journal-header {
    background: linear-gradient(135deg,#1a2980 0%,#26d0ce 100%);
    color: #fff;
    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: .3
}

.journal-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -.5px;
    position: relative;
    z-index: 2
}

.journal-subtitle {
    font-size: 16px;
    opacity: .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,.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    z-index: 2
}

.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: #fff;
    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 {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(250px,1fr));
    gap: 15px;
    margin-top: 15px
}

.scope-item {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    border-left: 4px solid #3b82f6;
    transition: transform .2s ease
}

.scope-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,.05)
}

.scope-item i {
    color: #3b82f6;
    margin-right: 8px;
    font-size: 14px
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
    gap: 20px;
    margin-top: 20px
}

.policy-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    transition: all .3s ease
}

.policy-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 6px 20px rgba(59,130,246,.1)
}

.policy-number {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg,#3b82f6 0%,#1d4ed8 100%);
    color: #fff;
    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 {
    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: .3
}

.highlight-title {
    font-size: 18px;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 10px
}

@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
    }
}

html[lang="ar-IQ"] {
    direction: rtl;
    text-align: right
}

@media (min-width: 992px) {
    html[lang="ar-IQ"] .col-md-1,html[lang="ar-IQ"] .col-md-2,html[lang="ar-IQ"] .col-md-3,html[lang="ar-IQ"] .col-md-4,html[lang="ar-IQ"] .col-md-5,html[lang="ar-IQ"] .col-md-6,html[lang="ar-IQ"] .col-md-7,html[lang="ar-IQ"] .col-md-8,html[lang="ar-IQ"] .col-md-9,html[lang="ar-IQ"] .col-md-10,html[lang="ar-IQ"] .col-md-11,html[lang="ar-IQ"] .col-md-12 {
        float:right
    }
}

body {
    font-family: 'DroidArabicKufi',"Noto Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen-Sans","Ubuntu","Cantarell","Helvetica Neue",sans-serif;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    color: #000;
    background-color: #fff;
    letter-spacing: .01em;
    word-spacing: .01em;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-kerning: normal;
    font-feature-settings: "liga" , "kern"
}

h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6 {
    font-family: 'DroidArabicKufi',"Noto Sans",sans-serif;
    line-height: 1.2;
    color: inherit
}

p {
    font-family: inherit;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: .01em;
    word-spacing: .01em;
    hyphens: auto
}

caption {
    font-size: .667rem
}

small {
    font-size: .444rem
}

.pkp_structure_main h3 {
    font-family: inherit;
    font-size: 1.143rem;
    line-height: 1.43rem
}

.pkp_site_name {
    position: absolute;
    left: 2.857rem;
    right: 0;
    margin: 0;
    padding-left: .714rem;
    text-align: end;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: rgba(0,0,0,.84);
    font-family: "Noto Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen-Sans","Ubuntu","Cantarell","Helvetica Neue",sans-serif;
    font-size: .93rem
}

.arabic-content,.arabic-text {
    font-family: 'DroidArabicKufiArabic',"Noto Sans",sans-serif;
    direction: rtl
}

.menu-label {
    font-family: 'DroidArabicKufiMenu',"Noto Sans",sans-serif
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            color: #1e293b;
            line-height: 1.6;
            min-height: 100vh;
            padding: 20px;
        }
        
        .journal-container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            border: 1px solid #e2e8f0;
        }
        
        /* Enhanced Professional Header */
        .journal-header {
            background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
            color: white;
            padding: 15px 30px 12px 30px;
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            border-bottom: 5px solid #dc2626;
            min-height: 120px;
        }
        
        .header-left {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            flex: 1;
            min-width: 0;
        }
        
        .logo-container {
            flex-shrink: 0;
            position: relative;
        }
        
        .logo-img {
            height: 75px;
            width: auto;
            filter: brightness(0) invert(1);
            object-fit: contain;
        }
        
        .issn-badge {
            position: absolute;
            bottom: -8px;
            right: -5px;
            background: #dc2626;
            color: white;
            font-size: 9px;
            font-weight: 600;
            padding: 2px 6px;
            border-radius: 3px;
            white-space: nowrap;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        .header-text-content {
            flex: 1;
            min-width: 0;
            padding-top: 5px;
        }
        
        .journal-title {
            font-size: 22px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 4px;
            color: white;
            letter-spacing: -0.2px;
        }
        
        .journal-subtitle {
            font-size: 13px;
            opacity: 0.95;
            margin-bottom: 6px;
            line-height: 1.4;
            font-weight: 400;
        }
        
        .issn-details {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 5px;
        }
        
        .issn-item {
            font-size: 11px;
            font-weight: 600;
            background: rgba(255, 255, 255, 0.15);
            padding: 3px 8px;
            border-radius: 4px;
            letter-spacing: 0.3px;
        }
        
        .journal-abbreviation {
            background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
            color: white;
            font-weight: 800;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 22px;
            letter-spacing: 1.5px;
            align-self: flex-start;
            margin-top: 5px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            text-shadow: 0 1px 2px rgba(0,0,0,0.2);
            border: 1px solid rgba(255,255,255,0.1);
        }
        
        /* Leadership Block - Enhanced */
        .leadership-block {
            background: linear-gradient(to right, #f8fafc 0%, #f1f5f9 100%);
            padding: 20px 30px;
            margin: 0;
            border-bottom: 1px solid #e2e8f0;
            position: relative;
        }
        
        .leadership-block:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, #0c4a6e 0%, #0369a1 100%);
        }
        
        .leadership-title {
            font-size: 16px;
            font-weight: 700;
            color: #0c4a6e;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .leadership-title i {
            color: #dc2626;
        }
        
        .leadership-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .leadership-card {
            background: white;
            border-radius: 8px;
            padding: 18px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            border: 1px solid #e2e8f0;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .leadership-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.08);
        }
        
        .leadership-role {
            font-size: 14px;
            font-weight: 600;
            color: #dc2626;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .leadership-role i {
            font-size: 12px;
        }
        
        .leadership-name {
            font-size: 17px;
            font-weight: 700;
            color: #0c4a6e;
            margin-bottom: 5px;
        }
        
        .leadership-position {
            font-size: 13px;
            color: #475569;
            line-height: 1.5;
        }
        
        /* Section Styles - Enhanced */
        .section {
            padding: 25px 30px;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .section:last-child {
            border-bottom: none;
        }
        
        .section-header {
            display: flex;
            align-items: center;
            margin-bottom: 22px;
        }
        
        .section-icon {
            width: 8px;
            height: 28px;
            background: linear-gradient(to bottom, #0c4a6e 0%, #0369a1 100%);
            margin-right: 15px;
            border-radius: 4px;
        }
        
        .section-title {
            font-size: 24px;
            font-weight: 800;
            color: #0c4a6e;
            position: relative;
        }
        
        /* Content Box - Enhanced */
        .content-box {
            background: linear-gradient(to bottom, #f8fafc 0%, #f1f5f9 100%);
            border-radius: 8px;
            padding: 22px;
            margin-bottom: 25px;
            border-left: 4px solid #0c4a6e;
            position: relative;
            overflow: hidden;
        }
        
        .content-box:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(to right, #0c4a6e 0%, #0369a1 100%);
        }
        
        .content-text {
            margin-bottom: 15px;
            font-size: 15.5px;
            line-height: 1.7;
            color: #334155;
        }
        
        .content-text:last-child {
            margin-bottom: 0;
        }
        
        .content-title {
            font-size: 18px;
            font-weight: 700;
            color: #0c4a6e;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .content-title i {
            color: #dc2626;
        }
        
        /* Scope List - Enhanced */
        .scope-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .scope-item {
            background: white;
            padding: 16px;
            border-radius: 8px;
            border-left: 4px solid #dc2626;
            font-size: 14.5px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.05);
            transition: transform 0.2s, box-shadow 0.2s;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        
        .scope-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(0,0,0,0.08);
        }
        
        .scope-item i {
            color: #dc2626;
            margin-top: 2px;
            flex-shrink: 0;
        }
        
        .scope-subitem {
            font-size: 13px;
            color: #64748b;
            margin-top: 8px;
            padding-left: 22px;
            font-style: italic;
        }
        
        /* Highlight Box - Enhanced */
        .highlight-box {
            background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
            border: 1px solid #fed7aa;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            position: relative;
            overflow: hidden;
        }
        
        .highlight-box:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, #ea580c 0%, #c2410c 100%);
        }
        
        .highlight-title {
            font-size: 17px;
            font-weight: 700;
            color: #9a3412;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .highlight-title i {
            font-size: 15px;
        }
        
        /* Policies Grid - Enhanced */
        .policies-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .policy-card {
            background: white;
            border-radius: 8px;
            padding: 22px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.06);
            border-top: 4px solid #0c4a6e;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .policy-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, #0c4a6e 0%, #0369a1 100%);
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .policy-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        
        .policy-card:hover:before {
            opacity: 1;
        }
        
        .policy-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
            color: white;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            margin-bottom: 15px;
        }
        
        .policy-title {
            font-size: 17px;
            font-weight: 700;
            color: #0c4a6e;
            margin-bottom: 10px;
            line-height: 1.3;
        }
        
        .policy-desc {
            font-size: 14.5px;
            color: #475569;
            line-height: 1.6;
        }
        
        /* Footer */
        .journal-footer {
            background: #0c4a6e;
            color: white;
            padding: 20px 30px;
            text-align: center;
            font-size: 13px;
            border-top: 5px solid #dc2626;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .footer-logo {
            height: 40px;
            filter: brightness(0) invert(1);
        }
        
        .footer-text {
            opacity: 0.9;
            line-height: 1.5;
        }
        
        /* Responsive Design */
        @media (max-width: 900px) {
            .journal-header {
                flex-direction: column;
                gap: 15px;
                padding: 20px;
            }
            
            .header-left {
                width: 100%;
            }
            
            .journal-abbreviation {
                align-self: flex-start;
            }
            
            .leadership-grid {
                grid-template-columns: 1fr;
            }
            
            .scope-list {
                grid-template-columns: 1fr;
            }
            
            .policies-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 600px) {
            body {
                padding: 10px;
            }
            
            .journal-header, .section, .leadership-block {
                padding: 20px;
            }
            
            .journal-title {
                font-size: 19px;
            }
            
            .section-title {
                font-size: 22px;
            }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
        }
        
        /* Print Styles */
        @media print {
            body {
                background: white;
                padding: 0;
            }
            
            .journal-container {
                box-shadow: none;
                border-radius: 0;
            }
            
            .journal-header {
                background: #0c4a6e !important;
                -webkit-print-color-adjust: exact;
            }
        }
.page-header {
    padding-bottom: 9px;
    margin: 40px 0 20px;
    border-bottom: 1px solid #eee;
    display: none!important;
}
        .journal-container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            border: 1px solid #e2e8f0;
        }
        
        /* Enhanced Professional Header */
        .journal-header {
            background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
            color: white;
            padding: 15px 30px 12px 30px;
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            border-bottom: 5px solid #dc2626;
            min-height: 120px;
        }
        
        .header-left {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            flex: 1;
            min-width: 0;
        }
        
        .logo-container {
            flex-shrink: 0;
            position: relative;
        }
        
        .logo-img {
            height: 75px;
            width: auto;
            filter: brightness(0) invert(1);
            object-fit: contain;
        }
        
        .issn-badge {
            position: absolute;
            bottom: -8px;
            right: -5px;
            background: #dc2626;
            color: white;
            font-size: 9px;
            font-weight: 600;
            padding: 2px 6px;
            border-radius: 3px;
            white-space: nowrap;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        .header-text-content {
            flex: 1;
            min-width: 0;
            padding-top: 5px;
        }
        
        .journal-title {
            font-size: 22px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 4px;
            color: white;
            letter-spacing: -0.2px;
        }
        
        .journal-subtitle {
            font-size: 13px;
            opacity: 0.95;
            margin-bottom: 6px;
            line-height: 1.4;
            font-weight: 400;
        }
        
        .issn-details {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 5px;
        }
        
        .issn-item {
            font-size: 11px;
            font-weight: 600;
            background: rgba(255, 255, 255, 0.15);
            padding: 3px 8px;
            border-radius: 4px;
            letter-spacing: 0.3px;
        }
        
        .journal-abbreviation {
            background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
            color: white;
            font-weight: 800;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 22px;
            letter-spacing: 1.5px;
            align-self: flex-start;
            margin-top: 5px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            text-shadow: 0 1px 2px rgba(0,0,0,0.2);
            border: 1px solid rgba(255,255,255,0.1);
        }
        
        /* Page Title Section */
        .page-title-section {
            background: linear-gradient(to right, #f1f5f9 0%, #e2e8f0 100%);
            padding: 25px 30px;
            border-bottom: 1px solid #cbd5e1;
        }
        
        .page-title {
            font-size: 28px;
            font-weight: 800;
            color: #0c4a6e;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .page-title-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
        }
        
        .page-subtitle {
            font-size: 16px;
            color: #475569;
            margin-top: 10px;
            margin-left: 65px;
            max-width: 800px;
            line-height: 1.5;
        }
        
        /* Ethics Content Section */
        .ethics-section {
            padding: 25px 30px;
        }
        
        /* Introduction Box */
        .intro-box {
            background: linear-gradient(to bottom, #f0f9ff 0%, #e0f2fe 100%);
            border-left: 5px solid #0369a1;
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }
        
        .intro-box:before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, rgba(3, 105, 161, 0.1) 0%, rgba(12, 74, 110, 0.05) 100%);
            border-radius: 0 0 0 100px;
        }
        
        .intro-text {
            font-size: 16px;
            line-height: 1.7;
            color: #334155;
            position: relative;
            z-index: 1;
        }
        
        /* Responsibilities Section */
        .responsibilities-section {
            margin: 40px 0;
        }
        
        .section-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e2e8f0;
        }
        
        .section-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .section-title {
            font-size: 24px;
            font-weight: 700;
            color: #0c4a6e;
        }
        
        /* Role Cards */
        .role-card {
            background: white;
            border-radius: 10px;
            padding: 0;
            margin-bottom: 25px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
            border: 1px solid #e2e8f0;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .role-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        
        .role-header {
            background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
            color: white;
            padding: 18px 25px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .role-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }
        
        .role-title {
            font-size: 20px;
            font-weight: 700;
        }
        
        .role-content {
            padding: 25px;
        }
        
        .responsibility-item {
            margin-bottom: 18px;
            padding-left: 10px;
            border-left: 3px solid transparent;
            transition: border-color 0.3s;
        }
        
        .responsibility-item:hover {
            border-left-color: #dc2626;
        }
        
        .responsibility-title {
            font-size: 16px;
            font-weight: 700;
            color: #0c4a6e;
            margin-bottom: 6px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        
        .responsibility-title i {
            color: #dc2626;
            margin-top: 3px;
            flex-shrink: 0;
        }
        
        .responsibility-desc {
            font-size: 15px;
            color: #475569;
            line-height: 1.6;
            margin-left: 26px;
        }
        
        /* Procedures Section */
        .procedures-section {
            margin: 40px 0;
        }
        
        .procedures-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 25px;
        }
        
        .procedure-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
            border-top: 4px solid #dc2626;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .procedure-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        
        .procedure-step {
            font-size: 14px;
            font-weight: 700;
            color: #dc2626;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .procedure-title {
            font-size: 18px;
            font-weight: 700;
            color: #0c4a6e;
            margin-bottom: 12px;
        }
        
        .procedure-desc {
            font-size: 15px;
            color: #475569;
            line-height: 1.6;
        }
        
        .outcomes-list {
            margin-top: 15px;
            padding-left: 20px;
        }
        
        .outcomes-list li {
            margin-bottom: 8px;
            font-size: 14.5px;
            color: #475569;
        }
        
        /* Plagiarism Policy */
        .plagiarism-box {
            background: linear-gradient(to right, #fef2f2 0%, #fee2e2 100%);
            border-left: 5px solid #dc2626;
            border-radius: 8px;
            padding: 25px;
            margin: 30px 0;
            position: relative;
            overflow: hidden;
        }
        
        .plagiarism-box:before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(185, 28, 28, 0.05) 100%);
            border-radius: 0 0 0 100px;
        }
        
        .plagiarism-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .plagiarism-icon {
            width: 50px;
            height: 50px;
            background: #dc2626;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
        }
        
        .plagiarism-title {
            font-size: 22px;
            font-weight: 700;
            color: #991b1b;
        }
        
        .plagiarism-text {
            font-size: 15.5px;
            color: #7f1d1d;
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }
        
        /* Contact Section */
        .contact-section {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border-radius: 10px;
            padding: 30px;
            margin-top: 30px;
            text-align: center;
            border: 1px solid #e2e8f0;
        }
        
        .contact-title {
            font-size: 22px;
            font-weight: 700;
            color: #0c4a6e;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }
        
        .contact-text {
            font-size: 16px;
            color: #475569;
            margin-bottom: 20px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }
        
        .contact-email {
            display: inline-block;
            background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
            color: white;
            padding: 12px 25px;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 4px 10px rgba(12, 74, 110, 0.2);
        }
        
        .contact-email:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(12, 74, 110, 0.3);
        }
        
        .contact-email i {
            margin-right: 10px;
        }
        
        /* Footer */
        .journal-footer {
            background: #0c4a6e;
            color: white;
            padding: 20px 30px;
            text-align: center;
            font-size: 13px;
            border-top: 5px solid #dc2626;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .footer-logo {
            height: 40px;
            filter: brightness(0) invert(1);
        }
        
        .footer-text {
            opacity: 0.9;
            line-height: 1.5;
        }
        
        /* Responsive Design */
        @media (max-width: 900px) {
            .journal-header {
                flex-direction: column;
                gap: 15px;
                padding: 20px;
            }
            
            .header-left {
                width: 100%;
            }
            
            .journal-abbreviation {
                align-self: flex-start;
            }
            
            .procedures-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
        }
        
        @media (max-width: 600px) {
            body {
                padding: 10px;
            }
            
            .journal-header, .ethics-section, .page-title-section {
                padding: 20px;
            }
            
            .journal-title {
                font-size: 19px;
            }
            
            .page-title {
                font-size: 24px;
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .page-subtitle {
                margin-left: 0;
            }
            
            .role-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .contact-email {
                font-size: 16px;
                padding: 10px 20px;
            }
        }
		.journal-container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            border: 1px solid #e2e8f0;
        }
        
        /* Enhanced Professional Header */
        .journal-header {
            background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
            color: white;
            padding: 15px 30px 12px 30px;
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            border-bottom: 5px solid #dc2626;
            min-height: 120px;
        }
        
        .header-left {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            flex: 1;
            min-width: 0;
        }
        
        .logo-container {
            flex-shrink: 0;
            position: relative;
        }
        
        .logo-img {
            height: 75px;
            width: auto;
            filter: brightness(0) invert(1);
            object-fit: contain;
        }
        
        .issn-badge {
            position: absolute;
            bottom: -8px;
            right: -5px;
            background: #dc2626;
            color: white;
            font-size: 9px;
            font-weight: 600;
            padding: 2px 6px;
            border-radius: 3px;
            white-space: nowrap;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        .header-text-content {
            flex: 1;
            min-width: 0;
            padding-top: 5px;
        }
        
        .journal-title {
            font-size: 22px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 4px;
            color: white;
            letter-spacing: -0.2px;
        }
        
        .journal-subtitle {
            font-size: 13px;
            opacity: 0.95;
            margin-bottom: 6px;
            line-height: 1.4;
            font-weight: 400;
        }
        
        .issn-details {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 5px;
        }
        
        .issn-item {
            font-size: 11px;
            font-weight: 600;
            background: rgba(255, 255, 255, 0.15);
            padding: 3px 8px;
            border-radius: 4px;
            letter-spacing: 0.3px;
        }
        
        .journal-abbreviation {
            background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
            color: white;
            font-weight: 800;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 22px;
            letter-spacing: 1.5px;
            align-self: flex-start;
            margin-top: 5px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            text-shadow: 0 1px 2px rgba(0,0,0,0.2);
            border: 1px solid rgba(255,255,255,0.1);
        }
        
        /* Page Title Section */
        .page-title-section {
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
            padding: 30px;
            border-bottom: 1px solid #93c5fd;
            position: relative;
            overflow: hidden;
        }
        
        .page-title-section:before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
            border-radius: 50%;
            transform: translate(50%, -50%);
        }
        
        .page-title {
            font-size: 32px;
            font-weight: 800;
            color: #1e40af;
            display: flex;
            align-items: center;
            gap: 20px;
            position: relative;
            z-index: 1;
        }
        
        .page-title-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 26px;
            box-shadow: 0 6px 12px rgba(59, 130, 246, 0.3);
        }
        
        .page-subtitle {
            font-size: 17px;
            color: #1e40af;
            margin-top: 15px;
            margin-left: 80px;
            max-width: 800px;
            line-height: 1.5;
            font-weight: 500;
            position: relative;
            z-index: 1;
        }
        
        /* Policy Content Section */
        .policy-section {
            padding: 30px;
        }
        
        /* Hero Statement */
        .hero-statement {
            background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 40px;
            border-left: 6px solid #3b82f6;
            position: relative;
            overflow: hidden;
        }
        
        .hero-statement:before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 150px;
            height: 150px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%233b82f6' fill-opacity='0.1' d='M0,0 L100,0 L100,100 L0,100 Z'/%3E%3C/svg%3E");
            opacity: 0.1;
        }
        
        .hero-text {
            font-size: 17px;
            line-height: 1.7;
            color: #1e40af;
            position: relative;
            z-index: 1;
        }
        
        .boai-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(59, 130, 246, 0.15);
            color: #1d4ed8;
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            margin-top: 15px;
            border: 1px solid rgba(59, 130, 246, 0.3);
        }
        
        /* Definition Section */
        .definition-section {
            margin: 40px 0;
        }
        
        .section-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e2e8f0;
        }
        
        .section-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .section-title {
            font-size: 26px;
            font-weight: 700;
            color: #0c4a6e;
        }
        
        /* Definition Grid */
        .definition-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 25px;
        }
        
        .definition-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
            border-top: 4px solid #3b82f6;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .definition-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        
        .definition-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            margin-bottom: 20px;
        }
        
        .definition-text {
            font-size: 15.5px;
            color: #475569;
            line-height: 1.6;
        }
        
        /* License Section */
        .license-section {
            background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            border: 2px solid #86efac;
            position: relative;
            overflow: hidden;
        }
        
        .license-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }
        
        .license-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 26px;
            flex-shrink: 0;
        }
        
        .license-title {
            font-size: 24px;
            font-weight: 700;
            color: #065f46;
        }
        
        .license-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .license-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            border-left: 4px solid #10b981;
        }
        
        .license-card-title {
            font-size: 18px;
            font-weight: 700;
            color: #065f46;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .license-card-title i {
            color: #10b981;
        }
        
        .license-card-content {
            font-size: 15px;
            color: #475569;
            line-height: 1.6;
        }
        
        .cc-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(16, 185, 129, 0.1);
            color: #065f46;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 700;
            margin-top: 15px;
            border: 2px solid rgba(16, 185, 129, 0.3);
        }
        
        /* Rights Grid */
        .rights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .right-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
            border-top: 4px solid #8b5cf6;
            transition: transform 0.3s;
        }
        
        .right-card:hover {
            transform: translateY(-5px);
        }
        
        .right-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            margin-bottom: 20px;
        }
        
        .right-title {
            font-size: 18px;
            font-weight: 700;
            color: #5b21b6;
            margin-bottom: 12px;
        }
        
        .right-desc {
            font-size: 15px;
            color: #475569;
            line-height: 1.6;
        }
        
        /* Feature Cards */
        .feature-section {
            margin: 40px 0;
        }
        
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 25px;
        }
        
        .feature-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
            border: 1px solid #e2e8f0;
            transition: all 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            border-color: #3b82f6;
        }
        
        .feature-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            flex-shrink: 0;
        }
        
        .feature-title {
            font-size: 18px;
            font-weight: 700;
            color: #0c4a6e;
        }
        
        .feature-content {
            font-size: 15px;
            color: #475569;
            line-height: 1.6;
        }
        
        /* Contact Section */
        .contact-section {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            border-radius: 12px;
            padding: 30px;
            margin-top: 40px;
            text-align: center;
            border: 2px solid #fbbf24;
            position: relative;
            overflow: hidden;
        }
        
        .contact-title {
            font-size: 24px;
            font-weight: 700;
            color: #92400e;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }
        
        .contact-text {
            font-size: 16px;
            color: #92400e;
            margin-bottom: 25px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }
        
        .contact-email {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            color: white;
            padding: 15px 30px;
            border-radius: 10px;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 6px 15px rgba(245, 158, 11, 0.3);
        }
        
        .contact-email:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(245, 158, 11, 0.4);
        }
        
        /* Footer */
        .journal-footer {
            background: #0c4a6e;
            color: white;
            padding: 20px 30px;
            text-align: center;
            font-size: 13px;
            border-top: 5px solid #dc2626;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .footer-logo {
            height: 40px;
            filter: brightness(0) invert(1);
        }
        
        .footer-text {
            opacity: 0.9;
            line-height: 1.5;
        }
        
        /* Responsive Design */
        @media (max-width: 900px) {
            .journal-header {
                flex-direction: column;
                gap: 15px;
                padding: 20px;
            }
            
            .header-left {
                width: 100%;
            }
            
            .journal-abbreviation {
                align-self: flex-start;
            }
            
            .definition-grid, .license-grid, .rights-grid, .feature-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
        }
        
        @media (max-width: 600px) {
            body {
                padding: 10px;
            }
            
            .journal-header, .policy-section, .page-title-section {
                padding: 20px;
            }
            
            .journal-title {
                font-size: 19px;
            }
            
            .page-title {
                font-size: 26px;
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .page-subtitle {
                margin-left: 0;
            }
            
            .license-header, .section-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .section-icon {
                margin-right: 0;
            }
            
            .contact-email {
                font-size: 16px;
                padding: 12px 25px;
            }
        }

       .journal-container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            border: 1px solid #e2e8f0;
        }
        
        /* Enhanced Professional Header */
        .journal-header {
            background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
            color: white;
            padding: 15px 30px 12px 30px;
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            border-bottom: 5px solid #dc2626;
            min-height: 120px;
        }
        
        .header-left {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            flex: 1;
            min-width: 0;
        }
        
        .logo-container {
            flex-shrink: 0;
            position: relative;
        }
        
        .logo-img {
            height: 75px;
            width: auto;
            filter: brightness(0) invert(1);
            object-fit: contain;
        }
        
        .issn-badge {
            position: absolute;
            bottom: -8px;
            right: -5px;
            background: #dc2626;
            color: white;
            font-size: 9px;
            font-weight: 600;
            padding: 2px 6px;
            border-radius: 3px;
            white-space: nowrap;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        .header-text-content {
            flex: 1;
            min-width: 0;
            padding-top: 5px;
        }
        
        .journal-title {
            font-size: 22px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 4px;
            color: white;
            letter-spacing: -0.2px;
        }
        
        .journal-subtitle {
            font-size: 13px;
            opacity: 0.95;
            margin-bottom: 6px;
            line-height: 1.4;
            font-weight: 400;
        }
        
        .issn-details {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 5px;
        }
        
        .issn-item {
            font-size: 11px;
            font-weight: 600;
            background: rgba(255, 255, 255, 0.15);
            padding: 3px 8px;
            border-radius: 4px;
            letter-spacing: 0.3px;
        }
        
        .journal-abbreviation {
            background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
            color: white;
            font-weight: 800;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 22px;
            letter-spacing: 1.5px;
            align-self: flex-start;
            margin-top: 5px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            text-shadow: 0 1px 2px rgba(0,0,0,0.2);
            border: 1px solid rgba(255,255,255,0.1);
        }
        
        /* Page Title Section */
        .page-title-section {
            background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
            padding: 30px;
            border-bottom: 1px solid #f9a8d4;
            position: relative;
            overflow: hidden;
        }
        
        .page-title-section:before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, rgba(219, 39, 119, 0.1) 0%, rgba(190, 24, 93, 0.05) 100%);
            border-radius: 50%;
            transform: translate(50%, -50%);
        }
        
        .page-title {
            font-size: 32px;
            font-weight: 800;
            color: #9d174d;
            display: flex;
            align-items: center;
            gap: 20px;
            position: relative;
            z-index: 1;
        }
        
        .page-title-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #db2777 0%, #be185d 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 26px;
            box-shadow: 0 6px 12px rgba(219, 39, 119, 0.3);
        }
        
        .page-subtitle {
            font-size: 17px;
            color: #9d174d;
            margin-top: 15px;
            margin-left: 80px;
            max-width: 800px;
            line-height: 1.5;
            font-weight: 500;
            position: relative;
            z-index: 1;
        }
        
        /* Policy Content Section */
        .policy-section {
            padding: 30px;
        }
        
        /* Hero Statement */
        .hero-statement {
            background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 40px;
            border-left: 6px solid #db2777;
            position: relative;
            overflow: hidden;
        }
        
        .hero-statement:before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 150px;
            height: 150px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23db2777' fill-opacity='0.1' d='M0,0 L100,0 L100,100 L0,100 Z'/%3E%3C/svg%3E");
            opacity: 0.1;
        }
        
        .hero-text {
            font-size: 17px;
            line-height: 1.7;
            color: #9d174d;
            position: relative;
            z-index: 1;
        }
        
        /* Double-Blind Review Highlight */
        .review-type-highlight {
            background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
            border: 2px solid #8b5cf6;
        }
        
        .review-type-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }
        
        .review-type-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 26px;
        }
        
        .review-type-title {
            font-size: 24px;
            font-weight: 700;
            color: #5b21b6;
        }
        
        .review-model-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .review-model-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
            border-top: 4px solid #8b5cf6;
        }
        
        .model-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            margin-bottom: 20px;
        }
        
        .model-text {
            font-size: 15.5px;
            color: #475569;
            line-height: 1.6;
        }
        
        /* Process Flow Section */
        .process-section {
            margin: 40px 0;
        }
        
        .section-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e2e8f0;
        }
        
        .section-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .section-title {
            font-size: 26px;
            font-weight: 700;
            color: #0c4a6e;
        }
        
        /* Process Timeline */
        .process-timeline {
            position: relative;
            padding: 40px 0;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .process-timeline:before {
            content: '';
            position: absolute;
            left: 30px;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, #0c4a6e 0%, #0369a1 100%);
            border-radius: 2px;
        }
        
        .process-step {
            position: relative;
            margin-bottom: 40px;
            padding-left: 80px;
        }
        
        .process-step:last-child {
            margin-bottom: 0;
        }
        
        .step-number {
            position: absolute;
            left: 15px;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 18px;
            z-index: 1;
            border: 4px solid white;
            box-shadow: 0 4px 8px rgba(12, 74, 110, 0.3);
        }
        
        .step-content {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            border: 1px solid #e2e8f0;
        }
        
        .step-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .step-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            flex-shrink: 0;
        }
        
        .step-title {
            font-size: 20px;
            font-weight: 700;
            color: #0c4a6e;
        }
        
        .step-desc {
            font-size: 15.5px;
            color: #475569;
            line-height: 1.6;
        }
        
        .timeframe-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(219, 39, 119, 0.1);
            color: #9d174d;
            padding: 6px 15px;
            border-radius: 20px;
            font-weight: 600;
            margin-top: 10px;
            font-size: 14px;
        }
        
        /* Criteria Section */
        .criteria-section {
            background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            border: 2px solid #10b981;
        }
        
        .criteria-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }
        
        .criteria-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 26px;
        }
        
        .criteria-title {
            font-size: 24px;
            font-weight: 700;
            color: #065f46;
        }
        
        .criteria-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .criteria-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            border-left: 4px solid #10b981;
            transition: transform 0.3s;
        }
        
        .criteria-card:hover {
            transform: translateY(-5px);
        }
        
        .criteria-card-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .criteria-card-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
        }
        
        .criteria-card-title {
            font-size: 18px;
            font-weight: 700;
            color: #065f46;
        }
        
        .criteria-card-desc {
            font-size: 15px;
            color: #475569;
            line-height: 1.6;
        }
        
        /* Decision Types */
        .decisions-section {
            margin: 40px 0;
        }
        
        .decisions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 25px;
        }
        
        .decision-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
            border-top: 4px solid;
            transition: all 0.3s;
        }
        
        .decision-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        
        .decision-card.accept {
            border-color: #10b981;
        }
        
        .decision-card.minor {
            border-color: #3b82f6;
        }
        
        .decision-card.major {
            border-color: #f59e0b;
        }
        
        .decision-card.reject {
            border-color: #ef4444;
        }
        
        .decision-icon {
            width: 50px;
            height: 50px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 20px;
        }
        
        .decision-icon.accept {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
        }
        
        .decision-icon.minor {
            background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
            color: white;
        }
        
        .decision-icon.major {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            color: white;
        }
        
        .decision-icon.reject {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            color: white;
        }
        
        .decision-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .decision-title.accept {
            color: #065f46;
        }
        
        .decision-title.minor {
            color: #1e40af;
        }
        
        .decision-title.major {
            color: #92400e;
        }
        
        .decision-title.reject {
            color: #991b1b;
        }
        
        .decision-desc {
            font-size: 14.5px;
            color: #475569;
            line-height: 1.6;
        }
        
        /* Responsibilities Section */
        .responsibilities-section {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            border: 2px solid #f59e0b;
        }
        
        .responsibilities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 25px;
        }
        
        .responsibility-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            border: 1px solid #fde68a;
        }
        
        .responsibility-card-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .responsibility-card-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
        }
        
        .responsibility-card-title {
            font-size: 18px;
            font-weight: 700;
            color: #92400e;
        }
        
        .responsibility-card-desc {
            font-size: 15px;
            color: #475569;
            line-height: 1.6;
        }
        
        /* Appeals Section */
        .appeals-section {
            background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            border: 2px solid #a855f7;
        }
        
        .appeals-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .appeals-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 26px;
        }
        
        .appeals-title {
            font-size: 24px;
            font-weight: 700;
            color: #6b21a8;
        }
        
        .appeals-content {
            font-size: 16px;
            color: #6b21a8;
            line-height: 1.6;
        }
        
        /* Commitment Section */
        .commitment-section {
            text-align: center;
            padding: 40px;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border-radius: 12px;
            margin: 40px 0;
            border: 2px solid #0ea5e9;
        }
        
        .commitment-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 36px;
            margin: 0 auto 25px;
            box-shadow: 0 8px 16px rgba(14, 165, 233, 0.3);
        }
        
        .commitment-text {
            font-size: 20px;
            font-weight: 600;
            color: #0369a1;
            line-height: 1.5;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Contact Section */
        .contact-section {
            background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
            border-radius: 12px;
            padding: 30px;
            margin-top: 40px;
            text-align: center;
            border: 2px solid #db2777;
            position: relative;
            overflow: hidden;
        }
        
        .contact-title {
            font-size: 24px;
            font-weight: 700;
            color: #9d174d;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }
        
        .contact-text {
            font-size: 16px;
            color: #9d174d;
            margin-bottom: 25px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }
        
        .contact-email {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #db2777 0%, #be185d 100%);
            color: white;
            padding: 15px 30px;
            border-radius: 10px;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 6px 15px rgba(219, 39, 119, 0.3);
        }
        
        .contact-email:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(219, 39, 119, 0.4);
        }
        
        /* Footer */
        .journal-footer {
            background: #0c4a6e;
            color: white;
            padding: 20px 30px;
            text-align: center;
            font-size: 13px;
            border-top: 5px solid #dc2626;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .footer-logo {
            height: 40px;
            filter: brightness(0) invert(1);
        }
        
        .footer-text {
            opacity: 0.9;
            line-height: 1.5;
        }
        
        /* Responsive Design */
        @media (max-width: 900px) {
            .journal-header {
                flex-direction: column;
                gap: 15px;
                padding: 20px;
            }
            
            .header-left {
                width: 100%;
            }
            
            .journal-abbreviation {
                align-self: flex-start;
            }
            
            .review-model-grid, .criteria-grid, .decisions-grid, .responsibilities-grid {
                grid-template-columns: 1fr;
            }
            
            .process-timeline:before {
                left: 25px;
            }
            
            .process-step {
                padding-left: 70px;
            }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
        }
        
        @media (max-width: 600px) {
            body {
                padding: 10px;
            }
            
            .journal-header, .policy-section, .page-title-section {
                padding: 20px;
            }
            
            .journal-title {
                font-size: 19px;
            }
            
            .page-title {
                font-size: 26px;
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .page-subtitle {
                margin-left: 0;
            }
            
            .review-type-header, .section-header, .criteria-header, .appeals-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .section-icon, .review-type-icon, .criteria-icon, .appeals-icon {
                margin-right: 0;
            }
            
            .contact-email {
                font-size: 16px;
                padding: 12px 25px;
            }
        }
        .journal-container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            border: 1px solid #e2e8f0;
        }
        
        /* Enhanced Professional Header */
        .journal-header {
            background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
            color: white;
            padding: 15px 30px 12px 30px;
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            border-bottom: 5px solid #dc2626;
            min-height: 120px;
        }
        
        .header-left {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            flex: 1;
            min-width: 0;
        }
        
        .logo-container {
            flex-shrink: 0;
            position: relative;
        }
        
        .logo-img {
            height: 75px;
            width: auto;
            filter: brightness(0) invert(1);
            object-fit: contain;
        }
        
        .issn-badge {
            position: absolute;
            bottom: -8px;
            right: -5px;
            background: #dc2626;
            color: white;
            font-size: 9px;
            font-weight: 600;
            padding: 2px 6px;
            border-radius: 3px;
            white-space: nowrap;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        .header-text-content {
            flex: 1;
            min-width: 0;
            padding-top: 5px;
        }
        
        .journal-title {
            font-size: 22px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 4px;
            color: white;
            letter-spacing: -0.2px;
        }
        
        .journal-subtitle {
            font-size: 13px;
            opacity: 0.95;
            margin-bottom: 6px;
            line-height: 1.4;
            font-weight: 400;
        }
        
        .issn-details {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 5px;
        }
        
        .issn-item {
            font-size: 11px;
            font-weight: 600;
            background: rgba(255, 255, 255, 0.15);
            padding: 3px 8px;
            border-radius: 4px;
            letter-spacing: 0.3px;
        }
        
        .journal-abbreviation {
            background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
            color: white;
            font-weight: 800;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 22px;
            letter-spacing: 1.5px;
            align-self: flex-start;
            margin-top: 5px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            text-shadow: 0 1px 2px rgba(0,0,0,0.2);
            border: 1px solid rgba(255,255,255,0.1);
        }
        
        /* Page Title Section */
        .page-title-section {
            background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
            padding: 30px;
            border-bottom: 1px solid #6ee7b7;
            position: relative;
            overflow: hidden;
        }
        
        .page-title-section:before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
            border-radius: 50%;
            transform: translate(50%, -50%);
        }
        
        .page-title {
            font-size: 32px;
            font-weight: 800;
            color: #065f46;
            display: flex;
            align-items: center;
            gap: 20px;
            position: relative;
            z-index: 1;
        }
        
        .page-title-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 26px;
            box-shadow: 0 6px 12px rgba(16, 185, 129, 0.3);
        }
        
        .page-subtitle {
            font-size: 17px;
            color: #065f46;
            margin-top: 15px;
            margin-left: 80px;
            max-width: 800px;
            line-height: 1.5;
            font-weight: 500;
            position: relative;
            z-index: 1;
        }
        
        /* Policy Content Section */
        .policy-section {
            padding: 30px;
        }
        
        /* Hero Statement */
        .hero-statement {
            background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 40px;
            border-left: 6px solid #10b981;
            position: relative;
            overflow: hidden;
        }
        
        .hero-statement:before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 150px;
            height: 150px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%2310b981' fill-opacity='0.1' d='M0,0 L100,0 L100,100 L0,100 Z'/%3E%3C/svg%3E");
            opacity: 0.1;
        }
        
        .hero-text {
            font-size: 17px;
            line-height: 1.7;
            color: #065f46;
            position: relative;
            z-index: 1;
        }
        
        /* CC License Highlight */
        .license-highlight {
            background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
            border: 2px solid #8b5cf6;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .license-highlight:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, #8b5cf6 0%, #7c3aed 100%);
        }
        
        .license-badge {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: white;
            padding: 20px 30px;
            border-radius: 12px;
            margin-bottom: 25px;
            box-shadow: 0 6px 15px rgba(139, 92, 246, 0.15);
            border: 2px solid #ddd6fe;
        }
        
        .cc-icon {
            font-size: 48px;
            color: #8b5cf6;
        }
        
        .license-title {
            font-size: 28px;
            font-weight: 800;
            color: #5b21b6;
            text-align: left;
        }
        
        .license-subtitle {
            font-size: 14px;
            color: #7c3aed;
            font-weight: 600;
            text-align: left;
            margin-top: 5px;
        }
        
        .license-description {
            font-size: 16px;
            color: #5b21b6;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Permissions Section */
        .permissions-section {
            margin: 40px 0;
        }
        
        .section-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e2e8f0;
        }
        
        .section-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .section-title {
            font-size: 26px;
            font-weight: 700;
            color: #0c4a6e;
        }
        
        /* Permissions Grid */
        .permissions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        
        .permission-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.07);
            border-top: 5px solid #10b981;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .permission-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.12);
        }
        
        .permission-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 26px;
            margin-bottom: 25px;
        }
        
        .permission-title {
            font-size: 20px;
            font-weight: 700;
            color: #065f46;
            margin-bottom: 15px;
        }
        
        .permission-desc {
            font-size: 15.5px;
            color: #475569;
            line-height: 1.6;
        }
        
        /* Attribution Section */
        .attribution-section {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            border: 2px solid #f59e0b;
        }
        
        .attribution-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }
        
        .attribution-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 26px;
        }
        
        .attribution-title {
            font-size: 24px;
            font-weight: 700;
            color: #92400e;
        }
        
        .attribution-requirements {
            background: white;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }
        
        .requirements-title {
            font-size: 18px;
            font-weight: 700;
            color: #92400e;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .requirements-title i {
            color: #f59e0b;
        }
        
        .requirements-list {
            list-style: none;
            padding-left: 0;
        }
        
        .requirement-item {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
            font-size: 15.5px;
            color: #475569;
            line-height: 1.6;
        }
        
        .requirement-item:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #10b981;
            font-weight: bold;
            font-size: 16px;
        }
        
        /* Attribution Example */
        .attribution-example {
            background: #f8fafc;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            border-left: 4px solid #0c4a6e;
            font-family: 'Courier New', monospace;
            position: relative;
            overflow: hidden;
        }
        
        .example-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 15px;
        }
        
        .example-title {
            font-size: 16px;
            font-weight: 700;
            color: #0c4a6e;
        }
        
        .example-copy {
            background: #0c4a6e;
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 6px;
            font-size: 14px;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .example-copy:hover {
            background: #0369a1;
        }
        
        .example-code {
            font-size: 14px;
            line-height: 1.6;
            color: #334155;
            white-space: pre-wrap;
            word-break: break-word;
        }
        
        /* Rights Section */
        .rights-section {
            margin: 40px 0;
        }
        
        .rights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        
        .right-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.07);
            border: 1px solid #e2e8f0;
            transition: all 0.3s;
        }
        
        .right-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            border-color: #8b5cf6;
        }
        
        .right-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 26px;
            margin-bottom: 25px;
        }
        
        .right-title {
            font-size: 20px;
            font-weight: 700;
            color: #5b21b6;
            margin-bottom: 15px;
        }
        
        .right-desc {
            font-size: 15.5px;
            color: #475569;
            line-height: 1.6;
        }
        
        /* Warranties Section */
        .warranties-section {
            background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            border: 2px solid #ef4444;
        }
        
        .warranties-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }
        
        .warranties-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 26px;
        }
        
        .warranties-title {
            font-size: 24px;
            font-weight: 700;
            color: #991b1b;
        }
        
        .warranties-content {
            font-size: 16px;
            color: #991b1b;
            line-height: 1.6;
        }
        
        .warranty-item {
            margin-bottom: 15px;
            padding-left: 10px;
            border-left: 3px solid #ef4444;
            padding-left: 20px;
        }
        
        /* Why CC BY Section */
        .why-section {
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            border: 2px solid #3b82f6;
            text-align: center;
        }
        
        .why-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 36px;
            margin: 0 auto 25px;
            box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
        }
        
        .why-title {
            font-size: 24px;
            font-weight: 700;
            color: #1e40af;
            margin-bottom: 20px;
        }
        
        .why-text {
            font-size: 17px;
            color: #1e40af;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Contact Section */
        .contact-section {
            background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
            border-radius: 12px;
            padding: 30px;
            margin-top: 40px;
            text-align: center;
            border: 2px solid #db2777;
            position: relative;
            overflow: hidden;
        }
        
        .contact-title {
            font-size: 24px;
            font-weight: 700;
            color: #9d174d;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }
        
        .contact-text {
            font-size: 16px;
            color: #9d174d;
            margin-bottom: 25px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }
        
        .contact-email {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #db2777 0%, #be185d 100%);
            color: white;
            padding: 15px 30px;
            border-radius: 10px;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 6px 15px rgba(219, 39, 119, 0.3);
        }
        
        .contact-email:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(219, 39, 119, 0.4);
        }
        
        /* Footer */
        .journal-footer {
            background: #0c4a6e;
            color: white;
            padding: 20px 30px;
            text-align: center;
            font-size: 13px;
            border-top: 5px solid #dc2626;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .footer-logo {
            height: 40px;
            filter: brightness(0) invert(1);
        }
        
        .footer-text {
            opacity: 0.9;
            line-height: 1.5;
        }
        
        /* Responsive Design */
        @media (max-width: 900px) {
            .journal-header {
                flex-direction: column;
                gap: 15px;
                padding: 20px;
            }
            
            .header-left {
                width: 100%;
            }
            
            .journal-abbreviation {
                align-self: flex-start;
            }
            
            .permissions-grid, .rights-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
        }
        
        @media (max-width: 600px) {
            body {
                padding: 10px;
            }
            
            .journal-header, .policy-section, .page-title-section {
                padding: 20px;
            }
            
            .journal-title {
                font-size: 19px;
            }
            
            .page-title {
                font-size: 26px;
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .page-subtitle {
                margin-left: 0;
            }
            
            .license-badge {
                flex-direction: column;
                text-align: center;
                padding: 20px;
            }
            
            .license-title, .license-subtitle {
                text-align: center;
            }
            
            .section-header, .attribution-header, .warranties-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .section-icon, .attribution-icon, .warranties-icon {
                margin-right: 0;
            }
            
            .contact-email {
                font-size: 16px;
                padding: 12px 25px;
            }
        }

        .journal-container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            border: 1px solid #e2e8f0;
        }
        
        /* Enhanced Professional Header */
        .journal-header {
            background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
            color: white;
            padding: 15px 30px 12px 30px;
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            border-bottom: 5px solid #dc2626;
            min-height: 120px;
        }
        
        .header-left {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            flex: 1;
            min-width: 0;
        }
        
        .logo-container {
            flex-shrink: 0;
            position: relative;
        }
        
        .logo-img {
            height: 75px;
            width: auto;
            filter: brightness(0) invert(1);
            object-fit: contain;
        }
        
        .issn-badge {
            position: absolute;
            bottom: -8px;
            right: -5px;
            background: #dc2626;
            color: white;
            font-size: 9px;
            font-weight: 600;
            padding: 2px 6px;
            border-radius: 3px;
            white-space: nowrap;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        .header-text-content {
            flex: 1;
            min-width: 0;
            padding-top: 5px;
        }
        
        .journal-title {
            font-size: 22px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 4px;
            color: white;
            letter-spacing: -0.2px;
        }
        
        .journal-subtitle {
            font-size: 13px;
            opacity: 0.95;
            margin-bottom: 6px;
            line-height: 1.4;
            font-weight: 400;
        }
        
        .issn-details {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 5px;
        }
        
        .issn-item {
            font-size: 11px;
            font-weight: 600;
            background: rgba(255, 255, 255, 0.15);
            padding: 3px 8px;
            border-radius: 4px;
            letter-spacing: 0.3px;
        }
        
        .journal-abbreviation {
            background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
            color: white;
            font-weight: 800;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 22px;
            letter-spacing: 1.5px;
            align-self: flex-start;
            margin-top: 5px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            text-shadow: 0 1px 2px rgba(0,0,0,0.2);
            border: 1px solid rgba(255,255,255,0.1);
        }
        
        /* Page Title Section */
        .page-title-section {
            background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
            padding: 30px;
            border-bottom: 1px solid #7dd3fc;
            position: relative;
            overflow: hidden;
        }
        
        .page-title-section:before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(2, 132, 199, 0.05) 100%);
            border-radius: 50%;
            transform: translate(50%, -50%);
        }
        
        .page-title {
            font-size: 32px;
            font-weight: 800;
            color: #0369a1;
            display: flex;
            align-items: center;
            gap: 20px;
            position: relative;
            z-index: 1;
        }
        
        .page-title-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 26px;
            box-shadow: 0 6px 12px rgba(14, 165, 233, 0.3);
        }
        
        .page-subtitle {
            font-size: 17px;
            color: #0369a1;
            margin-top: 15px;
            margin-left: 80px;
            max-width: 800px;
            line-height: 1.5;
            font-weight: 500;
            position: relative;
            z-index: 1;
        }
        
        /* Policy Content Section */
        .policy-section {
            padding: 30px;
        }
        
        /* Hero Statement */
        .hero-statement {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 40px;
            border-left: 6px solid #0ea5e9;
            position: relative;
            overflow: hidden;
        }
        
        .hero-statement:before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 150px;
            height: 150px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%230ea5e9' fill-opacity='0.1' d='M0,0 L100,0 L100,100 L0,100 Z'/%3E%3C/svg%3E");
            opacity: 0.1;
        }
        
        .hero-text {
            font-size: 17px;
            line-height: 1.7;
            color: #0369a1;
            position: relative;
            z-index: 1;
        }
        
        /* Commitment Section */
        .commitment-section {
            background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
            border: 2px solid #10b981;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .commitment-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, #10b981 0%, #059669 100%);
        }
        
        .commitment-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 36px;
            margin: 0 auto 25px;
            box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
        }
        
        .commitment-title {
            font-size: 24px;
            font-weight: 700;
            color: #065f46;
            margin-bottom: 15px;
        }
        
        .commitment-text {
            font-size: 17px;
            color: #065f46;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Archiving Methods Section */
        .methods-section {
            margin: 40px 0;
        }
        
        .section-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e2e8f0;
        }
        
        .section-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .section-title {
            font-size: 26px;
            font-weight: 700;
            color: #0c4a6e;
        }
        
        /* Methods Grid */
        .methods-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        
        .method-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.07);
            border-top: 5px solid;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .method-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.12);
        }
        
        .method-card.primary {
            border-color: #0ea5e9;
        }
        
        .method-card.dedicated {
            border-color: #8b5cf6;
        }
        
        .method-card.national {
            border-color: #f59e0b;
        }
        
        .method-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            margin-bottom: 25px;
        }
        
        .method-icon.primary {
            background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
            color: white;
        }
        
        .method-icon.dedicated {
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            color: white;
        }
        
        .method-icon.national {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            color: white;
        }
        
        .method-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .method-title.primary {
            color: #0369a1;
        }
        
        .method-title.dedicated {
            color: #5b21b6;
        }
        
        .method-title.national {
            color: #92400e;
        }
        
        .method-desc {
            font-size: 15.5px;
            color: #475569;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .method-features {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #e2e8f0;
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 10px;
            font-size: 14.5px;
            color: #64748b;
        }
        
        .feature-item i {
            color: #10b981;
            margin-top: 3px;
        }
        
        /* Formats & Standards Section */
        .formats-section {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            border: 2px solid #f59e0b;
        }
        
        .formats-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }
        
        .formats-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 26px;
        }
        
        .formats-title {
            font-size: 24px;
            font-weight: 700;
            color: #92400e;
        }
        
        .formats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .format-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            border-left: 4px solid #f59e0b;
        }
        
        .format-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .format-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
        }
        
        .format-name {
            font-size: 18px;
            font-weight: 700;
            color: #92400e;
        }
        
        .format-desc {
            font-size: 15px;
            color: #475569;
            line-height: 1.6;
        }
        
        /* Accessibility Section */
        .accessibility-section {
            margin: 40px 0;
        }
        
        .accessibility-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        
        .access-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.07);
            border: 1px solid #e2e8f0;
            transition: all 0.3s;
        }
        
        .access-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            border-color: #8b5cf6;
        }
        
        .access-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 26px;
            margin-bottom: 25px;
        }
        
        .access-title {
            font-size: 20px;
            font-weight: 700;
            color: #5b21b6;
            margin-bottom: 15px;
        }
        
        .access-desc {
            font-size: 15.5px;
            color: #475569;
            line-height: 1.6;
        }
        
        /* Responsibilities Section */
        .responsibilities-section {
            background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            border: 2px solid #a855f7;
        }
        
        .responsibilities-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }
        
        .responsibilities-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 26px;
        }
        
        .responsibilities-title {
            font-size: 24px;
            font-weight: 700;
            color: #6b21a8;
        }
        
        .responsibilities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .responsibility-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            border: 1px solid #e9d5ff;
        }
        
        .responsibility-card-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .responsibility-card-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
        }
        
        .responsibility-card-title {
            font-size: 18px;
            font-weight: 700;
            color: #6b21a8;
        }
        
        .responsibility-card-desc {
            font-size: 15px;
            color: #475569;
            line-height: 1.6;
        }
        
        /* For Authors & Readers Section */
        .users-section {
            margin: 40px 0;
        }
        
        .users-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        
        .user-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.07);
            border-top: 5px solid #10b981;
        }
        
        .user-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .user-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
        }
        
        .user-title {
            font-size: 20px;
            font-weight: 700;
            color: #065f46;
        }
        
        .user-content {
            font-size: 15.5px;
            color: #475569;
            line-height: 1.6;
        }
        
        .access-list {
            margin-top: 15px;
            padding-left: 20px;
        }
        
        .access-list li {
            margin-bottom: 8px;
            font-size: 14.5px;
            color: #475569;
        }
        
        /* Contact Section */
        .contact-section {
            background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
            border-radius: 12px;
            padding: 30px;
            margin-top: 40px;
            text-align: center;
            border: 2px solid #db2777;
            position: relative;
            overflow: hidden;
        }
        
        .contact-title {
            font-size: 24px;
            font-weight: 700;
            color: #9d174d;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }
        
        .contact-text {
            font-size: 16px;
            color: #9d174d;
            margin-bottom: 25px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }
        
        .contact-email {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #db2777 0%, #be185d 100%);
            color: white;
            padding: 15px 30px;
            border-radius: 10px;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 6px 15px rgba(219, 39, 119, 0.3);
        }
        
        .contact-email:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(219, 39, 119, 0.4);
        }
        
        /* Footer */
        .journal-footer {
            background: #0c4a6e;
            color: white;
            padding: 20px 30px;
            text-align: center;
            font-size: 13px;
            border-top: 5px solid #dc2626;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .footer-logo {
            height: 40px;
            filter: brightness(0) invert(1);
        }
        
        .footer-text {
            opacity: 0.9;
            line-height: 1.5;
        }
        
        /* Responsive Design */
        @media (max-width: 900px) {
            .journal-header {
                flex-direction: column;
                gap: 15px;
                padding: 20px;
            }
            
            .header-left {
                width: 100%;
            }
            
            .journal-abbreviation {
                align-self: flex-start;
            }
            
            .methods-grid, .formats-grid, .accessibility-grid, .responsibilities-grid, .users-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
        }
        
        @media (max-width: 600px) {
            body {
                padding: 10px;
            }
            
            .journal-header, .policy-section, .page-title-section {
                padding: 20px;
            }
            
            .journal-title {
                font-size: 19px;
            }
            
            .page-title {
                font-size: 26px;
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .page-subtitle {
                margin-left: 0;
            }
            
            .section-header, .formats-header, .responsibilities-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .section-icon, .formats-icon, .responsibilities-icon {
                margin-right: 0;
            }
            
            .contact-email {
                font-size: 16px;
                padding: 12px 25px;
            }
        }
        .journal-container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            border: 1px solid #e2e8f0;
        }
        
        /* Enhanced Professional Header */
        .journal-header {
            background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
            color: white;
            padding: 15px 30px 12px 30px;
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            border-bottom: 5px solid #dc2626;
            min-height: 120px;
        }
        
        .header-left {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            flex: 1;
            min-width: 0;
        }
        
        .logo-container {
            flex-shrink: 0;
            position: relative;
        }
        
        .logo-img {
            height: 75px;
            width: auto;
            filter: brightness(0) invert(1);
            object-fit: contain;
        }
        
        .issn-badge {
            position: absolute;
            bottom: -8px;
            right: -5px;
            background: #dc2626;
            color: white;
            font-size: 9px;
            font-weight: 600;
            padding: 2px 6px;
            border-radius: 3px;
            white-space: nowrap;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        .header-text-content {
            flex: 1;
            min-width: 0;
            padding-top: 5px;
        }
        
        .journal-title {
            font-size: 22px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 4px;
            color: white;
            letter-spacing: -0.2px;
        }
        
        .journal-subtitle {
            font-size: 13px;
            opacity: 0.95;
            margin-bottom: 6px;
            line-height: 1.4;
            font-weight: 400;
        }
        
        .issn-details {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 5px;
        }
        
        .issn-item {
            font-size: 11px;
            font-weight: 600;
            background: rgba(255, 255, 255, 0.15);
            padding: 3px 8px;
            border-radius: 4px;
            letter-spacing: 0.3px;
        }
        
        .journal-abbreviation {
            background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
            color: white;
            font-weight: 800;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 22px;
            letter-spacing: 1.5px;
            align-self: flex-start;
            margin-top: 5px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            text-shadow: 0 1px 2px rgba(0,0,0,0.2);
            border: 1px solid rgba(255,255,255,0.1);
        }
        
        /* Page Title Section */
        .page-title-section {
            background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
            padding: 30px;
            border-bottom: 1px solid #d8b4fe;
            position: relative;
            overflow: hidden;
        }
        
        .page-title-section:before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(147, 51, 234, 0.05) 100%);
            border-radius: 50%;
            transform: translate(50%, -50%);
        }
        
        .page-title {
            font-size: 32px;
            font-weight: 800;
            color: #6b21a8;
            display: flex;
            align-items: center;
            gap: 20px;
            position: relative;
            z-index: 1;
        }
        
        .page-title-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 26px;
            box-shadow: 0 6px 12px rgba(168, 85, 247, 0.3);
        }
        
        .page-subtitle {
            font-size: 17px;
            color: #6b21a8;
            margin-top: 15px;
            margin-left: 80px;
            max-width: 800px;
            line-height: 1.5;
            font-weight: 500;
            position: relative;
            z-index: 1;
        }
        
        /* Policy Content Section */
        .policy-section {
            padding: 30px;
        }
        
        /* Hero Statement */
        .hero-statement {
            background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 40px;
            border-left: 6px solid #a855f7;
            position: relative;
            overflow: hidden;
        }
        
        .hero-statement:before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 150px;
            height: 150px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23a855f7' fill-opacity='0.1' d='M0,0 L100,0 L100,100 L0,100 Z'/%3E%3C/svg%3E");
            opacity: 0.1;
        }
        
        .hero-text {
            font-size: 17px;
            line-height: 1.7;
            color: #6b21a8;
            position: relative;
            z-index: 1;
        }
        
        /* Publication Frequency Highlight */
        .frequency-highlight {
            background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
            border: 2px solid #22c55e;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .frequency-highlight:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, #22c55e 0%, #16a34a 100%);
        }
        
        .frequency-badge {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: white;
            padding: 20px 30px;
            border-radius: 12px;
            margin-bottom: 25px;
            box-shadow: 0 6px 15px rgba(34, 197, 94, 0.15);
            border: 2px solid #bbf7d0;
        }
        
        .frequency-icon {
            font-size: 48px;
            color: #22c55e;
        }
        
        .frequency-title {
            font-size: 28px;
            font-weight: 800;
            color: #15803d;
            text-align: left;
        }
        
        .frequency-subtitle {
            font-size: 14px;
            color: #16a34a;
            font-weight: 600;
            text-align: left;
            margin-top: 5px;
        }
        
        .frequency-description {
            font-size: 16px;
            color: #15803d;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Publication Model Section */
        .model-section {
            margin: 40px 0;
        }
        
        .section-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e2e8f0;
        }
        
        .section-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .section-title {
            font-size: 26px;
            font-weight: 700;
            color: #0c4a6e;
        }
        
        /* Continuous Publication Model */
        .continuous-model {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
            border: 2px solid #0ea5e9;
        }
        
        .model-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }
        
        .model-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 26px;
        }
        
        .model-title {
            font-size: 24px;
            font-weight: 700;
            color: #0369a1;
        }
        
        .model-steps {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 25px;
        }
        
        .model-step {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            border-top: 4px solid #0ea5e9;
            transition: transform 0.3s;
        }
        
        .model-step:hover {
            transform: translateY(-5px);
        }
        
        .step-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            margin-bottom: 20px;
        }
        
        .step-title {
            font-size: 18px;
            font-weight: 700;
            color: #0369a1;
            margin-bottom: 10px;
        }
        
        .step-desc {
            font-size: 15px;
            color: #475569;
            line-height: 1.6;
        }
        
        /* Issue Structure Section */
        .structure-section {
            margin: 40px 0;
        }
        
        .structure-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        
        .structure-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.07);
            border-top: 5px solid #f59e0b;
            transition: all 0.3s;
        }
        
        .structure-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .structure-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 26px;
            margin-bottom: 25px;
        }
        
        .structure-title {
            font-size: 20px;
            font-weight: 700;
            color: #92400e;
            margin-bottom: 15px;
        }
        
        .structure-desc {
            font-size: 15.5px;
            color: #475569;
            line-height: 1.6;
        }
        
        .issue-example {
            background: #fef3c7;
            border-radius: 8px;
            padding: 15px;
            margin-top: 15px;
            font-family: 'Courier New', monospace;
            font-size: 14px;
            color: #92400e;
            text-align: center;
            font-weight: 600;
        }
        
        /* Special Issues Section */
        .special-section {
            background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            border: 2px solid #ef4444;
        }
        
        .special-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .special-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 26px;
        }
        
        .special-title {
            font-size: 24px;
            font-weight: 700;
            color: #991b1b;
        }
        
        .special-content {
            font-size: 16px;
            color: #991b1b;
            line-height: 1.6;
        }
        
        /* Notification Services */
        .notification-section {
            margin: 40px 0;
        }
        
        .notification-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 25px;
        }
        
        .notification-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
            border: 1px solid #e2e8f0;
            transition: all 0.3s;
            text-align: center;
        }
        
        .notification-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        
        .notification-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 26px;
            margin: 0 auto 20px;
        }
        
        .notification-title {
            font-size: 18px;
            font-weight: 700;
            color: #5b21b6;
            margin-bottom: 10px;
        }
        
        .notification-desc {
            font-size: 14.5px;
            color: #475569;
            line-height: 1.6;
        }
        
        /* Commitment Section */
        .commitment-section {
            background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
            border-radius: 12px;
            padding: 40px;
            margin: 40px 0;
            text-align: center;
            border: 2px solid #10b981;
        }
        
        .commitment-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 36px;
            margin: 0 auto 25px;
            box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
        }
        
        .commitment-text {
            font-size: 20px;
            font-weight: 600;
            color: #065f46;
            line-height: 1.5;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Contact Section */
        .contact-section {
            background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
            border-radius: 12px;
            padding: 30px;
            margin-top: 40px;
            text-align: center;
            border: 2px solid #db2777;
            position: relative;
            overflow: hidden;
        }
        
        .contact-title {
            font-size: 24px;
            font-weight: 700;
            color: #9d174d;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }
        
        .contact-text {
            font-size: 16px;
            color: #9d174d;
            margin-bottom: 25px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }
        
        .contact-email {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #db2777 0%, #be185d 100%);
            color: white;
            padding: 15px 30px;
            border-radius: 10px;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 6px 15px rgba(219, 39, 119, 0.3);
        }
        
        .contact-email:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(219, 39, 119, 0.4);
        }
        
        /* Footer */
        .journal-footer {
            background: #0c4a6e;
            color: white;
            padding: 20px 30px;
            text-align: center;
            font-size: 13px;
            border-top: 5px solid #dc2626;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .footer-logo {
            height: 40px;
            filter: brightness(0) invert(1);
        }
        
        .footer-text {
            opacity: 0.9;
            line-height: 1.5;
        }
        
        /* Responsive Design */
        @media (max-width: 900px) {
            .journal-header {
                flex-direction: column;
                gap: 15px;
                padding: 20px;
            }
            
            .header-left {
                width: 100%;
            }
            
            .journal-abbreviation {
                align-self: flex-start;
            }
            
            .model-steps, .structure-grid, .notification-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
        }
        
        @media (max-width: 600px) {
            body {
                padding: 10px;
            }
            
            .journal-header, .policy-section, .page-title-section {
                padding: 20px;
            }
            
            .journal-title {
                font-size: 19px;
            }
            
            .page-title {
                font-size: 26px;
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .page-subtitle {
                margin-left: 0;
            }
            
            .frequency-badge {
                flex-direction: column;
                text-align: center;
                padding: 20px;
            }
            
            .frequency-title, .frequency-subtitle {
                text-align: center;
            }
            
            .section-header, .model-header, .special-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .section-icon, .model-icon, .special-icon {
                margin-right: 0;
            }
            
            .contact-email {
                font-size: 16px;
                padding: 12px 25px;
            }
        }
        .journal-container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            border: 1px solid #e2e8f0;
        }
        
        /* Enhanced Professional Header */
        .journal-header {
            background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
            color: white;
            padding: 15px 30px 12px 30px;
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            border-bottom: 5px solid #dc2626;
            min-height: 120px;
        }
        
        .header-left {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            flex: 1;
            min-width: 0;
        }
        
        .logo-container {
            flex-shrink: 0;
            position: relative;
        }
        
        .logo-img {
            height: 75px;
            width: auto;
            filter: brightness(0) invert(1);
            object-fit: contain;
        }
        
        .issn-badge {
            position: absolute;
            bottom: -8px;
            right: -5px;
            background: #dc2626;
            color: white;
            font-size: 9px;
            font-weight: 600;
            padding: 2px 6px;
            border-radius: 3px;
            white-space: nowrap;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        .header-text-content {
            flex: 1;
            min-width: 0;
            padding-top: 5px;
        }
        
        .journal-title {
            font-size: 22px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 4px;
            color: white;
            letter-spacing: -0.2px;
        }
        
        .journal-subtitle {
            font-size: 13px;
            opacity: 0.95;
            margin-bottom: 6px;
            line-height: 1.4;
            font-weight: 400;
        }
        
        .issn-details {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 5px;
        }
        
        .issn-item {
            font-size: 11px;
            font-weight: 600;
            background: rgba(255, 255, 255, 0.15);
            padding: 3px 8px;
            border-radius: 4px;
            letter-spacing: 0.3px;
        }
        
        .journal-abbreviation {
            background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
            color: white;
            font-weight: 800;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 22px;
            letter-spacing: 1.5px;
            align-self: flex-start;
            margin-top: 5px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            text-shadow: 0 1px 2px rgba(0,0,0,0.2);
            border: 1px solid rgba(255,255,255,0.1);
        }
        
        /* Page Title Section */
        .page-title-section {
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
            padding: 30px;
            border-bottom: 1px solid #93c5fd;
            position: relative;
            overflow: hidden;
        }
        
        .page-title-section:before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
            border-radius: 50%;
            transform: translate(50%, -50%);
        }
        
        .page-title {
            font-size: 32px;
            font-weight: 800;
            color: #1e40af;
            display: flex;
            align-items: center;
            gap: 20px;
            position: relative;
            z-index: 1;
        }
        
        .page-title-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 26px;
            box-shadow: 0 6px 12px rgba(59, 130, 246, 0.3);
        }
        
        .page-subtitle {
            font-size: 17px;
            color: #1e40af;
            margin-top: 15px;
            margin-left: 80px;
            max-width: 800px;
            line-height: 1.5;
            font-weight: 500;
            position: relative;
            z-index: 1;
        }
        
        /* Policy Content Section */
        .policy-section {
            padding: 30px;
        }
        
        /* Hero Statement */
        .hero-statement {
            background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 40px;
            border-left: 6px solid #3b82f6;
            position: relative;
            overflow: hidden;
        }
        
        .hero-statement:before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 150px;
            height: 150px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%233b82f6' fill-opacity='0.1' d='M0,0 L100,0 L100,100 L0,100 Z'/%3E%3C/svg%3E");
            opacity: 0.1;
        }
        
        .hero-text {
            font-size: 17px;
            line-height: 1.7;
            color: #1e40af;
            position: relative;
            z-index: 1;
        }
        
        /* Bilingual Highlight */
        .bilingual-highlight {
            background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
            border: 2px solid #10b981;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .bilingual-highlight:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, #10b981 0%, #059669 100%);
        }
        
        .language-badge {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 25px;
        }
        
        .language-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            background: white;
            padding: 25px;
            border-radius: 12px;
            min-width: 200px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s;
        }
        
        .language-item:hover {
            transform: translateY(-5px);
        }
        
        .language-icon {
            width: 70px;
            height: 70px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: white;
        }
        
        .language-icon.english {
            background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
        }
        
        .language-icon.arabic {
            background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
        }
        
        .language-name {
            font-size: 24px;
            font-weight: 700;
        }
        
        .language-name.english {
            color: #1e40af;
        }
        
        .language-name.arabic {
            color: #991b1b;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .language-subtitle {
            font-size: 14px;
            color: #64748b;
            font-weight: 600;
        }
        
        .bilingual-description {
            font-size: 16px;
            color: #065f46;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Submission Process Section */
        .process-section {
            margin: 40px 0;
        }
        
        .section-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e2e8f0;
        }
        
        .section-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .section-title {
            font-size: 26px;
            font-weight: 700;
            color: #0c4a6e;
        }
        
        /* Language Process Cards */
        .language-process {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        
        .process-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.07);
            border-top: 5px solid;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .process-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.12);
        }
        
        .process-card.english {
            border-color: #3b82f6;
        }
        
        .process-card.arabic {
            border-color: #dc2626;
        }
        
        .process-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .process-language-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            color: white;
        }
        
        .process-language-icon.english {
            background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
        }
        
        .process-language-icon.arabic {
            background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
        }
        
        .process-language-title {
            font-size: 22px;
            font-weight: 700;
        }
        
        .process-language-title.english {
            color: #1e40af;
        }
        
        .process-language-title.arabic {
            color: #991b1b;
        }
        
        .process-content {
            font-size: 15.5px;
            color: #475569;
            line-height: 1.6;
        }
        
        .process-features {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #e2e8f0;
        }
        
        .process-feature {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 10px;
            font-size: 14.5px;
            color: #64748b;
        }
        
        .process-feature i {
            color: #10b981;
            margin-top: 3px;
        }
        
        /* Bilingual Metadata Section */
        .metadata-section {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            border: 2px solid #f59e0b;
        }
        
        .metadata-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }
        
        .metadata-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 26px;
        }
        
        .metadata-title {
            font-size: 24px;
            font-weight: 700;
            color: #92400e;
        }
        
        .metadata-content {
            font-size: 16px;
            color: #92400e;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .metadata-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        
        .metadata-item {
            background: white;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            border: 1px solid #fde68a;
        }
        
        .metadata-item-title {
            font-size: 16px;
            font-weight: 700;
            color: #92400e;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .metadata-item-title i {
            color: #f59e0b;
        }
        
        .metadata-languages {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 10px;
        }
        
        .language-tag {
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }
        
        .language-tag.english {
            background: rgba(59, 130, 246, 0.1);
            color: #1d4ed8;
            border: 1px solid rgba(59, 130, 246, 0.3);
        }
        
        .language-tag.arabic {
            background: rgba(220, 38, 38, 0.1);
            color: #991b1b;
            border: 1px solid rgba(220, 38, 38, 0.3);
        }
        
        /* Peer Review Section */
        .review-section {
            margin: 40px 0;
        }
        
        .review-content {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.07);
            border-left: 5px solid #8b5cf6;
        }
        
        .review-features {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 25px;
        }
        
        .review-feature {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .review-feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            flex-shrink: 0;
        }
        
        .review-feature-content {
            flex: 1;
        }
        
        .review-feature-title {
            font-size: 17px;
            font-weight: 700;
            color: #5b21b6;
            margin-bottom: 8px;
        }
        
        .review-feature-desc {
            font-size: 15px;
            color: #475569;
            line-height: 1.6;
        }
        
        /* Linguistic Support Section */
        .support-section {
            background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            border: 2px solid #a855f7;
        }
        
        .support-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }
        
        .support-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 26px;
        }
        
        .support-title {
            font-size: 24px;
            font-weight: 700;
            color: #6b21a8;
        }
        
        .support-content {
            font-size: 16px;
            color: #6b21a8;
            line-height: 1.6;
        }
        
        .support-list {
            margin-top: 20px;
            padding-left: 20px;
        }
        
        .support-list li {
            margin-bottom: 10px;
            font-size: 15.5px;
            color: #6b21a8;
        }
        
        /* Author Responsibilities */
        .responsibilities-section {
            margin: 40px 0;
        }
        
        .responsibilities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        
        .responsibility-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.07);
            border: 1px solid #e2e8f0;
            transition: all 0.3s;
        }
        
        .responsibility-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            border-color: #8b5cf6;
        }
        
        .responsibility-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 26px;
            margin-bottom: 25px;
        }
        
        .responsibility-title {
            font-size: 20px;
            font-weight: 700;
            color: #0c4a6e;
            margin-bottom: 15px;
        }
        
        .responsibility-desc {
            font-size: 15.5px;
            color: #475569;
            line-height: 1.6;
        }
        
        /* Commitment Section */
        .commitment-section {
            background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
            border-radius: 12px;
            padding: 40px;
            margin: 40px 0;
            text-align: center;
            border: 2px solid #10b981;
        }
        
        .commitment-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 36px;
            margin: 0 auto 25px;
            box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
        }
        
        .commitment-text {
            font-size: 20px;
            font-weight: 600;
            color: #065f46;
            line-height: 1.5;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Contact Section */
        .contact-section {
            background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
            border-radius: 12px;
            padding: 30px;
            margin-top: 40px;
            text-align: center;
            border: 2px solid #db2777;
            position: relative;
            overflow: hidden;
        }
        
        .contact-title {
            font-size: 24px;
            font-weight: 700;
            color: #9d174d;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }
        
        .contact-text {
            font-size: 16px;
            color: #9d174d;
            margin-bottom: 25px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }
        
        .contact-email {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #db2777 0%, #be185d 100%);
            color: white;
            padding: 15px 30px;
            border-radius: 10px;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 6px 15px rgba(219, 39, 119, 0.3);
        }
        
        .contact-email:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(219, 39, 119, 0.4);
        }
        
        /* Footer */
        .journal-footer {
            background: #0c4a6e;
            color: white;
            padding: 20px 30px;
            text-align: center;
            font-size: 13px;
            border-top: 5px solid #dc2626;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .footer-logo {
            height: 40px;
            filter: brightness(0) invert(1);
        }
        
        .footer-text {
            opacity: 0.9;
            line-height: 1.5;
        }
        
        /* Responsive Design */
        @media (max-width: 900px) {
            .journal-header {
                flex-direction: column;
                gap: 15px;
                padding: 20px;
            }
            
            .header-left {
                width: 100%;
            }
            
            .journal-abbreviation {
                align-self: flex-start;
            }
            
            .language-badge {
                flex-direction: column;
            }
            
            .language-process, .metadata-grid, .review-features, .responsibilities-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
        }
        
        @media (max-width: 600px) {
            body {
                padding: 10px;
            }
            
            .journal-header, .policy-section, .page-title-section {
                padding: 20px;
            }
            
            .journal-title {
                font-size: 19px;
            }
            
            .page-title {
                font-size: 26px;
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .page-subtitle {
                margin-left: 0;
            }
            
            .section-header, .metadata-header, .support-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .section-icon, .metadata-icon, .support-icon {
                margin-right: 0;
            }
            
            .contact-email {
                font-size: 16px;
                padding: 12px 25px;
            }
        }

        .journal-container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            border: 1px solid #e2e8f0;
        }
        
        /* Enhanced Professional Header */
        .journal-header {
            background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
            color: white;
            padding: 15px 30px 12px 30px;
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            border-bottom: 5px solid #dc2626;
            min-height: 120px;
        }
        
        .header-left {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            flex: 1;
            min-width: 0;
        }
        
        .logo-container {
            flex-shrink: 0;
            position: relative;
        }
        
        .logo-img {
            height: 75px;
            width: auto;
            filter: brightness(0) invert(1);
            object-fit: contain;
        }
        
        .issn-badge {
            position: absolute;
            bottom: -8px;
            right: -5px;
            background: #dc2626;
            color: white;
            font-size: 9px;
            font-weight: 600;
            padding: 2px 6px;
            border-radius: 3px;
            white-space: nowrap;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        .header-text-content {
            flex: 1;
            min-width: 0;
            padding-top: 5px;
        }
        
        .journal-title {
            font-size: 22px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 4px;
            color: white;
            letter-spacing: -0.2px;
        }
        
        .journal-subtitle {
            font-size: 13px;
            opacity: 0.95;
            margin-bottom: 6px;
            line-height: 1.4;
            font-weight: 400;
        }
        
        .issn-details {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 5px;
        }
        
        .issn-item {
            font-size: 11px;
            font-weight: 600;
            background: rgba(255, 255, 255, 0.15);
            padding: 3px 8px;
            border-radius: 4px;
            letter-spacing: 0.3px;
        }
        
        .journal-abbreviation {
            background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
            color: white;
            font-weight: 800;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 22px;
            letter-spacing: 1.5px;
            align-self: flex-start;
            margin-top: 5px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            text-shadow: 0 1px 2px rgba(0,0,0,0.2);
            border: 1px solid rgba(255,255,255,0.1);
        }
        
        /* Page Title Section */
        .page-title-section {
            background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
            padding: 30px;
            border-bottom: 1px solid #86efac;
            position: relative;
            overflow: hidden;
        }
        
        .page-title-section:before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(21, 128, 61, 0.05) 100%);
            border-radius: 50%;
            transform: translate(50%, -50%);
        }
        
        .page-title {
            font-size: 32px;
            font-weight: 800;
            color: #15803d;
            display: flex;
            align-items: center;
            gap: 20px;
            position: relative;
            z-index: 1;
        }
        
        .page-title-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 26px;
            box-shadow: 0 6px 12px rgba(34, 197, 94, 0.3);
        }
        
        .page-subtitle {
            font-size: 17px;
            color: #15803d;
            margin-top: 15px;
            margin-left: 80px;
            max-width: 800px;
            line-height: 1.5;
            font-weight: 500;
            position: relative;
            z-index: 1;
        }
        
        /* Policy Content Section */
        .policy-section {
            padding: 30px;
        }
        
        /* Hero Statement */
        .hero-statement {
            background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 40px;
            border-left: 6px solid #22c55e;
            position: relative;
            overflow: hidden;
        }
        
        .hero-statement:before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 150px;
            height: 150px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%2322c55e' fill-opacity='0.1' d='M0,0 L100,0 L100,100 L0,100 Z'/%3E%3C/svg%3E");
            opacity: 0.1;
        }
        
        .hero-text {
            font-size: 17px;
            line-height: 1.7;
            color: #15803d;
            position: relative;
            z-index: 1;
        }
        
        /* Copyright Retention Highlight */
        .copyright-highlight {
            background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
            border: 2px solid #3b82f6;
            position: relative;
            overflow: hidden;
        }
        
        .copyright-highlight:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, #3b82f6 0%, #1d4ed8 100%);
        }
        
        .copyright-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }
        
        .copyright-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 32px;
        }
        
        .copyright-title {
            font-size: 28px;
            font-weight: 800;
            color: #1e40af;
        }
        
        .copyright-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 25px;
        }
        
        .copyright-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
            border-top: 4px solid #3b82f6;
            transition: transform 0.3s;
        }
        
        .copyright-card:hover {
            transform: translateY(-5px);
        }
        
        .copyright-card-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            margin-bottom: 20px;
        }
        
        .copyright-card-title {
            font-size: 18px;
            font-weight: 700;
            color: #1e40af;
            margin-bottom: 12px;
        }
        
        .copyright-card-desc {
            font-size: 15px;
            color: #475569;
            line-height: 1.6;
        }
        
        /* CC License Section */
        .license-section {
            margin: 40px 0;
        }
        
        .section-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e2e8f0;
        }
        
        .section-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .section-title {
            font-size: 26px;
            font-weight: 700;
            color: #0c4a6e;
        }
        
        /* CC License Badge */
        .cc-license-badge {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            border-radius: 12px;
            padding: 30px;
            margin: 25px 0;
            text-align: center;
            border: 2px solid #f59e0b;
        }
        
        .cc-badge-content {
            display: inline-flex;
            align-items: center;
            gap: 25px;
            background: white;
            padding: 25px 35px;
            border-radius: 12px;
            margin-bottom: 20px;
            box-shadow: 0 6px 15px rgba(245, 158, 11, 0.15);
        }
        
        .cc-icon-large {
            font-size: 64px;
            color: #f59e0b;
        }
        
        .cc-text-content {
            text-align: left;
        }
        
        .cc-license-title {
            font-size: 28px;
            font-weight: 800;
            color: #92400e;
            margin-bottom: 5px;
        }
        
        .cc-license-subtitle {
            font-size: 16px;
            color: #b45309;
            font-weight: 600;
        }
        
        .cc-description {
            font-size: 16px;
            color: #92400e;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* License Permissions */
        .permissions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .permission-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.07);
            border-top: 5px solid #22c55e;
            transition: all 0.3s;
        }
        
        .permission-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.12);
        }
        
        .permission-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 26px;
            margin-bottom: 25px;
        }
        
        .permission-title {
            font-size: 20px;
            font-weight: 700;
            color: #15803d;
            margin-bottom: 15px;
        }
        
        .permission-desc {
            font-size: 15.5px;
            color: #475569;
            line-height: 1.6;
        }
        
        /* Attribution Condition */
        .attribution-section {
            background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
            border: 2px solid #ef4444;
        }
        
        .attribution-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .attribution-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 26px;
        }
        
        .attribution-title {
            font-size: 24px;
            font-weight: 700;
            color: #991b1b;
        }
        
        .attribution-content {
            font-size: 16px;
            color: #991b1b;
            line-height: 1.6;
        }
        
        /* Rights Sections */
        .rights-sections {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        
        .rights-section {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.07);
            border: 1px solid #e2e8f0;
        }
        
        .rights-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .rights-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
        }
        
        .rights-title {
            font-size: 22px;
            font-weight: 700;
            color: #5b21b6;
        }
        
        .rights-content {
            font-size: 15.5px;
            color: #475569;
            line-height: 1.6;
        }
        
        .rights-list {
            margin-top: 15px;
            padding-left: 20px;
        }
        
        .rights-list li {
            margin-bottom: 10px;
            font-size: 15px;
            color: #475569;
        }
        
        /* Third-Party Material */
        .thirdparty-section {
            background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            border: 2px solid #a855f7;
        }
        
        .thirdparty-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }
        
        .thirdparty-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 26px;
        }
        
        .thirdparty-title {
            font-size: 24px;
            font-weight: 700;
            color: #6b21a8;
        }
        
        .thirdparty-content {
            font-size: 16px;
            color: #6b21a8;
            line-height: 1.6;
        }
        
        .thirdparty-list {
            margin-top: 20px;
            padding-left: 20px;
        }
        
        .thirdparty-list li {
            margin-bottom: 10px;
            font-size: 15.5px;
            color: #6b21a8;
        }
        
        /* Practical Procedures */
        .procedures-section {
            margin: 40px 0;
        }
        
        .procedures-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 25px;
        }
        
        .procedure-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
            border-left: 4px solid #0ea5e9;
        }
        
        .procedure-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .procedure-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
        }
        
        .procedure-title {
            font-size: 18px;
            font-weight: 700;
            color: #0369a1;
        }
        
        .procedure-content {
            font-size: 15px;
            color: #475569;
            line-height: 1.6;
        }
        
        .attribution-example {
            background: #f0f9ff;
            border-radius: 8px;
            padding: 15px;
            margin-top: 15px;
            font-family: 'Courier New', monospace;
            font-size: 14px;
            color: #0369a1;
            border: 1px solid #bae6fd;
        }
        
        /* Contact Section */
        .contact-section {
            background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
            border-radius: 12px;
            padding: 30px;
            margin-top: 40px;
            text-align: center;
            border: 2px solid #db2777;
            position: relative;
            overflow: hidden;
        }
        
        .contact-title {
            font-size: 24px;
            font-weight: 700;
            color: #9d174d;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }
        
        .contact-text {
            font-size: 16px;
            color: #9d174d;
            margin-bottom: 25px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }
        
        .contact-email {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #db2777 0%, #be185d 100%);
            color: white;
            padding: 15px 30px;
            border-radius: 10px;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 6px 15px rgba(219, 39, 119, 0.3);
        }
        
        .contact-email:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(219, 39, 119, 0.4);
        }
        
        /* Footer */
        .journal-footer {
            background: #0c4a6e;
            color: white;
            padding: 20px 30px;
            text-align: center;
            font-size: 13px;
            border-top: 5px solid #dc2626;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .footer-logo {
            height: 40px;
            filter: brightness(0) invert(1);
        }
        
        .footer-text {
            opacity: 0.9;
            line-height: 1.5;
        }
        
        /* Responsive Design */
        @media (max-width: 900px) {
            .journal-header {
                flex-direction: column;
                gap: 15px;
                padding: 20px;
            }
            
            .header-left {
                width: 100%;
            }
            
            .journal-abbreviation {
                align-self: flex-start;
            }
            
            .copyright-grid, .permissions-grid, .rights-sections, .procedures-grid {
                grid-template-columns: 1fr;
            }
            
            .cc-badge-content {
                flex-direction: column;
                text-align: center;
                padding: 20px;
            }
            
            .cc-text-content {
                text-align: center;
            }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
        }
        
        @media (max-width: 600px) {
            body {
                padding: 10px;
            }
            
            .journal-header, .policy-section, .page-title-section {
                padding: 20px;
            }
            
            .journal-title {
                font-size: 19px;
            }
            
            .page-title {
                font-size: 26px;
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .page-subtitle {
                margin-left: 0;
            }
            
            .section-header, .copyright-header, .attribution-header, .thirdparty-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .section-icon, .copyright-icon, .attribution-icon, .thirdparty-icon {
                margin-right: 0;
            }
            
            .contact-email {
                font-size: 16px;
                padding: 12px 25px;
            }
        }