* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
            background: #000000;
            color: #fbff00;
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
            position: relative;
        }

        /* Subtle background pattern */
        .subtle-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.03;
            background: radial-gradient(circle at 25% 25%, #00ff0010 0%, transparent 50%),
                        radial-gradient(circle at 75% 75%, #00ffff08 0%, transparent 50%);
            pointer-events: none;
        }

        /* Terminal cursor blink */
        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }

        .cursor {
            display: inline-block;
            background-color: #fbff00;
            width: 10px;
            height: 20px;
            animation: blink 1s infinite;
            margin-left: 2px;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Terminal header */
        .terminal-header {
            background: #1a1a1a;
            border: 1px solid #333;
            border-radius: 8px 8px 0 0;
            padding: 10px 15px;
            margin-bottom: 0;
            color: #888;
            font-size: 0.9em;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .terminal-controls {
            display: flex;
            gap: 8px;
        }

        .terminal-btn {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }
        .btn-close { background: #1eff00;box-shadow: 0 0 6px #00ff00; }
        .btn-minimize { background: #ffae00;box-shadow: 0 0 6px #ffae00; }
        .btn-maximize { background: #ff0000;box-shadow: 0 0 6px #ff0000; }

        /* Main terminal window */
        .terminal {
            background: #000000;
            border: 1px solid #333;
            border-top: none;
            border-radius: 0 0 8px 8px;
            padding: 20px;
            flex: 1;
            font-family: 'JetBrains Mono', monospace;
            position: relative;
        }

        /* Navigation as terminal commands */
        .nav {
            text-align: center;
            margin-bottom: 30px;
            color: #00ff00;
        }

        .nav-line {
            margin-bottom: 5px;
            font-size: 0.9em;
        }

        .nav-line .prompt {
            color: #ff0000;
        }

        .nav-line .command {
            color: #09ff00;
        }

        .nav a {
            color: #fbff00;
            text-decoration: none;
            margin-right: 15px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav a:hover {
            color: #ffffff;
            text-shadow: 0 0 10px #ffee00;
        }

        .nav a::before {
            content: '> ';
            color: #ff0000;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .nav a:hover::before {
            opacity: 1;
        }

        .nav a.active {
            color: #09ff00;
            text-shadow: 0 0 10px #09ff00;
        }

        .nav a.active::before {
            opacity: 1;
            color: #09ff00;
        }

        /* Publications Header */
        .publications-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #333;
        }

        .publications-title {
            font-size: 2.5em;
            color: #fbff00;
            text-transform: lowercase;
        }

        .publications-title::after {
            content: '';
            display: inline-block;
            width: 15px;
            height: 25px;
            background: #fbff00;
            margin-left: 5px;
            animation: blink 1s infinite;
        }

        .pub-info {
            color: #adadad;
            font-size: 0.8em;
            text-align: right;
        }

        .pub-info div {
            margin-bottom: 3px;
        }

        /* Publications List */
        .publications-list {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .publication {
            background: #111111;
            border: 1px solid #333;
            border-radius: 8px;
            padding: 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .publication:hover {
            border-color: #ffe600;
            box-shadow: 0 0 20px #fbff0020;
        }

        .publication-content {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 25px;
            align-items: start;
        }

        .publication-image {
            position: relative;
            overflow: hidden;
            border-radius: 6px;
            border: 1px dashed #333;
            transition: all 0.3s ease;
        }

        .publication-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: all 0.3s ease;
            filter: brightness(0.8) contrast(1.1);
        }

        .publication:hover .publication-image {
            border-color: #2bff00;
        }

        .publication:hover .publication-image img {
            filter: brightness(1) contrast(1.2);
        }

        .publication-details {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .publication-title {
            font-size: 1.4em;
            margin-bottom: 10px;
            color: #2bff00;
            font-weight: 500;
        }

        .publication-meta {
            font-size: 0.85em;
            color: #ff0000;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .publication-meta::before {
            content: '[ ';
            color: #666;
        }

        .publication-meta::after {
            content: ' ]';
            color: #666;
        }

        .abstract-container {
            margin-bottom: 15px;
            flex: 1;
        }

        .abstract-short,
        .abstract-full {
            font-size: 0.9em;
            line-height: 1.5;
            color: #cccccc;
            text-align: justify;
        }

        .abstract-short {
            display: block;
            max-height: 3.6em; /* ~2.4 lines */
            overflow: hidden;
            position: relative;
        }

        .abstract-short::after {
            content: '...';
            position: absolute;
            bottom: 0;
            right: 0;
            background: #111111;
            padding-left: 10px;
            color: #666;
        }

        .abstract-full {
            display: none;
        }

        .show-more {
            color: #ffee00;
            cursor: pointer;
            font-size: 0.8em;
            display: inline-block;
            transition: all 0.3s ease;
            border: 1px solid #333;
            padding: 4px 8px;
            border-radius: 4px;
            background: transparent;
            font-family: inherit;
            margin-top: 10px;
        }

        .show-more::before {
            content: '$ ';
            color: #ff0000;
        }

        .show-more:hover {
            border-color: #ffee00;
            background: rgba(255, 230, 0, 0.1);
            box-shadow: 0 0 10px #fffb0020;
        }

        .publication-links {
            display: flex;
            gap: 12px;
            margin-top: 15px;
        }

        .publication-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: transparent;
            border: 1px solid #333;
            border-radius: 4px;
            transition: all 0.3s ease;
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }

        .publication-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 251, 0, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .publication-links a:hover::before {
            left: 100%;
        }

        .publication-links a:hover {
            border-color: #ffee00;
            box-shadow: 0 0 15px #fffb0030;
            transform: translateY(-2px);
        }

        .publication-links img {
            width: 20px;
            height: 20px;
            filter: brightness(0.7) contrast(1.2);
            transition: all 0.3s ease;
        }

        .publication-links a:hover img {
            filter: brightness(1) contrast(1.5);
        }

        /* Status indicators */
        .status-published {
            color: #00ff00;
        }

        .status-preprint {
            color: #ffaa00;
        }

        .status-submitted {
            color: #00ffff;
        }

        .status-draft {
            color: #ff0080;
        }

        /* Mobile responsive */
        @media (max-width: 1024px) {
            .publication-content {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .publication-image {
                max-width: 400px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 10px;
            }

            .publications-header {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }

            .pub-info {
                text-align: center;
            }

            .publication {
                padding: 15px;
            }

            .publication-content {
                gap: 15px;
            }

            .publication-title {
                font-size: 1.2em;
            }

            .publication-links {
                justify-content: center;
            }
        }

        /* Loading animation for images */
        .publication-image img {
            opacity: 0;
            animation: fadeIn 0.5s ease forwards;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        /* Publication counter */
        .publication-counter {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255, 238, 0, 0.1);
            border: 1px solid #333;
            border-radius: 4px;
            padding: 4px 8px;
            font-size: 0.7em;
            color: #666;
        }

        .publication-counter::before {
            content: '#';
        }

        /* Enhanced hover effects */
        .publication::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 217, 0, 0.03), transparent);
            transition: left 0.8s ease;
            pointer-events: none;
        }

        .publication:hover::before {
            left: 100%;
        }

        /* Scrollbar styling */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #111;
        }

        ::-webkit-scrollbar-thumb {
            background: #333;
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

        /* Empty state */
        .empty-state {
            text-align: center;
            padding: 60px 20px;
            color: #666;
        }

        .empty-state::before {
            content: '⛏️';
            display: block;
            font-size: 4em;
            margin-bottom: 20px;
            opacity: 0.3;
        }

        .empty-state h3 {
            color: #00ff00;
            margin-bottom: 15px;
            font-size: 1.5em;
        }

        .empty-state p {
            font-size: 0.9em;
            line-height: 1.6;
        }