/* Global Variables - Dark Theme */
:root {
    --primary-color: #8E9AAF;
    --secondary-color: #4A5568;
    --accent-color: #6b8e8e;
    --text-dark: #ffffff;
    --text-medium: #B0B8C4;
    --text-light: #8E9AAF;
    --text-subtle: #777;
    --background-light: #2D3748;
    --background-medium: #1a1a2e;
    --background-dark: #16213e;
    --border-color: rgba(142, 154, 175, 0.2);
    --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 8px 20px rgba(0, 0, 0, 0.4);
    --border-radius: 16px;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --font-weight-normal: 400;
    --font-weight-medium: 600;
    --font-weight-bold: 700;
    --font-weight-black: 900;
}

/* Dark Body Background */
body {
    background: linear-gradient(135deg, var(--background-medium), var(--background-dark));
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header and Menu Styles - Dark Theme */
header {
    background: var(--background-dark);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--spacing-md); /* Keep horizontal padding */
    height: 150px; /* Increased from 80px to 150px */
}

header.fade {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
}

.header-left, .header-center, .header-right {
    display: flex;
    align-items: center;
}

.header-left.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: var(--font-weight-bold);
    gap: 16px;
}

.logo-svg {
    height: 100px;
    width: auto;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.logo-svg:hover {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text span:first-child {
    font-size: 1.4rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
}

.logosub68 {
    font-size: 0.8rem;
    font-weight: var(--font-weight-medium);
    color: var(--text-light);
    line-height: 1.2;
}



/* Header right social icons */
.header-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-right.mobile {
    display: flex;
}

.social-item {
    list-style: none;
}

.social-item a {
    color: var(--text-medium);
    font-size: 1.2rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(142, 154, 175, 0.1);
    text-decoration: none;
}

.social-item a:hover {
    color: var(--text-dark);
    background: rgba(142, 154, 175, 0.2);
    transform: translateY(-2px);
}

/* Dark Animated Logo Hero Section */
.dark-hero-section {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: var(--spacing-xl) var(--spacing-sm);
    margin: 0;
    color: #ffffff;
}

.dark-hero-container {
    position: relative;
    width: 350px;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.quantum-logo {
    position: relative;
    z-index: 2;
}

.number-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center;
    pointer-events: none;
}

.random-number {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 14px;
    color: #8E9AAF;
    text-shadow: 0 0 10px rgba(142, 154, 175, 0.5);
    opacity: 0;
    animation: fadeInOut 3s infinite linear;
}

.orbit-1 {
    animation: rotate 8s infinite linear;
}

.orbit-2 {
    animation: rotate 12s infinite linear reverse;
}

.orbit-3 {
    animation: rotate 15s infinite linear;
}

.orbit-1 .random-number {
    transform: translate(-80px, 0);
}

.orbit-2 .random-number {
    transform: translate(-120px, 0);
}

.orbit-3 .random-number {
    transform: translate(-160px, 0);
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes fadeInOut {
    0% { opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; }
}

.pulse {
    animation: pulse 2s infinite ease-in-out;
}

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

.dark-company-name {
    font-size: 48px;
    font-weight: var(--font-weight-black);
    color: #ffffff;
    text-align: center;
    margin: 30px 0 20px 0;
}

.dark-ai-text {
    color: #DAA520;
    font-size: 24px;
    font-weight: normal;
    letter-spacing: 4px;
    margin-top: 5px;
}

.dark-hero-subtitle {
    font-size: 24px;
    color: #8E9AAF;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.dark-hero-description {
    font-size: 18px;
    color: #B0B8C4;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.dark-mission-text {
    font-style: italic;
    color: #8E9AAF;
    font-size: 16px;
    margin: 30px 0;
    max-width: 600px;
}

/* Floating particles */
.particle {
    position: absolute;
    background: #8E9AAF;
    border-radius: 50%;
    pointer-events: none;
    animation: float 6s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0; }
    50% { transform: translateY(-100px) rotate(180deg); opacity: 1; }
}

/* Hero Section - Updated for Dark Theme */
.hero-section {
    background: rgba(45, 55, 72, 0.3);
    padding: var(--spacing-xl) var(--spacing-sm) 0;
    text-align: center;
    margin: var(--spacing-sm) var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius);
    overflow: visible;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    position: relative;
    color: var(--text-dark);
}

/* Alternating background colors - Dark Theme */
.hero-section:nth-child(odd) {
    background: rgba(45, 55, 72, 0.2);
}

.hero-section:nth-child(even) {
    background: rgba(26, 26, 46, 0.3);
}

/* Logo Enhancement - Subtle background watermarks */
.hero-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -5%;
    width: 300px;
    height: 300px;
    background-image: url('imgs/qneura_logo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.05;
    transform: rotate(15deg);
    z-index: 0;
    pointer-events: none;
    filter: brightness(1.5);
}

/* Alternate positioning for even sections */
.hero-section:nth-child(even)::before {
    left: -5%;
    right: auto;
    transform: rotate(-15deg);
}

/* Ensure content stays above watermark */
.hero-section > * {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(142, 154, 175, 0.15);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    padding: var(--spacing-sm) var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    font-size: 1.1rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.hero-portrait {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: var(--shadow-medium);
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-portrait:hover {
    transform: scale(1.15);
    box-shadow: 0 14px 24px rgba(142, 154, 175, 0.3);
}

.hero-titles {
    text-align: left;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: var(--font-weight-black);
    line-height: 0.9;
    margin: 0 0 var(--spacing-sm) 0;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1rem, 4vw, 2rem);
    font-weight: var(--font-weight-bold);
    line-height: 0.9;
    margin: 0;
    color: var(--primary-color);
}

.hero-description {
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    line-height: 1.6;
    color: var(--text-medium);
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: var(--spacing-lg);
}

.hero-description p {
    margin-bottom: var(--spacing-md);
}

.hero-bio-small {
    font-size: clamp(0.95rem, 1.8vw, 1.2rem);
    line-height: 1.6;
    color: var(--text-light);
    margin-top: var(--spacing-sm);
}

.hero-highlight {
    background: rgba(142, 154, 175, 0.2);
    padding: 4px var(--spacing-xs);
    border-radius: var(--spacing-xs);
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    transition: background 0.2s ease;
}

.hero-highlight:hover {
    background: rgba(142, 154, 175, 0.3);
}

.hero-stats {
    color: var(--primary-color);
    font-weight: var(--font-weight-bold);
    font-size: 1.05em;
}

/* Section dividers with mini logo */
.section-divider {
    text-align: center;
    padding: var(--spacing-lg) 0;
    position: relative;
}

.section-divider::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    background-image: url('imgs/qneura_logo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.5;
    margin: 5 auto;
    filter: brightness(1.5);
}

/* Buttons - Dark Theme */
.button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--background-dark);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--spacing-sm);
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    margin-top: var(--spacing-md);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
    border: 2px solid transparent;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

