/* Publications Page Specific Styles */
        .publications-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }
        
        .publication-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .publication-header h2 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            color: var(--title-color);
        }
        
        .publication-header .section__subtitle {
            font-size: 1.1rem;
            color: var(--text-color);
            margin-bottom: 1.5rem;
        }
        
        .publication-actions {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }
        
        .publication-card {
            display: flex;
            background: var(--container-color);
            border-radius: 1rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 2rem;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .publication-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(108, 92, 231, 0.2);
        }
        
        .publication-content {
            flex: 1;
            padding: 1.5rem;
        }
        
        .publication-cover {
            width: 200px;
            min-width: 200px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .publication-cover::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
            z-index: 1;
        }
        
        .publication-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--title-color);
        }
        
        .publication-conference {
            display: inline-block;
            font-size: 0.9rem;
            color: #fff;
            background: #6c5ce7;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            margin-bottom: 1rem;
        }
        
        .publication-authors {
            font-size: 0.95rem;
            color: var(--text-color-light);
            margin-bottom: 1rem;
        }
        
        .publication-abstract {
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--text-color);
            margin-bottom: 1.5rem;
            display: none;
            padding: 1rem;
            background: rgba(0,0,0,0.03);
            border-radius: 8px;
            border-left: 3px solid #6c5ce7;
        }
        
        .publication-abstract.show {
            display: block;
            animation: fadeIn 0.3s ease-out;
        }
        
        .publication-links {
            display: flex;
            gap: 1rem;
            flex-wrap: nowrap;
            align-items: center;
        }
        
        .paper-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: #2d3436;
            color: white;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            white-space: nowrap;
            flex-shrink: 1;
            min-width: max-content;
        }
        
        .paper-link:hover {
            background: #636e72;
        }
        
        .abstract-toggle {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: #00b894;
            color: white;
            border-radius: 5px;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-family: inherit;
            white-space: nowrap;
            flex-shrink: 1;
            min-width: max-content;
        }
        
        .abstract-toggle:hover {
            background: #00997b;
        }
        
        .default-cover {
            background: linear-gradient(135deg, #0984e3 0%, #6c5ce7 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            font-weight: bold;
            text-align: center;
        }
        
        .default-cover span {
            transform: rotate(-15deg);
            text-align: center;
            padding: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            width: 100%;
        }
        
        .authors-toggle {
            color: #e84393;
            text-decoration: underline;
            cursor: pointer;
            font-size: 0.9rem;
            margin-left: 0.5rem;
            transition: color 0.2s;
        }
        
        .authors-toggle:hover {
            color: #fd79a8;
        }
        
        .authors-list {
            display: none;
            font-size: 0.9rem;
            color: var(--text-color-light);
            margin-top: 0.5rem;
            padding-left: 1rem;
            border-left: 2px solid #e84393;
            animation: fadeIn 0.3s ease-out;
        }
        
        .authors-list.show {
            display: block;
        }
        
        .button--flex {
            background: #d63031;
            color: white;
        }
        
        .button--flex:hover {
            background: #ff7675;
        }
        
        .home__scroll-button {
            background: transparent;
            color: #2d3436;
        }
        
        .home__scroll-button:hover {
            background: transparent;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .publication-card {
                flex-direction: column;
            }
            
            .publication-cover {
                width: 100%;
                height: 150px;
                min-width: auto;
            }
            
            .publication-content {
                padding: 1.5rem;
            }
            
            .default-cover span {
                font-size: 1rem;
                transform: rotate(-10deg);
            }
            
            .publication-links {
                gap: 0.75rem;
            }
            
            .paper-link,
            .abstract-toggle {
                padding: 0.5rem 0.8rem;
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 480px) {
            .publication-links {
                gap: 0.5rem;
            }
            
            .paper-link,
            .abstract-toggle {
                padding: 0.4rem 0.7rem;
                font-size: 0.85rem;
            }
            
            .paper-link i,
            .abstract-toggle i {
                font-size: 0.8rem;
            }
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .publication-card {
            animation: fadeIn 0.5s ease-out forwards;
            opacity: 0;
        }
        
        .publication-card:nth-child(1) { animation-delay: 0.1s; }
        .publication-card:nth-child(2) { animation-delay: 0.2s; }
        .publication-card:nth-child(3) { animation-delay: 0.3s; }
        .publication-card:nth-child(4) { animation-delay: 0.4s; }
    


        /* Hamburger Menu Animation */
        .hamburger {
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          width: 24px;
          height: 18px;
          cursor: pointer;
        }

        .hamburger span {
          display: block;
          width: 100%;
          height: 3px;
          background-color: var(--title-color);
          transition: all 0.3s ease;
        }

        /* Animation when menu is open */
        .show-menu .hamburger span:nth-child(1) {
          transform: translateY(7px) rotate(45deg);
        }

        .show-menu .hamburger span:nth-child(2) {
          opacity: 0;
        }

        .show-menu .hamburger span:nth-child(3) {
          transform: translateY(-7px) rotate(-45deg);
        }


    


        .eye-counter {
            display: flex;
            align-items: center;
            margin-right: 15px;
        }

        .eye-container {
            position: relative;
            width: 80px;
            height: 50px;
            cursor: pointer;
        }

        .eye-outer {
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at center, 
                #f0f0f0 0%, 
                #d4d4d4 30%, 
                #8a8a8a 70%, 
                #4a4a4a 100%);
            border-radius: 60% / 60%;
            box-shadow: 
                0 0 15px rgba(0,0,0,0.3),
                inset 0 0 10px rgba(255,255,255,0.5);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        /* Blood vessel effect */
        .eye-outer::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle, transparent 60%, rgba(150,50,50,0.05) 60.5%) 50% 50%/80% 80%,
                linear-gradient(100deg, rgba(200,100,100,0.1) 0%, transparent 20%, transparent 80%, rgba(200,100,100,0.1) 100%);
            border-radius: 50%;
        }

        .dark-theme .eye-outer {
            background: radial-gradient(ellipse at center, 
                #4a4a4a 0%, 
                #2a2a2a 30%, 
                #1a1a1a 70%, 
                #0a0a0a 100%);
        }

        .eye-inner {
            position: absolute;
            width: 55%;
            height: 55%;
            background: radial-gradient(circle at center, 
                #3a1d0d 0%, 
                #1a0a00 50%, 
                #0a0000 100%);
            border-radius: 50%;
            top: 22.5%;
            left: 22.5%;
            box-shadow: 
                inset 0 0 15px rgba(0,0,0,0.4),
                0 0 5px rgba(255,255,255,0.3);
            transition: all 0.2s ease;
        }

        /* Iris pattern */
        .eye-inner::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle, transparent 65%, rgba(0,0,0,0.7) 65.5%),
                repeating-radial-gradient(circle at 30% 30%, 
                    rgba(150, 50, 200, 0.3) 0%, 
                    transparent 1%, 
                    transparent 5%);
            border-radius: 50%;
        }

        .dark-theme .eye-inner {
            background: radial-gradient(circle at center, 
                #1a0a00 0%, 
                #0a0000 50%, 
                #000 100%);
        }

        .pupil {
            position: absolute;
            width: 40%;
            height: 40%;
            background: #000;
            border-radius: 50%;
            top: 30%;
            left: 30%;
            box-shadow: 
                0 0 15px rgba(0,0,0,0.7),
                inset 0 0 10px rgba(100, 0, 150, 0.5);
            transition: all 0.1s ease;
        }

        /* Eye shine */
        .pupil::after {
            content: '';
            position: absolute;
            width: 20%;
            height: 20%;
            background: rgba(255,255,255,0.9);
            border-radius: 50%;
            top: 20%;
            left: 20%;
            filter: blur(0.5px);
        }

        .counter-number {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-family: 'Arial', sans-serif;
            font-weight: bold;
            font-size: 1rem;
            color: white;
            text-shadow: 0 0 5px rgba(0,0,0,0.9);
            z-index: 10;
            pointer-events: none;
        }

        /* Original Smooth Blink Animation */
        @keyframes eye-blink {
            0%, 100% { 
                transform: scaleY(1);
                border-radius: 60% / 60%;
            }
            20%, 80% {
                border-radius: 60% / 10%;
            }
            50% { 
                transform: scaleY(0.05);
                border-radius: 60% / 5%;
            }
        }

        .eye-container.active .eye-outer {
            animation: eye-blink 0.4s ease-in-out;
        }

        /* Follow cursor effect */
        .eye-container:hover .eye-inner {
            transform: translate(
                calc(var(--mouse-x) * 15px - 7.5px), 
                calc(var(--mouse-y) * 10px - 5px)
            );
        }

        .eye-container:hover .pupil {
            transform: translate(
                calc(var(--mouse-x) * 10px - 5px), 
                calc(var(--mouse-y) * 7px - 3.5px)
            );
        }

        /* Random eye movement when not hovering */
        @keyframes random-eye-movement {
            0% { transform: translate(0, 0); }
            25% { transform: translate(2px, 1px); }
            50% { transform: translate(-1px, 2px); }
            75% { transform: translate(1px, -1px); }
            100% { transform: translate(0, 0); }
        }

        .eye-inner.idle-movement {
            animation: random-eye-movement 8s infinite ease-in-out;
        }

        .pupil.idle-movement {
            animation: random-eye-movement 5s infinite ease-in-out;
        }

        /* Micro-movements when idle */
        @keyframes eye-idle {
            0%, 100% { transform: translate(0, 0); }
            25% { transform: translate(1px, 0.5px); }
            50% { transform: translate(0, 1px); }
            75% { transform: translate(-0.5px, 0.5px); }
        }

        .eye-outer {
            animation: eye-idle 8s infinite ease-in-out;
        }

        /* Responsive Design */
        @media (max-width: 767px) {
            .eye-container {
                width: 70px;
                height: 45px;
            }
            
            .counter-number {
                font-size: 0.9rem;
            }
        }
