<style>
        .zenodo-publications {
            max-width: 1000px;
            margin: 0 auto;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            padding: 20px;
            scroll-behavior: smooth;
        }
        
        /* Header Styles */
        .intrig-header {
            text-align: center;
            padding: 40px 20px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 12px;
            margin-bottom: 30px;
            border: 1px solid #dee2e6;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .intrig-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }
        
        .logo-image {
            height: 60px;
            width: auto;
            object-fit: contain;
        }
        
        .logo-placeholder {
            height: 60px;
            width: 200px;
            background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 14px;
            text-shadow: 0 1px 2px rgba(0,0,0,0.3);
        }
        
        .intrig-title {
            font-size: 42px;
            font-weight: bold;
            color: #2c3e50;
            margin: 0;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        
        .intrig-subtitle {
            font-size: 16px;
            color: #7f8c8d;
            margin: 10px 0 0 0;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .intrig-description {
            font-size: 14px;
            color: #95a5a6;
            margin: 5px 0 0 0;
            font-style: italic;
        }
        
        .loading {
            text-align: center;
            padding: 40px;
            color: #666;
            font-size: 18px;
        }
        
        .loading::after {
            content: '';
            display: inline-block;
            width: 20px;
            height: 20px;
            margin-left: 10px;
            border: 2px solid #f3f3f3;
            border-top: 2px solid #3498db;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .error {
            background: #f8d7da;
            color: #721c24;
            padding: 15px;
            border: 1px solid #f5c6cb;
            border-radius: 5px;
            margin: 20px 0;
        }
        
        /* Year Controls - Fixed position */
        .year-controls {
            text-align: center;
            margin: 30px 0;
            padding: 20px;
            background: rgba(248, 249, 250, 0.95);
            border-radius: 8px;
            border: 1px solid #e9ecef;
            position: sticky;
            top: 20px;
            z-index: 100;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .year-filters {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
        }
        
        .year-btn {
            background: #e9ecef;
            color: #495057;
            border: 1px solid #ced4da;
            padding: 8px 16px;
            border-radius: 20px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s;
            min-width: 60px;
            font-weight: 500;
        }
        
        .year-btn:hover {
            background: #dee2e6;
            border-color: #adb5bd;
            transform: translateY(-1px);
        }
        
        .year-btn.active {
            background: #007bff;
            color: white;
            border-color: #007bff;
            box-shadow: 0 2px 4px rgba(0,123,255,0.3);
        }
        
        .year-btn.all {
            background: #28a745;
            color: white;
            border-color: #28a745;
            font-weight: bold;
        }
        
        .year-btn.all:hover {
            background: #218838;
            border-color: #1e7e34;
        }
        
        /* Year Headers */
        .year-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 15px 20px;
            margin: 30px 0 20px 0;
            border-radius: 8px;
            font-size: 20px;
            font-weight: bold;
            text-align: center;
            position: relative;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            scroll-margin-top: 120px; /* Offset for sticky header */
            transition: all 0.3s ease;
        }
        
        .year-header:target,
        .year-header.highlighted {
            transform: scale(1.02);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        }
        
        .year-stats {
            font-size: 14px;
            font-weight: normal;
            opacity: 0.9;
            margin-top: 5px;
        }
        
        .publication {
            border-bottom: 1px solid #eee;
            padding: 20px 0;
            margin-bottom: 20px;
            transition: background-color 0.3s;
        }
        
        .publication:hover {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 20px 15px;
        }
        
        .publication:last-child {
            border-bottom: none;
        }
        
        .pub-title {
            font-size: 18px;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 8px;
            line-height: 1.4;
        }
        
        .pub-title a {
            color: #2c3e50;
            text-decoration: none;
        }
        
        .pub-title a:hover {
            color: #3498db;
            text-decoration: underline;
        }
        
        .pub-authors {
            color: #34495e;
            margin-bottom: 6px;
            font-style: italic;
        }
        
        .pub-journal {
            color: #7f8c8d;
            margin-bottom: 6px;
            font-weight: 500;
        }
        
        .pub-date {
            color: #95a5a6;
            font-size: 14px;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .pub-description {
            color: #555;
            margin-top: 10px;
            font-size: 14px;
            line-height: 1.5;
        }
        
        .pub-links {
            margin-top: 10px;
        }
        
        .pub-link {
            display: inline-block;
            margin-right: 15px;
            margin-bottom: 5px;
            padding: 5px 12px;
            background: #3498db;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-size: 12px;
            font-weight: bold;
            text-transform: uppercase;
            transition: background-color 0.3s;
        }
        
        .pub-link:hover {
            background: #2980b9;
            color: white;
        }
        
        .pub-link.doi {
            background: #e67e22;
        }
        
        .pub-link.doi:hover {
            background: #d35400;
        }
        
        .pagination {
            text-align: center;
            margin: 30px 0;
        }
        
        .pagination button {
            background: #3498db;
            color: white;
            border: none;
            padding: 8px 16px;
            margin: 0 5px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            transition: background-color 0.3s;
        }
        
        .pagination button:hover:not(:disabled) {
            background: #2980b9;
        }
        
        .pagination button:disabled {
            background: #bdc3c7;
            cursor: not-allowed;
        }
        
        .pagination .current {
            background: #2c3e50;
        }
        
        .stats {
            text-align: center;
            margin: 20px 0;
            color: #7f8c8d;
            font-size: 14px;
        }
        
        .pub-type {
            display: inline-block;
            padding: 2px 8px;
            background: #ecf0f1;
            color: #2c3e50;
            border-radius: 12px;
            font-size: 11px;
            font-weight: bold;
            text-transform: uppercase;
            margin-bottom: 8px;
        }
        
        .no-publications {
            text-align: center;
            padding: 40px;
            color: #7f8c8d;
            background: #f8f9fa;
            border-radius: 8px;
            margin: 20px 0;
        }
        
        @media (max-width: 768px) {
            .year-filters {
                justify-content: center;
                gap: 8px;
            }
            
            .year-btn {
                font-size: 13px;
                padding: 6px 12px;
                min-width: 55px;
            }
            
            .zenodo-publications {
                padding: 15px;
            }
            
            .intrig-header {
                padding: 30px 15px;
                margin-bottom: 20px;
            }
            
            .intrig-logo {
                flex-direction: column;
                gap: 15px;
            }
            
            .intrig-title {
                font-size: 32px;
                letter-spacing: 1px;
            }
            
            .intrig-subtitle {
                font-size: 14px;
                text-align: center;
            }
            
            .intrig-description {
                font-size: 13px;
                text-align: center;
            }
            
            .logo-placeholder {
                width: 150px;
                height: 50px;
                font-size: 12px;
            }
        }
    </style>