/* Button hover logo effect */
.button::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -30px;
    width: 20px;
    height: 20px;
    background-image: url('imgs/qneura_logo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.button:hover::after {
    right: 16px;
    opacity: 0.7;
}

.button:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    padding-right: 50px;
}

.button:active {
    transform: translateY(0);
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: center;
    margin-top: var(--spacing-lg);
}

.button-group .button {
    margin: 0;
    flex: 1;
    min-width: 160px;
    text-align: center;
    font-size: 0.9rem;
}

.hero-bottom-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
    margin: 0;
    object-fit: cover;
    max-height: 330px;
    transition: opacity 0.3s ease;
}

.hero-bottom-image:hover {
    opacity: 0.95;
}

/* Loading animation for header logo */
@keyframes logoFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.logo-svg:hover {
    transform: scale(1.05);
}

/* Audio Player - Dark Theme */
.audio-player {
    width: 100%;
    max-width: 800px;
    margin: var(--spacing-md) auto;
    text-align: left;
    padding: var(--spacing-md);
    background: var(--background-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
}

.audio-label {
    font-family: inherit;
    font-weight: var(--font-weight-medium);
    font-size: 1.1em;
    color: var(--text-medium);
    margin-bottom: var(--spacing-sm);
    text-align: left;
}

audio {
    width: 100%;
    border: 2px solid var(--border-color);
    border-radius: var(--spacing-sm);
    box-shadow: var(--shadow-light);
    background-color: var(--background-light);
    outline: none;
}

audio:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(142, 154, 175, 0.2);
}

/* Footer logo enhancement - Dark Theme */
.footer {
    position: relative;
    background: var(--background-dark);
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
}

.footer::before {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.footer > * {
    position: relative;
    z-index: 1;
}

.footer-1, .footer-2 {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.footer-2 .social-item a {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
}

.hero-section-enhanced {
    background: rgba(45, 55, 72, 0.1);
    padding: 4rem 2rem;
    margin: 0;
    border-radius: 0;
    position: relative;
    overflow: visible;
    box-shadow: none;
    border: none;
}

.hero-section-enhanced::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(142, 154, 175, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero-content-enhanced {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-text-enhanced {
    text-align: left;
}

.hero-title-main {
    font-family: 'Lora', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.hero-subtitle-main {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.hero-description-enhanced {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.hero-stats-enhanced {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    justify-content: flex-start;
}

.stat-item-enhanced {
    text-align: center;
}

.stat-number-enhanced {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.stat-label-enhanced {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

.hero-image-enhanced {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-portrait-enhanced {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-portrait-enhanced:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(142, 154, 175, 0.2);
}

.button-group-enhanced {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
}

.button-enhanced {
    display: inline-block;
    background: var(--primary-color);
    color: var(--background-dark);
    padding: 1rem 1.5rem;
    border-radius: var(--spacing-sm);
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
    border: 2px solid transparent;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
}

.button-enhanced::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.button-enhanced:hover::before {
    left: 100%;
}

.button-enhanced:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.button-enhanced.button-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.button-enhanced.button-secondary:hover {
    background: var(--primary-color);
    color: var(--background-dark);
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--background-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
    transform: translateY(-5px);
}

.detailed-publications {
      padding: var(--spacing-xl) var(--spacing-sm);
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .section-header {
      text-align: center;
      margin-bottom: var(--spacing-xl);
    }
    
    .section-header h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: var(--font-weight-black);
      color: var(--text-dark);
      margin-bottom: var(--spacing-sm);
      letter-spacing: -0.02em;
    }
    
    .section-header p {
      font-size: clamp(1.1rem, 2vw, 1.3rem);
      color: var(--text-medium);
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
    }
    
    .paper-item {
      background: white;
      border: 2px solid var(--border-color);
      border-radius: var(--border-radius);
      padding: var(--spacing-lg);
      margin-bottom: var(--spacing-lg);
      box-shadow: var(--shadow-light);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    
    .paper-item:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-medium);
      border-color: var(--accent-color);
    }
    
    .paper-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: var(--primary-color);
      transition: width 0.3s ease;
    }
    
    .paper-item:hover::before {
      width: 8px;
    }
    
    .paper-header {
      display: flex;
      align-items: flex-start;
      gap: var(--spacing-md);
      margin-bottom: var(--spacing-md);
    }
    
    .paper-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      border-radius: var(--spacing-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 24px;
      flex-shrink: 0;
      box-shadow: var(--shadow-light);
    }
    
    .paper-meta {
      flex: 1;
    }
    
    .paper-title {
      font-size: clamp(1.2rem, 2.5vw, 1.5rem);
      font-weight: var(--font-weight-bold);
      color: var(--text-dark);
      line-height: 1.3;
      margin: 0 0 var(--spacing-xs) 0;
      text-decoration: none;
      transition: color 0.2s ease;
    }
    
    .paper-title:hover {
      color: var(--primary-color);
    }
    
    .paper-authors {
      font-size: 1rem;
      color: var(--text-medium);
      font-weight: var(--font-weight-medium);
      margin-bottom: var(--spacing-xs);
    }
    
    .paper-venue {
      font-size: 0.95rem;
      color: var(--accent-color);
      font-weight: var(--font-weight-bold);
      font-style: italic;
    }
    
    .paper-description {
      font-size: 1rem;
      line-height: 1.6;
      color: var(--text-light);
      margin-bottom: var(--spacing-md);
      text-align: justify;
    }
    
    .paper-tags {
      display: flex;
      flex-wrap: wrap;
      gap: var(--spacing-xs);
      margin-bottom: var(--spacing-md);
    }
    
    .paper-tag {
      background: rgba(107, 142, 107, 0.1);
      color: var(--primary-color);
      padding: 4px var(--spacing-xs);
      border-radius: 16px;
      font-size: 0.85rem;
      font-weight: var(--font-weight-medium);
      border: 1px solid rgba(107, 142, 107, 0.2);
      transition: all 0.2s ease;
    }
    
    .paper-tag:hover {
      background: rgba(107, 142, 107, 0.15);
      transform: translateY(-1px);
    }
    
    .paper-links {
      display: flex;
      flex-wrap: wrap;
      gap: var(--spacing-sm);
    }
    
    .paper-link {
      display: inline-flex;
      align-items: center;
      gap: var(--spacing-xs);
      padding: var(--spacing-xs) var(--spacing-sm);
      background: var(--background-light);
      border: 1px solid var(--border-color);
      border-radius: var(--spacing-xs);
      text-decoration: none;
      color: var(--text-medium);
      font-weight: var(--font-weight-medium);
      font-size: 0.9rem;
      transition: all 0.2s ease;
    }
    
    .paper-link:hover {
      background: var(--primary-color);
      color: white;
      transform: translateY(-1px);
      box-shadow: var(--shadow-light);
    }
    
    .paper-link i {
      font-size: 0.9rem;
    }
    
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: var(--spacing-md);
      margin: var(--spacing-xl) 0;
      padding: var(--spacing-lg);
      background: var(--background-light);
      border-radius: var(--border-radius);
      border: 1px solid var(--border-color);
    }
    
    .stat-item {
      text-align: center;
      padding: var(--spacing-md);
    }
    
    .stat-number {
      display: block;
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      font-weight: var(--font-weight-black);
      color: var(--primary-color);
      line-height: 1;
    }
    
    .stat-label {
      font-size: 0.9rem;
      color: var(--text-subtle);
      font-weight: var(--font-weight-medium);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-top: var(--spacing-xs);
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
      .paper-header {
        flex-direction: column;
        text-align: center;
      }
      
      .paper-icon {
        align-self: center;
      }
      
      .paper-links {
        justify-content: center;
      }
      
      .stats-grid {
        grid-template-columns: 1fr 1fr;
      }
    }
    
    @media (max-width: 480px) {
      .detailed-publications {
        padding: var(--spacing-lg) var(--spacing-sm);
      }
      
      .paper-item {
        padding: var(--spacing-md);
      }
      
      .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        padding: var(--spacing-md);
      }
    }