:root {
    --nav-dark-surface: rgba(8, 12, 20, 0.78);
    --nav-dark-border: rgba(255, 255, 255, 0.07);
    --nav-dark-text: #f5f7ff;
    --nav-light-surface: rgba(255, 255, 255, 0.92);
    --nav-light-border: rgba(0, 0, 0, 0.08);
    --nav-light-text: #0f172a;
    --nav-link-light: rgba(17, 24, 32, 0.55);
    --nav-link-dark: rgba(245, 247, 255, 0.72);
    --accent-blue: #3463ff;
    --accent-light: #7aa2f7;
    --shadow-dark-nav: 0 24px 50px rgba(5, 9, 18, 0.45);
    --shadow-light-nav: 0 14px 28px rgba(15, 23, 42, 0.1);
    --text-dark: #1f2937;
    --text-light: #e2e8f0;
    --border-color: rgba(15, 23, 42, 0.08);
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --pub-text-primary: #1a1a1a;
    --pub-text-secondary: #4a5568;
    --pub-text-tertiary: #718096;
    --pub-bg-primary: #ffffff;
    --pub-bg-secondary: #f7fafc;
    --pub-bg-tertiary: #edf2f7;
    --pub-border: #e2e8f0;
    --pub-accent: #3b82f6;
    --pub-accent-hover: #2563eb;
    --pub-pdf: #5865f2;
    --pub-doi: #10b981;
    --pub-code: #6b7280;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-monospace: 'Courier New', Courier, 'Consolas', monospace;
    --font-serif: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

html[data-theme="dark"] {
    color-scheme: dark;
}

*,
*::before,
*::after {
    margin: 0;  
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: #060b14;
}

body {
    font-family: var(--font-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--text-light);
    background-color: #060b14;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

html[data-theme='light'] {
    background-color: var(--bg-white);
}

html[data-theme='light'] body {
    background-color: var(--bg-white);
    color: var(--text-dark);
}

body.dark-mode {
    background-color: #060b14;
    color: var(--text-light);
}

.trg-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--nav-dark-surface);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: var(--shadow-dark-nav);
    padding: 0.85rem 0;
}

.trg-header::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    opacity: 0.6;
}

html[data-theme='light'] .trg-header::after {
    background: rgba(15, 23, 42, 0.12);
}

.trg-header.scrolled {
    padding: 0.65rem 0;
    box-shadow: 0 18px 45px rgba(5, 9, 18, 0.55);
}

html[data-theme='light'] .trg-header {
    background: var(--nav-light-surface);
    border-bottom: 1px solid var(--nav-light-border);
    box-shadow: var(--shadow-light-nav);
}

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

@media (max-width: 1024px) {
    .navbar-container {
        padding: 0 1.8rem;
    }
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--nav-dark-text);
    transition: transform 0.3s ease, opacity 0.3s ease;
    flex-shrink: 0;
}

.navbar-brand:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.navbar-brand-icon {
    display: block;
    height: 7rem;
    width: auto;
    object-fit: contain;
}

html[data-theme='light'] .navbar-brand-icon {
    filter: brightness(0.9);
}

.navbar-brand-text {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--nav-dark-text);
    transition: color 0.3s ease, opacity 0.3s ease;
}

html[data-theme='light'] .navbar-brand-text {
    color: var(--nav-light-text);
}

.navbar-brand-text:hover {
    opacity: 0.75;
}

.navbar-menu {
    display: flex;
    flex: 1;
    justify-content: center;
}

.navbar-menu-list {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    list-style: none;
}

.navbar-menu-item-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--nav-link-dark);
    text-decoration: none;
    position: relative;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    transition: color 0.3s ease, background 0.3s ease;
}

html[data-theme='light'] .navbar-menu-item-link {
    color: var(--nav-link-light);
}

.navbar-menu-item-link::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: -1;
}

html[data-theme='light'] .navbar-menu-item-link::after {
    background: rgba(0, 0, 0, 0.12);
}

.navbar-menu-item-link:hover,
.navbar-menu-item-link:focus,
.navbar-menu-item-link.active {
    color: #5a8ec4;
}

html[data-theme='light'] .navbar-menu-item-link:hover,
html[data-theme='light'] .navbar-menu-item-link:focus,
html[data-theme='light'] .navbar-menu-item-link.active {
    color: #3b6b9a;
}

.navbar-menu-item-link:hover::after,
.navbar-menu-item-link:focus::after,
.navbar-menu-item-link.active::after {
    opacity: 1;
    transform: scale(1);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-end;
}

.navbar-theme-toggle {
    width: 34px;
    height: 34px;
    border: none;
    background: transparent;
    color: var(--nav-dark-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

html[data-theme='light'] .navbar-theme-toggle {
    color: var(--nav-light-text);
}

.navbar-theme-toggle:hover {
    color: var(--accent-light);
}

html[data-theme='light'] .navbar-theme-toggle:hover {
    color: var(--accent-blue);
}

.navbar-theme-toggle svg {
    width: 20px;
    height: 20px;
    position: absolute;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.navbar-theme-toggle .icon-sun {
    opacity: 1;
    transform: scale(1);
}

.navbar-theme-toggle .icon-moon {
    opacity: 0;
    transform: scale(0.6) rotate(-25deg);
}

.navbar-theme-toggle.dark-mode .icon-sun {
    opacity: 0;
    transform: scale(0.6) rotate(25deg);
}

.navbar-theme-toggle.dark-mode .icon-moon {
    opacity: 1;
    transform: scale(1);
}

.navbar-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.6rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    white-space: nowrap;
}

.navbar-cta.primary {
    background: var(--cta-orange);
    color: #110400;
    box-shadow: var(--cta-orange-shadow);
}

.navbar-cta.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 36px rgba(255, 92, 0, 0.45);
}

.navbar-cta.link {
    color: rgba(240, 243, 255, 0.85);
    border: 1px solid rgba(240, 243, 255, 0.25);
    background: rgba(255, 255, 255, 0.02);
    padding: 0.55rem 1.4rem;
}

.navbar-cta.link:hover {
    border-color: rgba(240, 243, 255, 0.5);
    opacity: 0.85;
}

body.dark-mode .navbar-cta.link {
    border-color: rgba(255, 255, 255, 0.35);
}

.navbar-theme-toggle.mobile {
    width: 100%;
    border: none;
    background: transparent;
    padding: 0.9rem 0.3rem;
    gap: 0.85rem;
    justify-content: space-between;
}

html[data-theme='light'] .navbar-theme-toggle.mobile {
    color: var(--nav-light-text);
}

.navbar-theme-toggle.mobile .toggle-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(240, 243, 255, 0.85);
}

html[data-theme='light'] .navbar-theme-toggle.mobile .toggle-label {
    color: rgba(15, 23, 42, 0.72);
}

.navbar-theme-toggle.mobile .toggle-icons {
    position: relative;
    display: inline-flex;
    width: 20px;
    height: 20px;
}

.navbar-theme-toggle.mobile .toggle-icons svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.navbar-theme-toggle.mobile .toggle-icons .icon-sun {
    opacity: 1;
    transform: scale(1);
}

.navbar-theme-toggle.mobile .toggle-icons .icon-moon {
    opacity: 0;
    transform: scale(0.6) rotate(-25deg);
}

.navbar-theme-toggle.mobile.dark-mode .toggle-icons .icon-sun {
    opacity: 0;
    transform: scale(0.6) rotate(25deg);
}

.navbar-theme-toggle.mobile.dark-mode .toggle-icons .icon-moon {
    opacity: 1;
    transform: scale(1);
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(240, 243, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    gap: 6px;
    padding: 8px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

html[data-theme='light'] .navbar-toggle {
    border-color: rgba(15, 23, 42, 0.12);
    background: rgba(15, 23, 42, 0.05);
}

.navbar-toggle-line {
    width: 100%;
    height: 2px;
    background-color: currentColor;
    border-radius: 2px;
}

.navbar-toggle.active .navbar-toggle-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggle.active .navbar-toggle-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active .navbar-toggle-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

body.dark-mode .navbar-toggle-line {
    background-color: var(--text-light);
}

.navbar-mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(8, 12, 20, 0.96) 0%, rgba(12, 16, 32, 0.94) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem 2.25rem;
    flex-direction: column;
    gap: 1.2rem;
    z-index: 999;
}

html[data-theme='light'] .navbar-mobile-menu {
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(15, 23, 42, 0.12);
}

.navbar-mobile-menu.active {
    display: flex;
}

.navbar-mobile-menu-item {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(240, 243, 255, 0.85);
    text-decoration: none;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.3s ease;
}

html[data-theme='light'] .navbar-mobile-menu-item {
    color: rgba(15, 23, 42, 0.7);
    border-bottom-color: rgba(15, 23, 42, 0.08);
}

.navbar-mobile-menu-item:last-child {
    border-bottom: none;
}

.navbar-mobile-menu-item:hover,
.navbar-mobile-menu-item.active {
    color: #5a8ec4;
}

html[data-theme='light'] .navbar-mobile-menu-item:hover,
html[data-theme='light'] .navbar-mobile-menu-item.active {
    color: #3b6b9a;
}

.navbar-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 0.75rem;
}

body.dark-mode .navbar-mobile-menu {
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

body.dark-mode .navbar-mobile-menu-item {
    color: rgba(255, 255, 255, 0.85);
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

body.dark-mode .navbar-mobile-menu-item:hover,
body.dark-mode .navbar-mobile-menu-item.active {
    color: #5a8ec4;
}

main.container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.hero {
    position: relative;
    min-height: 80vh;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: clamp(5rem, 10vw, 7rem) clamp(1.5rem, 6vw, 5rem) clamp(4rem, 8vw, 6rem);
    display: flex;
    align-items: center;
    color: #f5f7ff;
    background: radial-gradient(circle at 25% 20%, rgba(78, 112, 255, 0.25), transparent 55%),
                radial-gradient(circle at 80% 0%, rgba(21, 180, 255, 0.18), transparent 50%),
                linear-gradient(160deg, #070d18 0%, #091323 40%, #05070d 100%);
    overflow: hidden;
}

html[data-theme='light'] .hero {
    color: var(--text-dark);
    background: radial-gradient(circle at 20% 18%, rgba(79, 112, 255, 0.08), transparent 50%),
                radial-gradient(circle at 70% -10%, rgba(16, 165, 255, 0.08), transparent 55%),
                linear-gradient(160deg, #f5f8ff 0%, #f2f6ff 45%, #eef3ff 100%);
}

.hero-container {
    position: relative;
    width: min(1500px, 96vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2.5rem, 5vw, 4rem);
    align-items: center;
    z-index: 2;
}

@media (max-width: 960px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.hero-copy {
    display: grid;
    gap: 1.5rem;
}

.hero-kicker {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    opacity: 0.6;
    font-weight: 600;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 4vw, 3.4rem);
    line-height: 1.15;
    font-weight: 700;
    margin: 0;
}

.hero-subtitle {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.75;
    margin: 0.75rem 0 0.5rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    font-style: normal;
}

.hero-lede {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    line-height: 1.75;
    max-width: 36rem;
    opacity: 0.85;
    font-weight: 400;
    letter-spacing: 0.005em;
}

.hero-insights {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.9rem;
}

.hero-insights li {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    line-height: 1.65;
    opacity: 0.85;
    font-weight: 400;
    letter-spacing: 0.005em;
}

.hero-insights li span {
    font-weight: 600;
    opacity: 1;
}

.hero-highlight {
    display: flex;
    justify-content: center;
}

.highlight-card {
    width: min(420px, 100%);
    padding: clamp(2rem, 2.5vw, 2.6rem);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(10, 14, 24, 0.55);
    box-shadow: 0 24px 60px rgba(5, 9, 18, 0.4);
    backdrop-filter: blur(12px);
    display: grid;
    gap: 1.4rem;
}

html[data-theme='light'] .highlight-card {
    border-color: rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.12);
}

.highlight-card h3 {
    margin: 0;
    font-size: 1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.7;
}

.highlight-metric {
    display: grid;
    gap: 0.35rem;
}

.highlight-metric strong {
    font-size: 2.2rem;
    font-weight: 700;
}

.highlight-metric span {
    font-size: 0.95rem;
    opacity: 0.8;
}

.highlight-note {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.75;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2.4rem;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.8rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    opacity: 0.55;
    pointer-events: none;
}

.hero-scroll-hint svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 720px) {
    .hero-scroll-hint {
        bottom: 1.8rem;
        font-size: 0.72rem;
        letter-spacing: 0.28em;
    }
}

.welcome-section {
    max-width: 1180px;
    margin: clamp(3.5rem, 7vw, 6rem) auto 0;
    padding: clamp(3.5rem, 7vw, 4.5rem);
    background: linear-gradient(155deg, rgba(8, 13, 26, 0.94), rgba(11, 17, 32, 0.88));
    border: 1px solid rgba(86, 122, 255, 0.24);
    border-radius: 32px;
    box-shadow: 0 38px 110px rgba(4, 8, 16, 0.5);
    backdrop-filter: blur(22px);
    display: grid;
    gap: clamp(3rem, 6vw, 3.5rem);
    position: relative;
    overflow: hidden;
    z-index: 5;
}

.welcome-section::before,
.welcome-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.65;
}

.welcome-section::before {
    width: 320px;
    height: 320px;
    top: -18%;
    right: -12%;
    background: radial-gradient(circle, rgba(84, 122, 255, 0.42), transparent 60%);
}

.welcome-section::after {
    width: 260px;
    height: 260px;
    bottom: -22%;
    left: -14%;
    background: radial-gradient(circle, rgba(17, 150, 255, 0.35), transparent 65%);
}

html[data-theme='light'] .welcome-section {
    background: linear-gradient(150deg, rgba(240, 245, 255, 0.94), rgba(229, 238, 255, 0.96));
    border-color: rgba(79, 112, 255, 0.18);
    box-shadow: 0 34px 90px rgba(15, 23, 42, 0.18);
}

html[data-theme='light'] .welcome-section::before {
    background: radial-gradient(circle, rgba(79, 112, 255, 0.25), transparent 60%);
}

html[data-theme='light'] .welcome-section::after {
    background: radial-gradient(circle, rgba(21, 180, 255, 0.18), transparent 65%);
}

.welcome-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(2.4rem, 4vw, 3rem);
    align-items: stretch;
}

.welcome-heading {
    padding-right: clamp(1rem, 3vw, 2rem);
    display: grid;
    gap: 1.4rem;
}

.welcome-kicker {
    font-size: 0.78rem;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.68);
}

.welcome-heading h2 {
    font-size: clamp(2.2rem, 3.8vw, 3rem);
    line-height: 1.2;
}

.welcome-heading p {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.85;
    max-width: 36rem;
}

html[data-theme='light'] .welcome-kicker {
    color: rgba(30, 41, 59, 0.55);
}

html[data-theme='light'] .welcome-heading p {
    opacity: 0.78;
    color: rgba(30, 41, 59, 0.82);
}

.welcome-meta {
    display: grid;
    gap: 1.4rem;
    align-content: start;
}

.welcome-meta-item {
    position: relative;
    padding: 1.65rem;
    border-radius: 22px;
    background: linear-gradient(160deg, rgba(14, 20, 36, 0.85), rgba(7, 12, 24, 0.8));
    border: 1px solid rgba(86, 122, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    display: grid;
    gap: 0.75rem;
}

.welcome-meta-item::before {
    content: '';
    width: 48px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(86, 122, 255, 0.9), rgba(34, 209, 255, 0.75));
}

html[data-theme='light'] .welcome-meta-item {
    background: linear-gradient(160deg, rgba(245, 248, 255, 0.96), rgba(233, 240, 255, 0.92));
    border-color: rgba(79, 112, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

html[data-theme='light'] .welcome-meta-item::before {
    background: linear-gradient(90deg, rgba(79, 112, 255, 0.85), rgba(16, 165, 255, 0.65));
}

.meta-label {
    font-size: 0.78rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(207, 216, 235, 0.65);
}

.meta-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-light);
}

html[data-theme='light'] .meta-label {
    color: rgba(51, 65, 85, 0.55);
}

html[data-theme='light'] .meta-value {
    color: var(--accent-blue);
}

.welcome-meta-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.82;
}

html[data-theme='light'] .welcome-meta-item p {
    color: rgba(30, 41, 59, 0.78);
    opacity: 1;
}

.welcome-focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(1.8rem, 4vw, 2.4rem);
    padding-top: clamp(1.6rem, 4vw, 2.2rem);
    border-top: 1px solid rgba(86, 122, 255, 0.18);
}

html[data-theme='light'] .welcome-focus-grid {
    border-top-color: rgba(79, 112, 255, 0.16);
}

.focus-card {
    position: relative;
    padding: clamp(1.9rem, 3.6vw, 2.2rem);
    border-radius: 24px;
    background: linear-gradient(165deg, rgba(15, 22, 40, 0.88), rgba(7, 12, 25, 0.82));
    border: 1px solid rgba(86, 122, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    display: grid;
    gap: 1.1rem;
    min-height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.focus-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 23px;
    background: linear-gradient(150deg, rgba(86, 122, 255, 0.16), transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

html[data-theme='light'] .focus-card {
    background: linear-gradient(165deg, rgba(244, 247, 255, 0.98), rgba(234, 240, 255, 0.94));
    border-color: rgba(79, 112, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.focus-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.focus-card p {
    font-size: 0.98rem;
    line-height: 1.75;
    opacity: 0.85;
}

html[data-theme='light'] .focus-card p {
    color: rgba(30, 41, 59, 0.78);
}

.focus-link {
    font-size: 0.82rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(188, 210, 255, 0.86);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    transition: color 0.3s ease;
}

.focus-link::after {
    content: '';
    width: 38px;
    height: 1px;
    background: currentColor;
    opacity: 0.5;
    transform: scaleX(0.65);
    transform-origin: left;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

html[data-theme='light'] .focus-link {
    color: rgba(52, 99, 255, 0.7);
}

.focus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 60px rgba(6, 12, 26, 0.5);
    border-color: rgba(125, 154, 255, 0.4);
}

.focus-card:hover::after {
    opacity: 1;
}

.focus-card:hover .focus-link {
    color: var(--accent-light);
}

html[data-theme='light'] .focus-card:hover .focus-link {
    color: var(--accent-blue);
}

.focus-card:hover .focus-link::after {
    opacity: 0.9;
    transform: scaleX(1);
}

@media (max-width: 1024px) {
    .welcome-intro {
        grid-template-columns: 1fr;
    }

    .welcome-heading {
        padding-right: 0;
    }
}

@media (max-width: 720px) {
    .welcome-section {
        margin-top: 2.5rem;
        border-radius: 24px;
        padding: 2.8rem;
    }

    .welcome-section::before,
    .welcome-section::after {
        opacity: 0.5;
    }
}

.contact-page {
    max-width: 960px;
    margin: clamp(4rem, 8vw, 6rem) auto clamp(3rem, 6vw, 5rem);
    padding: 0 clamp(1.4rem, 5vw, 2.6rem);
    display: grid;
    gap: clamp(2.2rem, 6vw, 3.4rem);
}

.contact-header {
    display: grid;
    gap: 0.6rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.24);
    padding-bottom: clamp(1.4rem, 4vw, 1.8rem);
}

.contact-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: rgba(214, 222, 255, 0.52);
}

.contact-header h1 {
    margin: 0;
    font-size: clamp(2.2rem, 3.8vw, 3rem);
    font-weight: 700;
}

.contact-header p {
    font-size: 1.02rem;
    line-height: 1.7;
    max-width: 42rem;
    color: rgba(226, 232, 240, 0.75);
}

.contact-body {
    display: grid;
    gap: clamp(2.4rem, 6vw, 3.4rem);
    align-items: start;
    grid-template-columns: 1fr;
}

.contact-info {
    display: grid;
    gap: clamp(1.6rem, 3.5vw, 2.4rem);
}

.contact-section {
    display: grid;
    gap: 0.55rem;
}

.contact-section + .contact-section {
    padding-top: clamp(1.3rem, 3vw, 1.8rem);
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.contact-section h2 {
    margin: 0;
    font-size: 1.18rem;
    font-weight: 600;
}

.contact-section-subtitle {
    font-size: 0.94rem;
    color: rgba(214, 222, 255, 0.62);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.45rem;
}

.contact-list li {
    font-size: 0.96rem;
    line-height: 1.6;
    color: rgba(226, 232, 240, 0.78);
}

.contact-list--channels li {
    display: grid;
    gap: 0.22rem;
}

.contact-label {
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.54);
}

.contact-list--channels a,
.contact-list--channels span {
    color: rgba(188, 210, 255, 0.86);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-list--channels a:hover {
    color: var(--accent-light);
}

.contact-map {
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 14px;
    overflow: hidden;
    display: grid;
    gap: 0;
    background: rgba(15, 23, 42, 0.2);
    width: 100%;
    height: 800px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 840px) {
    .contact-map {
        height: 600px;
    }
}

@media (max-width: 640px) {
    .contact-map {
        height: 500px;
    }
}

.contact-notes {
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    padding-top: clamp(1.6rem, 4vw, 2.2rem);
    font-size: 0.96rem;
    line-height: 1.7;
    color: rgba(226, 232, 240, 0.78);
}

html[data-theme='light'] .contact-header {
    border-bottom-color: rgba(148, 163, 184, 0.16);
}

html[data-theme='light'] .contact-header p,
html[data-theme='light'] .contact-section-subtitle,
html[data-theme='light'] .contact-list li,
html[data-theme='light'] .contact-list--channels a,
html[data-theme='light'] .contact-list--channels span,
html[data-theme='light'] .contact-notes {
    color: rgba(30, 41, 59, 0.75);
}

html[data-theme='light'] .contact-section + .contact-section {
    border-top-color: rgba(148, 163, 184, 0.14);
}

html[data-theme='light'] .contact-label {
    color: rgba(100, 116, 139, 0.58);
}

html[data-theme='light'] .contact-map {
    background: rgba(241, 245, 255, 0.85);
    border-color: rgba(79, 112, 255, 0.18);
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-blue);
    color: white;
}

.btn-primary:hover {
    background-color: #0a5ecb;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(13, 110, 253, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.page {
    max-width: 960px;
    margin: 0 auto;
    padding: 3rem clamp(1.75rem, 6vw, 3.5rem);
}

.page-header {
    margin-bottom: 2rem;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

body.dark-mode .page-title {
    color: var(--text-light);
}

.page-description {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

body.dark-mode .page-description {
    color: #aaa;
}

.page-content {
    line-height: 1.8;
}

.page-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

body.dark-mode .page-content h2 {
    color: var(--text-light);
}

.page-content h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.page-content p {
    margin-bottom: 1rem;
}

.page-content ul,
.page-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.page-content li {
    margin-bottom: 0.5rem;
}

.page-content a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.page-content a:hover {
    color: #0a5ecb;
    text-decoration: underline;
}

body.dark-mode .page-content a {
    color: var(--accent-light);
}

body.dark-mode .page-content a:hover {
    color: #b8d4ff;
}

.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem clamp(1.75rem, 5vw, 3rem);
}

.content-heading {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.trg-footer {
    background: linear-gradient(170deg, rgba(6, 10, 18, 0.96), rgba(9, 14, 26, 0.92));
    color: rgba(226, 233, 255, 0.82);
    padding: clamp(3rem, 8vw, 4rem) clamp(1.8rem, 6vw, 3rem) clamp(1.8rem, 6vw, 2.5rem);
    margin-top: clamp(5rem, 8vw, 6rem);
    border-top: 1px solid rgba(84, 122, 255, 0.18);
    box-shadow: 0 -22px 60px rgba(3, 6, 14, 0.55);
}

html[data-theme='light'] .trg-footer {
    background: linear-gradient(170deg, #eef3ff 0%, #f7faff 100%);
    color: rgba(30, 41, 59, 0.82);
    border-top-color: rgba(79, 112, 255, 0.16);
    box-shadow: 0 -18px 46px rgba(148, 163, 184, 0.26);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(1.6rem, 4vw, 2.6rem);
    margin-bottom: clamp(1.8rem, 5vw, 2.6rem);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section h3 {
    font-size: 1.05rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
}

.footer-section h4 {
    font-size: 0.92rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.footer-section p {
    line-height: 1.7;
    font-size: 0.92rem;
    opacity: 0.82;
}

html[data-theme='light'] .footer-section p {
    opacity: 0.75;
    color: rgba(51, 65, 85, 0.78);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(200, 215, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

html[data-theme='light'] .footer-section h3,
html[data-theme='light'] .footer-section h4 {
    color: rgba(15, 23, 42, 0.82);
}

html[data-theme='light'] .footer-section a {
    color: rgba(52, 99, 255, 0.75);
}

html[data-theme='light'] .footer-section a:hover {
    color: rgba(29, 78, 216, 0.85);
}

.footer-bottom {
    text-align: center;
    padding-top: clamp(1.8rem, 4vw, 2.4rem);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(214, 222, 255, 0.6);
}

html[data-theme='light'] .footer-bottom {
    border-top-color: rgba(148, 163, 184, 0.25);
    color: rgba(71, 85, 105, 0.68);
}

.lab-footer {
    margin-top: 4rem;
    padding: 2rem;
    border-top: 1px solid rgba(59, 107, 154, 0.15);
    background: rgba(15, 23, 42, 0.4);
}

html[data-theme='light'] .lab-footer {
    background: rgba(241, 245, 249, 0.6);
    border-top-color: rgba(59, 107, 154, 0.1);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.footer-brand strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e2e8f0;
}

html[data-theme='light'] .footer-brand strong {
    color: #1e293b;
}

.footer-brand span {
    font-size: 0.8rem;
    color: rgba(148, 163, 184, 0.7);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(148, 163, 184, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #3b6b9a;
}

html[data-theme='light'] .footer-links a:hover {
    color: #3b6b9a;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
}

.footer-info span {
    font-size: 0.8rem;
    color: rgba(148, 163, 184, 0.6);
}

.lab-footer .footer-bottom {
    max-width: 1200px;
    margin: 1.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    text-align: center;
}

.lab-footer .footer-bottom span {
    font-size: 0.75rem;
    color: rgba(148, 163, 184, 0.5);
}

@media (max-width: 600px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-info {
        align-items: center;
    }
}

@media (max-width: 920px) {
    .navbar-menu {
        display: none;
    }

    .navbar-actions {
        gap: 0.75rem;
    }

    .navbar-toggle {
        display: inline-flex;
    }
}

@media (max-width: 600px) {
    .navbar-brand-icon {
        height: 4rem;
    }
    
    .navbar-container {
        padding: 0 1.4rem;
    }

    .navbar-brand-text {
        letter-spacing: 0.22em;
        font-size: 0.88rem;
    }
}

.news-page-lab {
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(3rem, 8vw, 5rem) clamp(1.5rem, 5vw, 2.6rem);
}

.news-header-lab {
    display: grid;
    gap: 1rem;
    margin-bottom: clamp(4rem, 10vw, 6rem);
}

.news-header-lab h1 {
    margin: 0;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.news-intro {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(226, 232, 240, 0.7);
    max-width: 70ch;
}

.news-container-lab {
    display: grid;
    gap: 1rem;
}

.news-list {
    display: grid;
    gap: 2.5rem;
}

.news-item-lab {
    padding: 0;
    margin-bottom: 3rem;
    border: 1px solid rgba(200, 210, 220, 0.4);
    display: grid;
    gap: 0;
    transition: border-color 0.2s ease;
    background: transparent;
    overflow: hidden;
}

.news-item-lab::before {
    display: none;
}

.news-item-lab:hover {
    border-color: rgba(130, 140, 150, 0.5);
    background: transparent;
    transform: none;
    box-shadow: none;
}

.article-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: rgba(100, 110, 120, 0.1);
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-header-row,
.article-title-lab,
.article-summary-lab,
.read-more-link {
    padding-left: 2rem;
    padding-right: 2rem;
}

.article-header-row {
    padding-top: 1.8rem;
}

.read-more-link {
    padding-bottom: 1.8rem;
}

.article-header-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.article-meta-lab {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.8rem;
}

.article-category {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(130, 140, 150, 1);
    padding: 0.4rem 0.8rem;
    background: transparent;
    border: 1px solid rgba(130, 140, 150, 0.5);
    border-radius: 2px;
    transition: none;
}

.news-item-lab:hover .article-category {
    background: transparent;
    border-color: rgba(100, 110, 120, 0.7);
    transform: none;
}

.article-author {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(120, 130, 140, 0.8);
}

.article-date {
    font-size: 0.8rem;
    color: rgba(120, 130, 140, 0.6);
    font-weight: 400;
}

.article-title-lab {
    margin: 0.8rem 0 0 0;
    font-size: clamp(1.2rem, 3vw, 1.7rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.article-title-lab a {
    color: rgba(40, 50, 60, 0.95);
    text-decoration: none;
    transition: color 0.2s ease;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.news-item-lab:hover .article-title-lab a {
    -webkit-text-fill-color: unset;
    color: rgba(60, 70, 80, 1);
}

.article-summary-lab {
    margin: 0.8rem 0 0 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(80, 90, 100, 0.85);
    max-width: 85ch;
}

.read-more-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(100, 110, 120, 0.9);
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
    padding: 0;
    border: none;
    background: transparent;
}

.read-more-link::after {
    content: ' [→]';
    display: inline;
    transition: none;
}

.read-more-link:hover {
    color: rgba(60, 70, 80, 1);
    border: none;
    background: transparent;
    transform: none;
}

.read-more-link:hover::after {
    transform: none;
}

.no-posts {
    text-align: center;
    padding: 4rem 2rem;
}

.no-posts p {
    margin: 0;
    font-size: 1.1rem;
    color: rgba(226, 232, 240, 0.6);
}

.news-article {
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(3rem, 8vw, 5rem) clamp(1.5rem, 5vw, 2.6rem);
}

.article-header {
    margin-bottom: clamp(3rem, 8vw, 5rem);
    display: grid;
    gap: 1.5rem;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.article-date {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(226, 232, 240, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.article-title {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.article-body {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(226, 232, 240, 0.85);
    display: grid;
    gap: 1.5rem;
}

.article-body h2 {
    margin: 2rem 0 1rem 0;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: rgba(226, 232, 240, 0.95);
}

.article-body h3 {
    margin: 1.5rem 0 0.8rem 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(226, 232, 240, 0.9);
}

.article-body p {
    margin: 0;
}

.article-body ul, 
.article-body ol {
    padding-left: 2rem;
    color: rgba(226, 232, 240, 0.8);
}

.article-body li {
    margin-bottom: 0.8rem;
}

.article-body a {
    color: rgba(122, 162, 247, 0.85);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.article-body a:hover {
    color: rgba(122, 162, 247, 1);
}

.article-body strong {
    font-weight: 700;
    color: rgba(226, 232, 240, 0.95);
}

.article-footer {
    margin-top: clamp(4rem, 8vw, 6rem);
    padding-top: 2rem;
    border-top: 1px solid rgba(122, 162, 247, 0.15);
}

.article-nav {
    display: flex;
    gap: 1rem;
}

.back-link {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(122, 162, 247, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(122, 162, 247, 0.3);
}

.back-link:hover {
    color: rgba(122, 162, 247, 1);
    border-bottom-color: rgba(122, 162, 247, 0.8);
    padding-left: 4px;
}

html[data-theme='light'] .news-header-lab h1 {
    color: rgba(15, 23, 42, 0.95);
}

html[data-theme='light'] .news-intro {
    color: rgba(71, 85, 105, 0.75);
}

html[data-theme='light'] .news-item-lab {
    background: transparent;
    border-color: rgba(100, 110, 120, 0.3);
}

html[data-theme='light'] .news-item-lab::before {
    display: none;
}

html[data-theme='light'] .news-item-lab:hover {
    background: transparent;
    border-color: rgba(60, 70, 80, 0.5);
    box-shadow: none;
}

html[data-theme='light'] .article-image {
    background: rgba(200, 210, 220, 0.15);
}

html[data-theme='light'] .article-category {
    color: rgba(80, 90, 100, 0.85);
    background: transparent;
    border-color: rgba(100, 110, 120, 0.3);
}

html[data-theme='light'] .news-item-lab:hover .article-category {
    background: transparent;
    border-color: rgba(60, 70, 80, 0.5);
}

html[data-theme='light'] .article-author {
    color: rgba(80, 90, 100, 0.75);
}

html[data-theme='light'] .article-date {
    color: rgba(100, 110, 120, 0.6);
}

html[data-theme='light'] .article-title-lab a {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    color: rgba(20, 30, 40, 0.95);
}

html[data-theme='light'] .news-item-lab:hover .article-title-lab a {
    -webkit-text-fill-color: unset;
    color: rgba(40, 50, 60, 0.95);
}

html[data-theme='light'] .article-summary-lab {
    color: rgba(60, 70, 80, 0.85);
}

html[data-theme='light'] .read-more-link {
    color: rgba(80, 90, 100, 0.85);
    border: none;
    background: transparent;
}

html[data-theme='light'] .read-more-link:hover {
    color: rgba(40, 50, 60, 0.95);
    border: none;
    background: transparent;
}

html[data-theme='light'] .no-posts p {
    color: rgba(71, 85, 105, 0.7);
}

html[data-theme='light'] .article-title {
    color: rgba(15, 23, 42, 0.95);
}

html[data-theme='light'] .article-body {
    color: rgba(30, 41, 59, 0.85);
}

html[data-theme='light'] .article-body h2 {
    color: rgba(15, 23, 42, 0.95);
}

html[data-theme='light'] .article-body h3 {
    color: rgba(15, 23, 42, 0.9);
}

html[data-theme='light'] .article-body a {
    color: rgba(52, 99, 255, 0.8);
}

html[data-theme='light'] .article-body a:hover {
    color: rgba(29, 78, 216, 0.9);
}

html[data-theme='light'] .article-body strong {
    color: rgba(15, 23, 42, 0.95);
}

html[data-theme='light'] .article-footer {
    border-top-color: rgba(52, 99, 255, 0.12);
}

html[data-theme='light'] .back-link {
    color: rgba(52, 99, 255, 0.8);
    border-bottom-color: rgba(52, 99, 255, 0.25);
}

html[data-theme='light'] .back-link:hover {
    color: rgba(29, 78, 216, 0.9);
    border-bottom-color: rgba(29, 78, 216, 0.6);
}

html[data-theme='light'] .article-body {
    color: rgba(30, 41, 59, 0.9);
}

html[data-theme='light'] .article-body h2 {
    color: rgba(15, 23, 42, 0.95);
}

html[data-theme='light'] .article-body h3 {
    color: rgba(15, 23, 42, 0.9);
}

html[data-theme='light'] .article-body ul,
html[data-theme='light'] .article-body ol {
    color: rgba(30, 41, 59, 0.9);
}

html[data-theme='light'] .article-body li {
    color: rgba(30, 41, 59, 0.9);
}

html[data-theme='light'] .article-body a {
    color: rgba(52, 99, 255, 0.75);
    text-decoration: underline;
}

html[data-theme='light'] .article-body a:hover {
    color: rgba(29, 78, 216, 0.9);
}

html[data-theme='light'] .article-body strong {
    color: rgba(15, 23, 42, 0.95);
}

html[data-theme='light'] .article-footer {
    border-top-color: rgba(52, 99, 255, 0.12);
}

html[data-theme='light'] .back-link {
    color: rgba(52, 99, 255, 0.75);
    border-bottom-color: rgba(52, 99, 255, 0.3);
}

html[data-theme='light'] .back-link:hover {
    color: rgba(29, 78, 216, 0.9);
    border-bottom-color: rgba(29, 78, 216, 0.6);
}

:root {
    --pub-text-primary: #1a1a1a;
    --pub-text-secondary: #4a5568;
    --pub-text-tertiary: #718096;
    --pub-bg-primary: #ffffff;
    --pub-bg-secondary: #f7fafc;
    --pub-bg-tertiary: #edf2f7;
    --pub-border: #e2e8f0;
    --pub-accent: #3b82f6;
    --pub-accent-hover: #2563eb;
    --pub-pdf: #5865f2;
    --pub-doi: #10b981;
    --pub-code: #6b7280;
}

html[data-theme='dark'] {
    --pub-text-primary: #f7fafc;
    --pub-text-secondary: #cbd5e0;
    --pub-text-tertiary: #a0aec0;
    --pub-bg-primary: #1a202c;
    --pub-bg-secondary: #2d3748;
    --pub-bg-tertiary: #4a5568;
    --pub-border: #4a5568;
    --pub-accent: #3b82f6;
    --pub-accent-hover: #60a5fa;
    --pub-pdf: #3b6b9a;
    --pub-doi: #34d399;
    --pub-code: #9ca3af;
}

.publications-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
    font-family: var(--font-primary);
    color: var(--pub-text-primary);
}

.publications-header h1 {
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--pub-text-primary);
    letter-spacing: -0.02em;
}

.publications-count {
    font-size: 1.1rem;
    color: var(--pub-text-secondary);
    margin-bottom: 2rem;
}

.publications-count strong {
    color: var(--pub-accent);
    font-weight: 600;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--pub-text-primary);
}

.featured-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(59, 130, 246, 0.03);
    border-left: 3px solid var(--pub-accent);
    border-radius: 0 8px 8px 0;
}

html[data-theme='dark'] .featured-section {
    background: rgba(59, 130, 246, 0.05);
}

.featured-heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--pub-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 1.25rem 0;
}

.featured-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.featured-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.featured-marker {
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    margin-top: 0.5rem;
    background: var(--pub-accent);
    border-radius: 50%;
}

.featured-content {
    flex: 1;
}

.featured-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 0.25rem 0;
    line-height: 1.4;
}

.featured-title a {
    color: var(--pub-text-primary);
    text-decoration: none;
}

.featured-title a:hover {
    color: var(--pub-accent);
}

.featured-authors {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    color: var(--pub-text-secondary);
    margin: 0 0 0.15rem 0;
}

.featured-venue {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    color: var(--pub-text-tertiary);
    margin: 0;
}

.search-bar-section {
    margin-bottom: 1.5rem;
}

.search-container {
    position: relative;
    max-width: 100%;
}

.search-input {
    width: 100%;
    padding: 1rem 1.25rem 1rem 3.5rem;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--pub-text-primary);
    background-color: var(--pub-bg-secondary);
    border: 2px solid var(--pub-border);
    border-radius: 12px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-input::placeholder {
    color: var(--pub-text-tertiary);
}

.search-input:focus {
    border-color: var(--pub-accent);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    color: var(--pub-text-tertiary);
    pointer-events: none;
}

.search-input:focus + .search-icon {
    color: var(--pub-accent);
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--pub-bg-secondary);
    border-radius: 12px;
    margin-bottom: 3rem;
    border: 1px solid var(--pub-border);
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-group select {
    padding: 0.7rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--pub-border);
    background-color: var(--pub-bg-primary);
    color: var(--pub-text-primary);
    font-size: 0.9rem;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23718096' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    background-size: 1em;
    padding-right: 2.5rem;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.filter-group select:hover {
    border-color: var(--pub-accent);
}

.filter-group select:focus {
    outline: none;
    border-color: var(--pub-accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sort-label {
    font-size: 0.9rem;
    color: var(--pub-text-secondary);
    font-weight: 500;
}

.sort-button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 8px;
    background-color: transparent;
    color: var(--pub-text-secondary);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.sort-button:hover {
    background-color: var(--pub-bg-tertiary);
}

.sort-button.active {
    background-color: var(--pub-accent);
    color: #fff;
}

.sort-button.clear {
    color: #3b6b9a;
}

.sort-button.clear:hover {
    background-color: rgba(59, 107, 154, 0.1);
}

.publications-list-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.publication-list-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--pub-border);
    transition: transform 0.2s ease;
}

.publication-list-item:hover {
    transform: translateX(4px);
}

.publication-list-item:last-child {
    border-bottom: none;
}

.publication-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: var(--pub-text-primary);
    line-height: 1.4;
}

.publication-authors {
    font-size: 0.9rem;
    color: var(--pub-text-secondary);
    line-height: 1.5;
    margin: 0 0 0.25rem;
}

.publication-venue {
    font-size: 0.85rem;
    color: var(--pub-text-tertiary);
    line-height: 1.5;
    margin: 0 0 0.75rem;
    font-style: normal;
}

.publication-abstract {
    font-size: 0.9rem;
    color: var(--pub-text-secondary);
    line-height: 1.6;
    margin: 0.75rem 0 0;
    padding-left: 1rem;
    border-left: 3px solid var(--pub-border);
}

.publication-links {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.pub-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid;
    transition: all 0.2s ease;
    cursor: pointer;
}

.pub-link .link-icon {
    font-size: 0.95em;
}

.pub-link.pdf {
    background-color: rgba(88, 101, 242, 0.1);
    color: var(--pub-pdf);
    border-color: rgba(88, 101, 242, 0.3);
}
.pub-link.pdf:hover {
    background-color: var(--pub-pdf);
    color: white;
    border-color: var(--pub-pdf);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(88, 101, 242, 0.2);
}

.pub-link.doi {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--pub-doi);
    border-color: rgba(16, 185, 129, 0.3);
}
.pub-link.doi:hover {
    background-color: var(--pub-doi);
    color: white;
    border-color: var(--pub-doi);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.2);
}

.pub-link.code, .pub-link.data {
    background-color: rgba(107, 114, 128, 0.1);
    color: var(--pub-code);
    border-color: rgba(107, 114, 128, 0.3);
}

.pub-link.code:hover, .pub-link.data:hover {
    background-color: var(--pub-code);
    color: white;
    border-color: var(--pub-code);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(107, 114, 128, 0.2);
}

@media (max-width: 768px) {
    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .filters {
        flex-direction: column;
        width: 100%;
    }
    .filter-group select {
        width: 100%;
    }
    .sort-options {
        justify-content: flex-end;
    }
}

@media (max-width: 480px) {
    .publications-page {
        padding: 1.5rem 1rem 3rem;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .publication-title {
        font-size: 1.1rem;
    }
}

.people-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(3rem, 8vw, 5rem) clamp(1.5rem, 5vw, 2.5rem);
    color: var(--text-light);
}

html[data-theme='light'] .people-page {
    color: var(--text-dark);
}

.people-header {
    margin-bottom: clamp(3rem, 6vw, 4.5rem);
    text-align: center;
}

.people-header h1 {
    margin: 0;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #3b6b9a;
}

html[data-theme='light'] .people-header h1 {
    color: #3b6b9a;
}

.people-section {
    margin-bottom: clamp(4rem, 8vw, 6rem);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    text-align: center;
    color: var(--text-light);
}

html[data-theme='light'] .section-title {
    color: var(--text-dark);
}

.people-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    justify-items: center;
    justify-content: center;
}

@media (max-width: 640px) {
    .people-grid {
        grid-template-columns: 1fr;
    }
}

.person-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 280px;
    width: 100%;
}

.person-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 3px solid rgba(59, 107, 154, 0.25);
    transition: border-color 0.3s ease;
}

.person-card:hover .person-image {
    border-color: rgba(59, 107, 154, 0.6);
}

.person-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.person-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 107, 154, 0.15), rgba(59, 107, 154, 0.25));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(59, 107, 154, 0.7);
}

.person-info {
    width: 100%;
}

.person-name {
    margin: 0 0 0.5rem 0;
    font-size: 1.4rem;
    font-weight: 700;
}

.person-name a {
    color: #3b6b9a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.person-name a:hover {
    color: #2d5a85;
}

.person-role {
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
    color: rgba(226, 232, 240, 0.8);
    font-weight: 500;
}

html[data-theme='light'] .person-role {
    color: rgba(51, 65, 85, 0.8);
}

.person-affiliation {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    color: #3b6b9a;
    font-weight: 500;
}

.person-groups {
    margin: 0 0 1rem 0;
    font-size: 0.85rem;
    color: rgba(226, 232, 240, 0.7);
    font-style: normal;
}

html[data-theme='light'] .person-groups {
    color: rgba(71, 85, 105, 0.7);
}

.person-links {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.person-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #3b6b9a;
    text-decoration: none;
    border: 1px solid rgba(59, 107, 154, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
    background: transparent;
}

.person-link:hover {
    background: #3b6b9a;
    color: white;
    border-color: #3b6b9a;
    transform: translateY(-2px);
}

.person-link.linkedin {
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-primary);
}

.alumni-section {
    margin-top: clamp(5rem, 10vw, 7rem);
}

.alumni-intro {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.alumni-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alumni-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.alumni-title {
    margin: 0 0 0.5rem 0;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #3b6b9a;
}

.alumni-subtitle {
    margin: 0;
    font-size: 1rem;
    color: rgba(226, 232, 240, 0.7);
}

html[data-theme='light'] .alumni-subtitle {
    color: rgba(71, 85, 105, 0.7);
}

.alumni-list-container {
    max-width: 800px;
    margin: 0 auto;
}

.alumni-list-intro {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: rgba(226, 232, 240, 0.8);
}

html[data-theme='light'] .alumni-list-intro {
    color: rgba(51, 65, 85, 0.8);
}

.alumni-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.alumni-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.1);
}

html[data-theme='light'] .alumni-item {
    border-bottom-color: rgba(148, 163, 184, 0.2);
}

.alumni-name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

html[data-theme='light'] .alumni-name {
    color: var(--text-dark);
}

.alumni-name:hover {
    color: #3b6b9a;
}

.alumni-links {
    display: flex;
    gap: 0.5rem;
}

.alumni-link {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #3b6b9a;
    text-decoration: none;
    border: 1px solid rgba(59, 107, 154, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.alumni-link:hover {
    background: #3b6b9a;
    color: white;
    border-color: #3b6b9a;
}

.alumni-link.linkedin {
    font-size: 0.7rem;
    font-weight: 700;
    font-family: var(--font-primary);
}

.person-detail-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: clamp(3rem, 8vw, 5rem) clamp(1.5rem, 5vw, 2.5rem);
    color: var(--text-light);
}

html[data-theme='light'] .person-detail-page {
    color: var(--text-dark);
}

.person-detail-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    margin-bottom: 3rem;
}

@media (max-width: 900px) {
    .person-detail-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.person-detail-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.person-detail-image {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 3px solid rgba(59, 107, 154, 0.25);
}

.person-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.person-detail-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 107, 154, 0.15), rgba(59, 107, 154, 0.25));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    font-weight: 700;
    color: rgba(59, 107, 154, 0.7);
}

.person-detail-name {
    margin: 0 0 0.75rem 0;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-light);
}

html[data-theme='light'] .person-detail-name {
    color: var(--text-dark);
}

.person-detail-role {
    margin: 0 0 0.75rem 0;
    font-size: 1.1rem;
    color: rgba(226, 232, 240, 0.8);
    font-weight: 500;
}

html[data-theme='light'] .person-detail-role {
    color: rgba(71, 85, 105, 0.8);
}

.person-detail-affiliation {
    margin: 0 0 0.75rem 0;
    font-size: 1rem;
    color: #3b6b9a;
    font-weight: 500;
}

.person-detail-groups {
    margin: 0 0 1.5rem 0;
    font-size: 0.9rem;
    color: rgba(226, 232, 240, 0.7);
    font-style: normal;
}

html[data-theme='light'] .person-detail-groups {
    color: rgba(71, 85, 105, 0.7);
}

.person-detail-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.person-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #3b6b9a;
    text-decoration: none;
    border: 1px solid rgba(59, 107, 154, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.person-social-link:hover {
    background: #3b6b9a;
    color: white;
    border-color: #3b6b9a;
    transform: translateY(-2px);
}

.person-social-link.linkedin {
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--font-primary);
}

.person-detail-right {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.person-detail-bio {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

html[data-theme='light'] .person-detail-bio {
    color: var(--text-dark);
}

.person-detail-bio p {
    margin: 0 0 1.25rem 0;
}

.person-detail-bio p:last-child {
    margin-bottom: 0;
}

.person-detail-bio a {
    color: #3b6b9a;
    text-decoration: none;
    border-bottom: 1px solid rgba(59, 107, 154, 0.3);
    transition: border-color 0.3s ease;
}

.person-detail-bio a:hover {
    border-bottom-color: #3b6b9a;
}

.person-detail-section-title {
    margin: 0 0 1rem 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
}

html[data-theme='light'] .person-detail-section-title {
    color: var(--text-dark);
}

.interests-list,
.publications-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.interests-list li {
    font-size: 1rem;
    color: rgba(226, 232, 240, 0.9);
    padding-left: 1.5rem;
    position: relative;
}

html[data-theme='light'] .interests-list li {
    color: rgba(51, 65, 85, 0.9);
}

.interests-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3b6b9a;
    font-weight: 700;
}

.publications-list li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(226, 232, 240, 0.9);
    padding-left: 1.5rem;
    position: relative;
}

html[data-theme='light'] .publications-list li {
    color: rgba(51, 65, 85, 0.9);
}

.publications-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #3b6b9a;
}

.publications-list a {
    color: #3b6b9a;
    text-decoration: none;
    border-bottom: 1px solid rgba(59, 107, 154, 0.3);
    transition: border-color 0.3s ease;
}

.publications-list a:hover {
    border-bottom-color: #3b6b9a;
}

.pub-venue {
    color: rgba(226, 232, 240, 0.7);
    font-style: normal;
}

html[data-theme='light'] .pub-venue {
    color: rgba(71, 85, 105, 0.7);
}

.person-detail-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(226, 232, 240, 0.1);
}

html[data-theme='light'] .person-detail-footer {
    border-top-color: rgba(148, 163, 184, 0.2);
}

.person-detail-footer .back-link {
    color: #3b6b9a;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(59, 107, 154, 0.3);
    transition: border-color 0.3s ease;
}

.person-detail-footer .back-link:hover {
    border-bottom-color: #3b6b9a;
}

.research-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.research-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

html[data-theme='light'] .research-logos {
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

.research-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.research-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

html[data-theme='light'] .research-header {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.research-header h1 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
}

html[data-theme='light'] .research-header h1 {
    color: var(--text-dark);
}

.research-content {
    line-height: 1.8;
    color: rgba(226, 232, 240, 0.85);
    margin-bottom: 3rem;
}

html[data-theme='light'] .research-content {
    color: rgba(51, 65, 85, 0.9);
}

.research-content h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 2.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

html[data-theme='light'] .research-content h2 {
    color: var(--text-dark);
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

.research-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(226, 232, 240, 0.9);
    margin: 1.5rem 0 0.5rem 0;
}

html[data-theme='light'] .research-content h3 {
    color: #334155;
}

.research-content p {
    margin-bottom: 1rem;
}

.research-content hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 2rem 0;
}

html[data-theme='light'] .research-content hr {
    border-top-color: rgba(0, 0, 0, 0.08);
}

.research-content a {
    color: #60a5fa;
    text-decoration: none;
}

.research-content a:hover {
    text-decoration: underline;
}

html[data-theme='light'] .research-content a {
    color: #3b82f6;
}

.research-content ul,
.research-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.research-content li {
    margin-bottom: 0.35rem;
}

.research-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0 0 1.25rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(59, 130, 246, 0.5);
}

html[data-theme='light'] .research-section-title {
    color: var(--text-dark);
}

.research-areas {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(59, 130, 246, 0.03);
    border-radius: 8px;
}

html[data-theme='light'] .research-areas {
    background: rgba(59, 130, 246, 0.04);
}

.research-themes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (max-width: 600px) {
    .research-themes {
        grid-template-columns: 1fr;
    }
}

.theme-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.theme-icon {
    font-size: 1.25rem;
    line-height: 1;
}

.theme-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.theme-text strong {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
}

html[data-theme='light'] .theme-text strong {
    color: var(--text-dark);
}

.theme-text span {
    font-size: 0.8rem;
    color: rgba(226, 232, 240, 0.6);
}

html[data-theme='light'] .theme-text span {
    color: rgba(71, 85, 105, 0.7);
}

.research-publications {
    margin-bottom: 2.5rem;
}

.publications-preview {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 1rem;
}

.pub-preview-item {
    display: flex;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

html[data-theme='light'] .pub-preview-item {
    border-bottom-color: rgba(0, 0, 0, 0.05);
}

.pub-preview-item:last-child {
    border-bottom: none;
}

.pub-year {
    flex-shrink: 0;
    width: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(59, 130, 246, 0.9);
}

.pub-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.pub-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    text-decoration: none;
    line-height: 1.4;
}

html[data-theme='light'] .pub-title {
    color: var(--text-dark);
}

.pub-title:hover {
    color: #60a5fa;
}

.pub-venue {
    font-size: 0.8rem;
    color: rgba(226, 232, 240, 0.5);
}

html[data-theme='light'] .pub-venue {
    color: rgba(71, 85, 105, 0.6);
}

.view-all-link {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #60a5fa;
    text-decoration: none;
}

.view-all-link:hover {
    text-decoration: underline;
}

html[data-theme='light'] .view-all-link {
    color: #3b82f6;
}

.research-team {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
}

html[data-theme='light'] .research-team {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.06);
}

.team-intro {
    font-size: 0.9rem;
    color: rgba(226, 232, 240, 0.7);
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

html[data-theme='light'] .team-intro {
    color: rgba(71, 85, 105, 0.8);
}

.team-intro strong {
    color: var(--text-light);
}

html[data-theme='light'] .team-intro strong {
    color: var(--text-dark);
}

.focus-areas {
    margin-bottom: 3rem;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

@media (max-width: 700px) {
    .focus-grid {
        grid-template-columns: 1fr;
    }
}

.focus-card {
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    transition: border-color 0.2s ease;
}

html[data-theme='light'] .focus-card {
    background: rgba(0, 0, 0, 0.015);
    border-color: rgba(0, 0, 0, 0.06);
}

.focus-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

.focus-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.focus-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0 0 0.5rem 0;
}

html[data-theme='light'] .focus-card h3 {
    color: var(--text-dark);
}

.focus-card p {
    font-size: 0.85rem;
    color: rgba(226, 232, 240, 0.65);
    line-height: 1.6;
    margin: 0 0 0.75rem 0;
}

html[data-theme='light'] .focus-card p {
    color: rgba(71, 85, 105, 0.75);
}

.focus-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.focus-keywords li {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(59, 130, 246, 0.9);
    padding: 0.2rem 0.5rem;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 4px;
}

html[data-theme='light'] .focus-keywords li {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.empty-state-content h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(226, 232, 240, 0.85);
}

.empty-state-content p {
    margin: 0;
    font-size: 1.05rem;
    color: rgba(226, 232, 240, 0.65);
    line-height: 1.6;
}

html[data-theme='light'] .empty-state-content p {
    color: rgba(71, 85, 105, 0.72);
}

.empty-state-content code {
    display: inline-block;
    padding: 0.3rem 0.6rem;
    background: rgba(86, 122, 255, 0.12);
    color: rgba(122, 162, 247, 0.9);
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: var(--font-monospace);
    border: 1px solid rgba(86, 122, 255, 0.2);
}

.lab-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.lab-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 3rem;
    padding: 2rem 0;
    border-bottom: 2px solid rgba(59, 107, 154, 0.2);
    margin-bottom: 3rem;
}

.header-logos {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.header-logos img {
    height: 50px;
    width: auto;
    opacity: 0.9;
}

.header-logos img.yeditepe {
    height: 42px;
}

.logo-sep {
    color: rgba(148, 163, 184, 0.3);
    font-size: 0.9rem;
}

.header-main h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #e2e8f0;
    margin: 0;
    line-height: 1;
}

html[data-theme='light'] .header-main h1 {
    color: #1e293b;
}

.header-main .subtitle {
    font-size: 1rem;
    color: #3b6b9a;
    margin: 0.3rem 0 0 0;
    font-weight: 500;
}

html[data-theme='light'] .header-main .subtitle {
    color: #3b6b9a;
}

.header-main .location {
    font-size: 0.85rem;
    color: rgba(148, 163, 184, 0.7);
    margin: 0.2rem 0 0 0;
}

.header-numbers {
    display: flex;
    gap: 2rem;
}

.num-item {
    text-align: center;
}

.num-item .num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #3b6b9a;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

html[data-theme='light'] .num-item .num {
    color: #3b6b9a;
}

.num-item .num-label {
    font-size: 0.75rem;
    color: rgba(148, 163, 184, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lab-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
}

.lab-main {
    min-width: 0;
}

.content-block {
    margin-bottom: 3rem;
}

.content-block h2 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #3b6b9a;
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(59, 107, 154, 0.2);
}

html[data-theme='light'] .content-block h2 {
    color: #3b6b9a;
}

.prose {
    color: rgba(226, 232, 240, 0.85);
    line-height: 1.8;
    font-size: 0.95rem;
}

html[data-theme='light'] .prose {
    color: rgba(51, 65, 85, 0.9);
}

.prose h2, .prose h3 {
    color: #e2e8f0;
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem 0;
}

html[data-theme='light'] .prose h2,
html[data-theme='light'] .prose h3 {
    color: #1e293b;
}

.prose hr {
    border: none;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    margin: 1.5rem 0;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.topic {
    padding: 1.2rem;
    background: rgba(59, 107, 154, 0.04);
    border: 1px solid rgba(59, 107, 154, 0.1);
    border-radius: 8px;
    transition: border-color 0.2s;
}

.topic:hover {
    border-color: rgba(59, 107, 154, 0.25);
}

html[data-theme='light'] .topic {
    background: rgba(59, 107, 154, 0.03);
    border-color: rgba(59, 107, 154, 0.08);
}

.topic-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.5rem;
    background: rgba(59, 107, 154, 0.15);
    color: #3b6b9a;
    border-radius: 3px;
    margin-bottom: 0.6rem;
}

html[data-theme='light'] .topic-tag {
    background: rgba(59, 107, 154, 0.12);
    color: #3b6b9a;
}

.topic h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e2e8f0;
    margin: 0 0 0.4rem 0;
}

html[data-theme='light'] .topic h3 {
    color: #1e293b;
}

.topic p {
    font-size: 0.8rem;
    color: rgba(148, 163, 184, 0.75);
    margin: 0;
    line-height: 1.5;
}

html[data-theme='light'] .topic p {
    color: rgba(100, 116, 139, 0.85);
}

.pub-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pub-item {
    display: grid;
    grid-template-columns: 50px 1fr auto;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.08);
    text-decoration: none;
    transition: background 0.2s;
}

.pub-item:hover {
    background: rgba(59, 107, 154, 0.04);
    margin: 0 -1rem;
    padding: 1rem;
}

.pub-year {
    font-size: 0.85rem;
    font-weight: 600;
    color: #3b6b9a;
    font-variant-numeric: tabular-nums;
}

html[data-theme='light'] .pub-year {
    color: #3b6b9a;
}

.pub-title {
    font-size: 0.9rem;
    color: #e2e8f0;
    line-height: 1.4;
}

html[data-theme='light'] .pub-title {
    color: #1e293b;
}

.pub-venue {
    font-size: 0.75rem;
    color: rgba(148, 163, 184, 0.6);
    white-space: nowrap;
}

.more-link {
    display: inline-block;
    font-size: 0.85rem;
    color: #3b6b9a;
    text-decoration: none;
    margin-top: 1rem;
    transition: color 0.2s;
}

.more-link:hover {
    color: #5a8aba;
}

html[data-theme='light'] .more-link {
    color: #3b6b9a;
}

html[data-theme='light'] .more-link:hover {
    color: #4f46e5;
}

.lab-sidebar {
    position: sticky;
    top: 2rem;
    align-self: start;
}

.sidebar-block {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.sidebar-block:last-child {
    border-bottom: none;
}

.sidebar-block h2 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(148, 163, 184, 0.5);
    margin: 0 0 1rem 0;
}

.director-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.director-img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid rgba(59, 107, 154, 0.2);
}

.director-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.director-info strong {
    font-size: 0.95rem;
    color: #e2e8f0;
}

html[data-theme='light'] .director-info strong {
    color: #1e293b;
}

.director-info span {
    font-size: 0.8rem;
    color: rgba(148, 163, 184, 0.7);
}

.director-info a {
    font-size: 0.75rem;
    color: #3b6b9a;
    text-decoration: none;
}

.director-info .contact-link {
    display: inline-block;
    margin-top: 0.3rem;
    padding: 0.3rem 0.6rem;
    background: rgba(59, 107, 154, 0.1);
    border-radius: 4px;
    transition: background 0.2s;
}

.director-info .contact-link:hover {
    background: rgba(59, 107, 154, 0.2);
}

.member-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.member-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.06);
}

.member-list li:last-child {
    border-bottom: none;
}

.member-list a {
    font-size: 0.85rem;
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.2s;
}

.member-list a:hover {
    color: #3b6b9a;
}

html[data-theme='light'] .member-list a {
    color: #1e293b;
}

html[data-theme='light'] .member-list a:hover {
    color: #3b6b9a;
}

.member-role {
    font-size: 0.7rem;
    color: rgba(148, 163, 184, 0.5);
}

.keyword-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.keyword-cloud span {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    background: rgba(148, 163, 184, 0.08);
    color: rgba(148, 163, 184, 0.8);
    border-radius: 3px;
    transition: all 0.2s;
}

.keyword-cloud span:hover {
    background: rgba(59, 107, 154, 0.15);
    color: #3b6b9a;
}

html[data-theme='light'] .keyword-cloud span {
    background: rgba(148, 163, 184, 0.1);
    color: rgba(100, 116, 139, 0.8);
}

html[data-theme='light'] .keyword-cloud span:hover {
    background: rgba(59, 107, 154, 0.1);
    color: #3b6b9a;
}

.contact-info {
    font-style: normal;
    font-size: 0.85rem;
    color: rgba(148, 163, 184, 0.75);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .lab-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .header-logos {
        justify-content: center;
    }
    
    .header-numbers {
        justify-content: center;
    }
    
    .lab-grid {
        grid-template-columns: 1fr;
    }
    
    .lab-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .sidebar-block {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 600px) {
    .lab-page {
        padding: 1rem;
    }
    
    .header-logos img {
        height: 35px;
    }
    
    .header-logos img.yeditepe {
        height: 30px;
    }
    
    .header-main h1 {
        font-size: 1.8rem;
    }
    
    .topics-grid {
        grid-template-columns: 1fr;
    }
    
    .pub-item {
        grid-template-columns: 45px 1fr;
    }
    
    .pub-venue {
        display: none;
    }
    
    .lab-sidebar {
        grid-template-columns: 1fr;
    }
}

.research-page-v2,
.research-page {
    width: 100%;
    overflow-x: hidden;
}

.showcase-hero {
    position: relative;
    background: linear-gradient(180deg, #080c14 0%, #0f172a 100%);
    overflow: hidden;
}

html[data-theme='light'] .showcase-hero {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.showcase-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(59, 107, 154, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 107, 154, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

html[data-theme='light'] .grid-pattern {
    background-image: 
        linear-gradient(rgba(59, 107, 154, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 107, 154, 0.06) 1px, transparent 1px);
}

.showcase-header {
    position: relative;
    padding: 1.5rem 3rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

html[data-theme='light'] .showcase-header {
    border-bottom-color: rgba(148, 163, 184, 0.12);
}

.logo-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.header-logo:hover {
    opacity: 1;
}

.header-logo.yeditepe {
    height: 34px;
}

.logo-divider {
    width: 1px;
    height: 24px;
    background: rgba(148, 163, 184, 0.2);
}

.showcase-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    padding: 4rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.showcase-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lab-badge {
    display: inline-block;
    width: fit-content;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.4rem 0.8rem;
    background: rgba(59, 107, 154, 0.12);
    color: #3b6b9a;
    border-radius: 4px;
    margin-bottom: 1.2rem;
}

html[data-theme='light'] .lab-badge {
    background: rgba(59, 107, 154, 0.08);
    color: #3b6b9a;
}

.lab-name {
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin: 0;
    color: #e2e8f0;
    line-height: 1;
}

html[data-theme='light'] .lab-name {
    color: #1e293b;
}

.lab-full {
    font-size: 1.2rem;
    font-weight: 500;
    color: #3b6b9a;
    margin: 0.5rem 0 1rem 0;
}

html[data-theme='light'] .lab-full {
    color: #3b6b9a;
}

.lab-affiliation {
    font-size: 0.9rem;
    color: rgba(148, 163, 184, 0.7);
    margin: 0;
    line-height: 1.5;
}

html[data-theme='light'] .lab-affiliation {
    color: rgba(100, 116, 139, 0.8);
}

.showcase-areas {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(148, 163, 184, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
}

html[data-theme='light'] .showcase-areas {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(148, 163, 184, 0.15);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.areas-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(148, 163, 184, 0.6);
    margin: 0 0 1rem 0.5rem;
}

html[data-theme='light'] .areas-title {
    color: rgba(100, 116, 139, 0.7);
}

.area-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.area-card {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(59, 107, 154, 0.04);
    border: 1px solid rgba(59, 107, 154, 0.08);
    border-radius: 10px;
    transition: all 0.25s ease;
}

.area-card:hover {
    background: rgba(59, 107, 154, 0.08);
    border-color: rgba(59, 107, 154, 0.15);
    transform: translateY(-2px);
}

html[data-theme='light'] .area-card {
    background: rgba(59, 107, 154, 0.03);
    border-color: rgba(59, 107, 154, 0.06);
}

html[data-theme='light'] .area-card:hover {
    background: rgba(59, 107, 154, 0.06);
    border-color: rgba(59, 107, 154, 0.12);
}

.area-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 107, 154, 0.1);
    border-radius: 8px;
}

html[data-theme='light'] .area-icon {
    background: rgba(59, 107, 154, 0.08);
}

.area-info h3 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #e2e8f0;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

html[data-theme='light'] .area-info h3 {
    color: #1e293b;
}

.area-info p {
    font-size: 0.75rem;
    color: rgba(148, 163, 184, 0.7);
    margin: 0;
    line-height: 1.4;
}

html[data-theme='light'] .area-info p {
    color: rgba(100, 116, 139, 0.75);
}

.showcase-stats {
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 0;
    background: rgba(59, 107, 154, 0.06);
    border-top: 1px solid rgba(59, 107, 154, 0.1);
}

html[data-theme='light'] .showcase-stats {
    background: rgba(59, 107, 154, 0.04);
    border-top-color: rgba(59, 107, 154, 0.08);
}

.stat-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 1.5rem 2rem;
    border-right: 1px solid rgba(59, 107, 154, 0.1);
    transition: background 0.2s ease;
}

.stat-box:last-child {
    border-right: none;
}

.stat-box:hover {
    background: rgba(59, 107, 154, 0.04);
}

html[data-theme='light'] .stat-box {
    border-right-color: rgba(59, 107, 154, 0.08);
}

html[data-theme='light'] .stat-box:hover {
    background: rgba(59, 107, 154, 0.03);
}

.stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: #3b6b9a;
    letter-spacing: -0.02em;
    line-height: 1;
}

html[data-theme='light'] .stat-num {
    color: #3b6b9a;
}

.stat-text {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(148, 163, 184, 0.6);
}

html[data-theme='light'] .stat-text {
    color: rgba(100, 116, 139, 0.7);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-section {
    padding: 5rem 4rem;
    background: transparent;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #3b6b9a;
    margin-bottom: 0.8rem;
}

html[data-theme='light'] .section-label {
    color: #3b6b9a;
}

.about-title {
    font-size: 2rem;
    font-weight: 700;
    color: #e2e8f0;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
}

html[data-theme='light'] .about-title {
    color: #1e293b;
}

.about-text {
    color: rgba(226, 232, 240, 0.8);
    line-height: 1.8;
}

html[data-theme='light'] .about-text {
    color: rgba(51, 65, 85, 0.85);
}

.about-text h2, .about-text h3 {
    color: #e2e8f0;
    font-size: 1.2rem;
    margin: 2rem 0 0.8rem 0;
}

html[data-theme='light'] .about-text h2,
html[data-theme='light'] .about-text h3 {
    color: #1e293b;
}

.about-text hr {
    border: none;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    margin: 2rem 0;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-card {
    padding: 1.8rem;
    background: rgba(59, 107, 154, 0.06);
    border: 1px solid rgba(59, 107, 154, 0.12);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(59, 107, 154, 0.15);
}

html[data-theme='light'] .highlight-card {
    background: rgba(59, 107, 154, 0.04);
    border-color: rgba(59, 107, 154, 0.1);
}

.highlight-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.highlight-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e2e8f0;
    margin: 0 0 0.6rem 0;
}

html[data-theme='light'] .highlight-card h4 {
    color: #1e293b;
}

.highlight-card p {
    font-size: 0.9rem;
    color: rgba(226, 232, 240, 0.7);
    line-height: 1.6;
    margin: 0;
}

html[data-theme='light'] .highlight-card p {
    color: rgba(51, 65, 85, 0.75);
}

.focus-section {
    padding: 5rem 4rem;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, transparent 100%);
}

html[data-theme='light'] .focus-section {
    background: linear-gradient(180deg, rgba(241, 245, 249, 0.6) 0%, transparent 100%);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #e2e8f0;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
}

html[data-theme='light'] .section-title {
    color: #1e293b;
}

.section-desc {
    font-size: 1.05rem;
    color: rgba(226, 232, 240, 0.7);
    line-height: 1.6;
    margin: 0;
}

html[data-theme='light'] .section-desc {
    color: rgba(51, 65, 85, 0.75);
}

.focus-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.focus-card-v2 {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

html[data-theme='light'] .focus-card-v2 {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(148, 163, 184, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.focus-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(59, 107, 154, 0.2);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b6b9a 0%, #06b6d4 50%, #a78bfa 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.focus-card-v2:hover .card-glow {
    opacity: 1;
}

.card-content {
    padding: 2rem;
}

.card-icon-wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 107, 154, 0.1);
    border-radius: 14px;
    margin-bottom: 1.2rem;
}

html[data-theme='light'] .card-icon-wrap {
    background: rgba(59, 107, 154, 0.08);
}

.card-icon-wrap .card-icon {
    font-size: 1.6rem;
}

.focus-card-v2 h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e2e8f0;
    margin: 0 0 0.8rem 0;
    line-height: 1.3;
}

html[data-theme='light'] .focus-card-v2 h4 {
    color: #1e293b;
}

.focus-card-v2 p {
    font-size: 0.9rem;
    color: rgba(226, 232, 240, 0.7);
    line-height: 1.6;
    margin: 0 0 1.2rem 0;
}

html[data-theme='light'] .focus-card-v2 p {
    color: rgba(51, 65, 85, 0.75);
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.card-tags span {
    font-size: 0.75rem;
    padding: 0.3rem 0.7rem;
    background: rgba(59, 107, 154, 0.1);
    color: #5a8aba;
    border-radius: 20px;
    border: 1px solid rgba(59, 107, 154, 0.2);
}

html[data-theme='light'] .card-tags span {
    background: rgba(59, 107, 154, 0.06);
    color: #3b6b9a;
    border-color: rgba(59, 107, 154, 0.15);
}

.publications-section {
    padding: 5rem 4rem;
}

.publications-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.publications-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #3b6b9a 0%, #06b6d4 100%);
    opacity: 0.3;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    padding: 1.5rem 0;
    position: relative;
}

.timeline-marker {
    flex-shrink: 0;
    width: 100px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-right: 1.5rem;
}

.marker-year {
    font-size: 0.9rem;
    font-weight: 700;
    color: #3b6b9a;
    background: rgba(59, 107, 154, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
}

html[data-theme='light'] .marker-year {
    color: #3b6b9a;
    background: rgba(59, 107, 154, 0.08);
}

.timeline-content {
    flex: 1;
    padding-left: 1.5rem;
    border-left: 2px solid rgba(148, 163, 184, 0.15);
    transition: border-color 0.3s ease;
}

.timeline-item:hover .timeline-content {
    border-left-color: #3b6b9a;
}

.timeline-title {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: #e2e8f0;
    text-decoration: none;
    line-height: 1.5;
    margin-bottom: 0.4rem;
    transition: color 0.3s ease;
}

.timeline-title:hover {
    color: #3b6b9a;
}

html[data-theme='light'] .timeline-title {
    color: #1e293b;
}

html[data-theme='light'] .timeline-title:hover {
    color: #3b6b9a;
}

.timeline-venue {
    font-size: 0.85rem;
    color: rgba(226, 232, 240, 0.6);
}

html[data-theme='light'] .timeline-venue {
    color: rgba(71, 85, 105, 0.7);
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, #3b6b9a 0%, #8b5cf6 100%);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(59, 107, 154, 0.4);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid rgba(59, 107, 154, 0.4);
    color: #5a8aba;
}

html[data-theme='light'] .cta-button.secondary {
    border-color: rgba(59, 107, 154, 0.3);
    color: #3b6b9a;
}

.cta-button.secondary:hover {
    background: rgba(59, 107, 154, 0.1);
    box-shadow: 0 12px 40px rgba(59, 107, 154, 0.15);
}

.team-section {
    padding: 5rem 4rem;
    background: linear-gradient(180deg, transparent 0%, rgba(59, 107, 154, 0.04) 100%);
}

html[data-theme='light'] .team-section {
    background: linear-gradient(180deg, transparent 0%, rgba(59, 107, 154, 0.03) 100%);
}

.team-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 24px;
}

html[data-theme='light'] .team-content {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(148, 163, 184, 0.15);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.team-info {
    width: 100%;
}

.team-leader {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(59, 107, 154, 0.06);
    border: 1px solid rgba(59, 107, 154, 0.12);
    border-radius: 16px;
    margin: 1.5rem 0;
}

html[data-theme='light'] .team-leader {
    background: rgba(59, 107, 154, 0.04);
    border-color: rgba(59, 107, 154, 0.1);
}

.leader-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid rgba(59, 107, 154, 0.3);
    box-shadow: 0 4px 20px rgba(59, 107, 154, 0.2);
}

.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b6b9a 0%, #8b5cf6 100%);
    color: #fff;
    font-weight: 700;
    font-size: 2rem;
}

.leader-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.leader-role {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #3b6b9a;
}

html[data-theme='light'] .leader-role {
    color: #3b6b9a;
}

.leader-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e2e8f0;
    margin: 0;
    letter-spacing: -0.01em;
}

html[data-theme='light'] .leader-name {
    color: #1e293b;
}

.leader-affiliation {
    font-size: 0.85rem;
    color: rgba(148, 163, 184, 0.7);
}

html[data-theme='light'] .leader-affiliation {
    color: rgba(100, 116, 139, 0.8);
}

.team-desc {
    font-size: 0.95rem;
    color: rgba(226, 232, 240, 0.75);
    line-height: 1.7;
    margin: 1.5rem 0;
}

html[data-theme='light'] .team-desc {
    color: rgba(51, 65, 85, 0.8);
}

.team-members-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.members-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(148, 163, 184, 0.6);
    white-space: nowrap;
}

html[data-theme='light'] .members-label {
    color: rgba(100, 116, 139, 0.7);
}

.team-avatars {
    display: flex;
    align-items: center;
}

.avatar-item {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #0f172a;
    margin-left: -12px;
    transition: transform 0.3s ease, z-index 0s;
}

.avatar-item:first-child {
    margin-left: 0;
}

.avatar-item:hover {
    transform: scale(1.15);
    z-index: 10;
}

html[data-theme='light'] .avatar-item {
    border-color: #fff;
}

.avatar-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b6b9a 0%, #8b5cf6 100%);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
}

.avatar-more {
    background: rgba(59, 107, 154, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-more span {
    color: #5a8aba;
    font-weight: 600;
    font-size: 0.8rem;
}

html[data-theme='light'] .avatar-more {
    background: rgba(59, 107, 154, 0.15);
}

html[data-theme='light'] .avatar-more span {
    color: #3b6b9a;
}

@media (max-width: 1024px) {
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3rem 2rem;
    }
    
    .showcase-intro {
        text-align: center;
        align-items: center;
    }
    
    .area-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .focus-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-content {
        flex-direction: column;
        text-align: center;
    }
    
    .team-avatars {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .showcase-header {
        padding: 1rem 1.5rem;
    }
    
    .logo-row {
        gap: 1rem;
    }
    
    .header-logo {
        height: 32px;
    }
    
    .header-logo.yeditepe {
        height: 28px;
    }
    
    .logo-divider {
        height: 20px;
    }
    
    .showcase-content {
        padding: 2rem 1.5rem;
    }
    
    .lab-name {
        font-size: 2.2rem;
    }
    
    .lab-full {
        font-size: 1rem;
    }
    
    .area-cards {
        grid-template-columns: 1fr;
    }
    
    .showcase-stats {
        flex-wrap: wrap;
    }
    
    .stat-box {
        flex: 1 1 50%;
        border-right: none;
        border-bottom: 1px solid rgba(59, 107, 154, 0.1);
        padding: 1.2rem 1rem;
    }
    
    .stat-box:nth-child(odd) {
        border-right: 1px solid rgba(59, 107, 154, 0.1);
    }
    
    .stat-box:nth-last-child(-n+2) {
        border-bottom: none;
    }
    
    .stat-num {
        font-size: 1.6rem;
    }
    
    .about-section,
    .focus-section,
    .publications-section,
    .team-section {
        padding: 3rem 1.5rem;
    }
    
    .focus-grid-v2 {
        grid-template-columns: 1fr;
    }
    
    .publications-timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        width: 60px;
    }
    
    .team-content {
        padding: 2rem;
    }
    
    .avatar-item {
        width: 50px;
        height: 50px;
        margin-left: -12px;
    }
}

.research-article {
    width: 100%;
    background: transparent;
}

.research-article-header {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: clamp(3rem, 8vw, 5rem) clamp(1.5rem, 5vw, 3rem);
    background: linear-gradient(135deg, rgba(79, 112, 255, 0.08), rgba(34, 211, 238, 0.06)),
                linear-gradient(to bottom, rgba(10, 14, 24, 0.4), rgba(10, 14, 24, 0.6));
    border-bottom: 1px solid rgba(86, 122, 255, 0.12);
    display: grid;
    gap: clamp(2rem, 4vw, 3rem);
    overflow: hidden;
}

html[data-theme='light'] .research-article-header {
    background: linear-gradient(135deg, rgba(79, 112, 255, 0.06), rgba(34, 211, 238, 0.04)),
                linear-gradient(to bottom, rgba(240, 245, 255, 0.8), rgba(245, 248, 255, 0.6));
    border-bottom-color: rgba(79, 112, 255, 0.1);
}

.research-article-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.research-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: rgba(200, 215, 255, 0.6);
    margin-bottom: 1.5rem;
}

.research-breadcrumb a {
    color: rgba(122, 162, 247, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.research-breadcrumb a:hover {
    color: rgba(122, 162, 247, 1);
}

html[data-theme='light'] .research-breadcrumb {
    color: rgba(100, 116, 139, 0.6);
}

html[data-theme='light'] .research-breadcrumb a {
    color: rgba(52, 99, 255, 0.75);
}

html[data-theme='light'] .research-breadcrumb a:hover {
    color: rgba(29, 78, 216, 0.9);
}

.breadcrumb-separator {
    opacity: 0.5;
}

.research-article-title {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: rgba(226, 232, 240, 0.95);
}

html[data-theme='light'] .research-article-title {
    color: rgba(15, 23, 42, 0.95);
}

.research-article-subtitle {
    margin: 1rem 0 0 0;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(200, 215, 255, 0.8);
    max-width: 700px;
}

html[data-theme='light'] .research-article-subtitle {
    color: rgba(71, 85, 105, 0.78);
}

.research-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(86, 122, 255, 0.12);
}

html[data-theme='light'] .research-article-meta {
    border-top-color: rgba(79, 112, 255, 0.1);
}

.research-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.meta-label {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.6);
    font-weight: 600;
}

html[data-theme='light'] .meta-label {
    color: rgba(100, 116, 139, 0.6);
}

.meta-date {
    font-size: 0.95rem;
    color: rgba(226, 232, 240, 0.75);
}

html[data-theme='light'] .meta-date {
    color: rgba(30, 41, 59, 0.75);
}

.research-article-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.research-topic-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: rgba(86, 122, 255, 0.16);
    color: rgba(122, 162, 247, 0.9);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 999px;
    border: 1px solid rgba(86, 122, 255, 0.24);
}

html[data-theme='light'] .research-topic-badge {
    background: rgba(79, 112, 255, 0.12);
    color: rgba(52, 99, 255, 0.8);
    border-color: rgba(79, 112, 255, 0.2);
}

.research-article-image {
    position: relative;
    width: 100%;
    height: clamp(300px, 50vw, 500px);
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(79, 112, 255, 0.1), rgba(34, 211, 238, 0.08));
}

.article-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.research-article-body {
    padding: clamp(3rem, 8vw, 5rem) clamp(1.5rem, 5vw, 3rem) clamp(2rem, 6vw, 4rem);
}

.research-article-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: clamp(3rem, 5vw, 4rem);
}

@media (max-width: 1024px) {
    .research-article-container {
        grid-template-columns: 1fr;
    }
}

.research-content-main {
    color: rgba(226, 232, 240, 0.85);
    line-height: 1.85;
    font-size: 1.05rem;
}

html[data-theme='light'] .research-content-main {
    color: rgba(30, 41, 59, 0.85);
}

.research-content-main h2 {
    margin: 2.5rem 0 1.2rem 0;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: rgba(226, 232, 240, 0.95);
}

html[data-theme='light'] .research-content-main h2 {
    color: rgba(15, 23, 42, 0.95);
}

.research-content-main h3 {
    margin: 1.8rem 0 0.9rem 0;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.005em;
    color: rgba(200, 215, 255, 0.9);
}

html[data-theme='light'] .research-content-main h3 {
    color: rgba(52, 99, 255, 0.88);
}

.research-content-main h4 {
    margin: 1.4rem 0 0.7rem 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(200, 215, 255, 0.85);
}

html[data-theme='light'] .research-content-main h4 {
    color: rgba(52, 99, 255, 0.8);
}

.research-content-main p {
    margin-bottom: 1.2rem;
}

.research-content-main ul,
.research-content-main ol {
    margin: 1.2rem 0 1.2rem 2rem;
    padding: 0;
}

.research-content-main li {
    margin-bottom: 0.6rem;
}

.research-content-main a {
    color: rgba(122, 162, 247, 0.9);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.research-content-main a:hover {
    color: rgba(122, 162, 247, 1);
}

html[data-theme='light'] .research-content-main a {
    color: rgba(52, 99, 255, 0.8);
}

html[data-theme='light'] .research-content-main a:hover {
    color: rgba(29, 78, 216, 0.95);
}

.research-content-main blockquote {
    margin: 1.5rem 0;
    padding: 1.2rem 1.5rem;
    border-left: 4px solid rgba(86, 122, 255, 0.4);
    background: rgba(86, 122, 255, 0.08);
    border-radius: 8px;
    color: rgba(200, 215, 255, 0.85);
    font-style: normal;
}

html[data-theme='light'] .research-content-main blockquote {
    border-left-color: rgba(79, 112, 255, 0.35);
    background: rgba(79, 112, 255, 0.06);
    color: rgba(71, 85, 105, 0.8);
}

.research-content-main code {
    background: rgba(86, 122, 255, 0.12);
    color: rgba(168, 195, 255, 0.95);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-family: var(--font-monospace);
    font-size: 0.9em;
}

html[data-theme='light'] .research-content-main code {
    background: rgba(79, 112, 255, 0.08);
    color: rgba(52, 99, 255, 0.9);
}

.research-content-main pre {
    background: rgba(10, 14, 24, 0.8);
    border: 1px solid rgba(86, 122, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

html[data-theme='light'] .research-content-main pre {
    background: rgba(245, 248, 255, 0.9);
    border-color: rgba(79, 112, 255, 0.15);
}

.research-content-main img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.research-article-sidebar {
    display: grid;
    gap: 1.8rem;
}

@media (max-width: 1024px) {
    .research-article-sidebar {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

.sidebar-widget {
    padding: 1.5rem;
    background: linear-gradient(160deg, rgba(14, 20, 36, 0.6), rgba(10, 14, 24, 0.5));
    border: 1px solid rgba(86, 122, 255, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

html[data-theme='light'] .sidebar-widget {
    background: linear-gradient(160deg, rgba(245, 248, 255, 0.9), rgba(240, 245, 255, 0.8));
    border-color: rgba(79, 112, 255, 0.14);
}

.widget-title {
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(122, 162, 247, 0.95);
}

html[data-theme='light'] .widget-title {
    color: rgba(52, 99, 255, 0.85);
}

.widget-content {
    font-size: 0.95rem;
}

.topics-list,
.collaborators-list,
.publications-list {
    display: grid;
    gap: 0.6rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.topic-chip {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: rgba(86, 122, 255, 0.14);
    color: rgba(122, 162, 247, 0.85);
    border-radius: 999px;
    font-size: 0.8rem;
    border: 1px solid rgba(86, 122, 255, 0.22);
}

html[data-theme='light'] .topic-chip {
    background: rgba(79, 112, 255, 0.1);
    color: rgba(52, 99, 255, 0.8);
    border-color: rgba(79, 112, 255, 0.18);
}

.collaborators-list li,
.publications-list li {
    color: rgba(200, 215, 255, 0.75);
}

html[data-theme='light'] .collaborators-list li,
html[data-theme='light'] .publications-list li {
    color: rgba(71, 85, 105, 0.75);
}

.publications-list a {
    color: rgba(122, 162, 247, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.publications-list a:hover {
    color: rgba(122, 162, 247, 1);
    text-decoration: underline;
}

html[data-theme='light'] .publications-list a {
    color: rgba(52, 99, 255, 0.75);
}

html[data-theme='light'] .publications-list a:hover {
    color: rgba(29, 78, 216, 0.9);
}

.share-buttons {
    display: flex;
    gap: 0.8rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(86, 122, 255, 0.12);
    color: rgba(122, 162, 247, 0.8);
    border: 1px solid rgba(86, 122, 255, 0.24);
    transition: all 0.25s ease;
    text-decoration: none;
}

.share-btn:hover {
    background: rgba(86, 122, 255, 0.24);
    color: rgba(122, 162, 247, 1);
    border-color: rgba(86, 122, 255, 0.4);
    transform: translateY(-2px);
}

html[data-theme='light'] .share-btn {
    background: rgba(79, 112, 255, 0.1);
    color: rgba(52, 99, 255, 0.75);
    border-color: rgba(79, 112, 255, 0.2);
}

html[data-theme='light'] .share-btn:hover {
    background: rgba(79, 112, 255, 0.18);
    color: rgba(52, 99, 255, 0.95);
    border-color: rgba(79, 112, 255, 0.35);
}

.research-article-navigation {
    padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3rem);
    border-top: 1px solid rgba(86, 122, 255, 0.12);
    margin-top: clamp(2rem, 6vw, 4rem);
}

html[data-theme='light'] .research-article-navigation {
    border-top-color: rgba(79, 112, 255, 0.1);
}

.research-article-navigation .research-article-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.nav-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    color: rgba(122, 162, 247, 0.85);
    border: 1px solid rgba(86, 122, 255, 0.3);
    background: rgba(86, 122, 255, 0.08);
    border-radius: 12px;
    transition: all 0.25s ease;
}

.nav-button:hover {
    color: rgba(122, 162, 247, 1);
    background: rgba(86, 122, 255, 0.18);
    border-color: rgba(86, 122, 255, 0.5);
    transform: translateY(-2px);
}

html[data-theme='light'] .nav-button {
    color: rgba(52, 99, 255, 0.8);
    border-color: rgba(79, 112, 255, 0.25);
    background: rgba(79, 112, 255, 0.06);
}

html[data-theme='light'] .nav-button:hover {
    color: rgba(52, 99, 255, 0.95);
    background: rgba(79, 112, 255, 0.14);
    border-color: rgba(79, 112, 255, 0.4);
}

.nav-back {
    margin-left: auto;
}

.home-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000000;
}

html[data-theme='light'] .home-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

#binary-rain {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0.6;
    filter: blur(3px);
}

html[data-theme='light'] #binary-rain {
    opacity: 0.6;
    filter: blur(3px);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 600;
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    line-height: 1.25;
    letter-spacing: -0.015em;
}

.hero-description {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
    margin-bottom: 2.5rem;
    font-weight: 400;
    font-family: var(--font-primary);
    letter-spacing: 0.005em;
}

.hero-cta {
    display: inline-flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.75rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    border: 1px solid transparent;
    letter-spacing: 0.01em;
}

.cta-primary {
    background: #3b6b9a;
    color: #ffffff;
    border-color: #3b6b9a;
}

.cta-primary:hover {
    background: #2d4a6f;
}

.cta-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.4);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

html[data-theme='light'] .hero-title {
    color: rgba(15, 23, 42, 0.95);
}

html[data-theme='light'] .hero-description {
    color: rgba(51, 65, 85, 0.85);
}

html[data-theme='light'] .cta-primary {
    background: #3b6b9a;
    border-color: #3b6b9a;
}

html[data-theme='light'] .cta-primary:hover {
    background: #2d4a6f;
}

html[data-theme='light'] .cta-secondary {
    background: transparent;
    color: #3b6b9a;
    border-color: #3b6b9a;
}

html[data-theme='light'] .cta-secondary:hover {
    background: rgba(59, 107, 154, 0.1);
}

.home-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
}

@media (max-width: 960px) {
    .home-hero-container {
        grid-template-columns: 1fr;
        gap: clamp(2rem, 5vw, 3rem);
    }
}

.home-hero-content {
    display: grid;
    gap: 1.5rem;
}

.home-hero-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.9);
    font-weight: 500;
}

html[data-theme='light'] .home-hero-label {
    color: rgba(71, 85, 105, 0.8);
}

.home-hero-title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.95);
}

html[data-theme='light'] .home-hero-title {
    color: #3b6b9a;
}

.home-hero-subtitle {
    margin: 0;
    font-family: var(--font-primary);
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    line-height: 1.75;
    color: rgba(226, 232, 240, 0.82);
    max-width: 550px;
    font-weight: 400;
    letter-spacing: 0.005em;
}

html[data-theme='light'] .home-hero-subtitle {
    color: rgba(30, 41, 59, 0.82);
}

.home-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

@media (max-width: 640px) {
    .home-hero-cta {
        flex-direction: column;
    }
}

.btn-primary-home,
.btn-secondary-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.75rem;
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary-home {
    background: #3b6b9a;
    color: #ffffff;
    border: 1px solid #3b6b9a;
}

.btn-primary-home:hover {
    background: #2d4a6f;
}

.btn-secondary-home {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary-home:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

html[data-theme='light'] .btn-secondary-home {
    color: #3b6b9a;
    border-color: #3b6b9a;
}

html[data-theme='light'] .btn-secondary-home:hover {
    background: rgba(59, 107, 154, 0.1);
}

.home-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-card {
    padding: clamp(2.5rem, 4vw, 3.5rem);
    background: linear-gradient(160deg, rgba(14, 20, 36, 0.5), rgba(10, 14, 24, 0.4));
    border: 1px solid rgba(86, 122, 255, 0.25);
    border-radius: 28px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-align: center;
    display: grid;
    gap: 1.2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-visual-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(79, 112, 255, 0.1) 0%,
        transparent 50%,
        rgba(34, 211, 238, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-visual-card:hover::before {
    opacity: 1;
}

.hero-visual-card:hover {
    transform: translateY(-8px);
    border-color: rgba(86, 122, 255, 0.4);
    box-shadow: 0 28px 80px rgba(79, 112, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

html[data-theme='light'] .hero-visual-card {
    background: linear-gradient(160deg, rgba(245, 248, 255, 0.85), rgba(240, 245, 255, 0.75));
    border-color: rgba(79, 112, 255, 0.22);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

html[data-theme='light'] .hero-visual-card:hover {
    box-shadow: 0 24px 64px rgba(79, 112, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.visual-badge {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(122, 162, 247, 0.8);
    font-weight: 700;
}

html[data-theme='light'] .visual-badge {
    color: rgba(52, 99, 255, 0.75);
}

.hero-visual-card h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(226, 232, 240, 0.95);
}

html[data-theme='light'] .hero-visual-card h3 {
    color: rgba(15, 23, 42, 0.95);
}

.hero-visual-card p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(200, 215, 255, 0.75);
}

html[data-theme='light'] .hero-visual-card p {
    color: rgba(71, 85, 105, 0.75);
}

.location-badge {
    font-size: 1rem;
    margin-top: 0.5rem !important;
}

.home-content-wrapper {
    max-width: 1200px;
    margin: clamp(3rem, 8vw, 6rem) auto 0;
    padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.home-stats {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: clamp(4rem, 10vw, 7rem);
    padding: clamp(3rem, 8vw, 5rem) clamp(1.5rem, 5vw, 3rem);
    background: linear-gradient(135deg, rgba(79, 112, 255, 0.08), rgba(34, 211, 238, 0.06));
    border-top: 1px solid rgba(86, 122, 255, 0.12);
    border-bottom: 1px solid rgba(86, 122, 255, 0.12);
}

html[data-theme='light'] .home-stats {
    background: linear-gradient(135deg, rgba(79, 112, 255, 0.06), rgba(34, 211, 238, 0.04));
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
}

.stat-item {
    display: grid;
    gap: 0.8rem;
}

.stat-number {
    font-size: clamp(2.5rem, 6vw, 3.8rem);
    font-weight: 900;
    background: linear-gradient(135deg, rgba(122, 162, 247, 0.95), rgba(79, 112, 255, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

html[data-theme='light'] .stat-number {
    background: linear-gradient(135deg, rgba(52, 99, 255, 0.9), rgba(79, 112, 255, 0.85));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(200, 215, 255, 0.8);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

html[data-theme='light'] .stat-label {
    color: rgba(71, 85, 105, 0.78);
}

.home-featured {
    max-width: 1200px;
    margin: clamp(4rem, 10vw, 6rem) auto 0;
    padding: clamp(3rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3rem);
}

.featured-container {
    display: grid;
    gap: clamp(2.5rem, 5vw, 4rem);
}

.featured-header {
    display: grid;
    gap: 0.8rem;
    text-align: center;
}

.featured-header h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.01em;
    color: rgba(226, 232, 240, 0.95);
}

html[data-theme='light'] .featured-header h2 {
    color: rgba(15, 23, 42, 0.95);
}

.featured-header p {
    margin: 0;
    font-size: 1.05rem;
    color: rgba(200, 215, 255, 0.75);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

html[data-theme='light'] .featured-header p {
    color: rgba(71, 85, 105, 0.75);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(2rem, 4vw, 2.8rem);
}

.featured-card {
    padding: clamp(2rem, 3.5vw, 2.8rem);
    background: linear-gradient(160deg, rgba(14, 20, 36, 0.6), rgba(10, 14, 24, 0.5));
    border: 1px solid rgba(86, 122, 255, 0.15);
    border-radius: 20px;
    display: grid;
    gap: 1.2rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html[data-theme='light'] .featured-card {
    background: linear-gradient(160deg, rgba(245, 248, 255, 0.95), rgba(240, 245, 255, 0.9));
    border-color: rgba(79, 112, 255, 0.15);
}

.featured-card:hover {
    transform: translateY(-8px);
    border-color: rgba(125, 154, 255, 0.3);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

html[data-theme='light'] .featured-card:hover {
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.featured-card-icon {
    font-size: 2.5rem;
}

.featured-card h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: rgba(226, 232, 240, 0.95);
}

html[data-theme='light'] .featured-card h3 {
    color: rgba(15, 23, 42, 0.95);
}

.featured-card h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.featured-card:hover h3 a {
    color: rgba(122, 162, 247, 0.95);
}

html[data-theme='light'] .featured-card:hover h3 a {
    color: rgba(52, 99, 255, 0.88);
}

.featured-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(200, 215, 255, 0.75);
}

html[data-theme='light'] .featured-card p {
    color: rgba(71, 85, 105, 0.75);
}

.featured-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(122, 162, 247, 0.85);
    text-decoration: none;
    transition: all 0.25s ease;
}

.featured-card:hover .featured-link {
    color: rgba(122, 162, 247, 1);
    transform: translateX(4px);
}

html[data-theme='light'] .featured-link {
    color: rgba(52, 99, 255, 0.8);
}

html[data-theme='light'] .featured-card:hover .featured-link {
    color: rgba(52, 99, 255, 0.95);
}

.home-cta {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: clamp(4rem, 10vw, 6rem);
    padding: clamp(3.5rem, 10vw, 6rem) clamp(1.5rem, 5vw, 3rem);
    background: linear-gradient(135deg, rgba(79, 112, 255, 0.15), rgba(34, 211, 238, 0.1));
    border-top: 1px solid rgba(86, 122, 255, 0.15);
    border-bottom: 1px solid rgba(86, 122, 255, 0.15);
}

html[data-theme='light'] .home-cta {
    background: linear-gradient(135deg, rgba(79, 112, 255, 0.1), rgba(34, 211, 238, 0.08));
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    display: grid;
    gap: 1.5rem;
}

.cta-container h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: rgba(226, 232, 240, 0.95);
}

html[data-theme='light'] .cta-container h2 {
    color: rgba(15, 23, 42, 0.95);
}

.cta-container p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(200, 215, 255, 0.8);
}

html[data-theme='light'] .cta-container p {
    color: rgba(71, 85, 105, 0.8);
}

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 2.8rem;
    background: linear-gradient(135deg, rgba(79, 112, 255, 0.95), rgba(52, 99, 255, 0.9));
    color: #ffffff;
    border: 2px solid rgba(79, 112, 255, 0.6);
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 32px rgba(79, 112, 255, 0.3);
}

.btn-cta-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(79, 112, 255, 0.45);
    border-color: rgba(79, 112, 255, 0.9);
}

.news-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.news-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

html[data-theme='light'] .news-header {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.news-header h1 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
}

html[data-theme='light'] .news-header h1 {
    color: var(--text-dark);
}

.news-container {
    max-width: 100%;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.news-item {
    display: flex;
    gap: 2rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

html[data-theme='light'] .news-item {
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

.news-item:last-child {
    border-bottom: none;
}

.news-date {
    flex-shrink: 0;
    width: 140px;
    font-size: 0.85rem;
    color: rgba(226, 232, 240, 0.5);
}

html[data-theme='light'] .news-date {
    color: rgba(71, 85, 105, 0.6);
}

.news-content {
    flex: 1;
}

.news-title {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    margin: 0 0 0.35rem 0;
}

.news-title a {
    color: var(--text-light);
    text-decoration: none;
}

html[data-theme='light'] .news-title a {
    color: var(--text-dark);
}

.news-title a:hover {
    color: rgba(79, 112, 255, 1);
}

.news-summary {
    font-size: 0.9rem;
    color: rgba(226, 232, 240, 0.6);
    line-height: 1.6;
    margin: 0;
}

html[data-theme='light'] .news-summary {
    color: rgba(71, 85, 105, 0.7);
}

.news-empty {
    color: rgba(226, 232, 240, 0.5);
    font-size: 0.95rem;
}

html[data-theme='light'] .news-empty {
    color: rgba(71, 85, 105, 0.6);
}

@media (max-width: 600px) {
    .news-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .news-date {
        width: auto;
    }
}

.news-header-simple {
    grid-template-columns: 1fr auto;
}

.news-grid {
    grid-template-columns: 1fr 280px;
}

.lab-page .news-list {
    display: flex;
    flex-direction: column;
}

.lab-page .news-item {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.08);
    text-decoration: none;
    transition: background 0.2s;
    align-items: baseline;
}

.lab-page .news-item:hover {
    background: rgba(59, 107, 154, 0.04);
    margin: 0 -1rem;
    padding: 0.9rem 1rem;
}

.lab-page .news-date {
    font-size: 0.8rem;
    color: rgba(148, 163, 184, 0.6);
    font-variant-numeric: tabular-nums;
}

.lab-page .news-title {
    font-size: 0.9rem;
    color: #e2e8f0;
    line-height: 1.4;
}

html[data-theme='light'] .lab-page .news-title {
    color: #1e293b;
}

.lab-page .news-cat {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.5rem;
    background: rgba(59, 107, 154, 0.1);
    color: #3b6b9a;
    border-radius: 3px;
    white-space: nowrap;
}

html[data-theme='light'] .lab-page .news-cat {
    background: rgba(59, 107, 154, 0.08);
    color: #3b6b9a;
}

.category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.cat-tag {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
    background: rgba(59, 107, 154, 0.08);
    color: #3b6b9a;
    border-radius: 4px;
}

html[data-theme='light'] .cat-tag {
    background: rgba(59, 107, 154, 0.06);
    color: #3b6b9a;
}

.archive-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.archive-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.06);
}

.archive-list li:last-child {
    border-bottom: none;
}

.archive-year {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e2e8f0;
}

html[data-theme='light'] .archive-year {
    color: #1e293b;
}

.archive-count {
    font-size: 0.8rem;
    color: rgba(148, 163, 184, 0.6);
}

.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li {
    padding: 0.4rem 0;
}

.quick-links a {
    font-size: 0.85rem;
    color: #3b6b9a;
    text-decoration: none;
    transition: color 0.2s;
}

.quick-links a:hover {
    color: #5a8aba;
}

html[data-theme='light'] .quick-links a {
    color: #3b6b9a;
}

html[data-theme='light'] .quick-links a:hover {
    color: #4f46e5;
}

.news-article-page {
    max-width: 700px;
}

.news-article-page .back-link {
    display: inline-block;
    font-size: 0.85rem;
    color: #3b6b9a;
    text-decoration: none;
    margin-bottom: 2rem;
}

.news-article-page .back-link:hover {
    color: #5a8aba;
}

html[data-theme='light'] .news-article-page .back-link {
    color: #3b6b9a;
}

.news-article-page .article-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.news-article-page .article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.news-article-page .article-meta time {
    font-size: 0.85rem;
    color: rgba(148, 163, 184, 0.7);
}

.news-article-page .article-cat {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.5rem;
    background: rgba(59, 107, 154, 0.1);
    color: #3b6b9a;
    border-radius: 3px;
}

html[data-theme='light'] .news-article-page .article-cat {
    background: rgba(59, 107, 154, 0.08);
    color: #3b6b9a;
}

.news-article-page h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e2e8f0;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

html[data-theme='light'] .news-article-page h1 {
    color: #1e293b;
}

.news-article-page .article-summary {
    font-size: 1.05rem;
    color: rgba(148, 163, 184, 0.8);
    margin: 1rem 0 0 0;
    line-height: 1.6;
}

html[data-theme='light'] .news-article-page .article-summary {
    color: rgba(100, 116, 139, 0.85);
}

.news-article-page .article-content {
    margin-bottom: 2rem;
}

.news-article-page .article-footer {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.news-article-page .article-author {
    font-size: 0.9rem;
    color: rgba(148, 163, 184, 0.6);
    font-style: italic;
}

.empty-msg {
    color: rgba(148, 163, 184, 0.5);
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .lab-page .news-item {
        grid-template-columns: 50px 1fr;
    }
    
    .lab-page .news-cat {
        display: none;
    }
}

.contact-header-simple {
    grid-template-columns: 1fr;
}

.contact-grid {
    grid-template-columns: 1fr 300px;
}

.location-card {
    padding: 1.5rem;
    background: rgba(59, 107, 154, 0.04);
    border: 1px solid rgba(59, 107, 154, 0.1);
    border-radius: 8px;
}

html[data-theme='light'] .location-card {
    background: rgba(59, 107, 154, 0.03);
    border-color: rgba(59, 107, 154, 0.08);
}

.location-details strong {
    display: block;
    font-size: 1rem;
    color: #e2e8f0;
    margin-bottom: 0.8rem;
}

html[data-theme='light'] .location-details strong {
    color: #1e293b;
}

.location-details address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.location-details address span {
    font-size: 0.9rem;
    color: rgba(148, 163, 184, 0.8);
}

html[data-theme='light'] .location-details address span {
    color: rgba(100, 116, 139, 0.85);
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.contact-list li:last-child {
    border-bottom: none;
}

.contact-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(148, 163, 184, 0.5);
}

.contact-list a {
    font-size: 0.9rem;
    color: #3b6b9a;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-list a:hover {
    color: #5a8aba;
}

html[data-theme='light'] .contact-list a {
    color: #3b6b9a;
}

html[data-theme='light'] .contact-list a:hover {
    color: #4f46e5;
}

.contact-value {
    font-size: 0.9rem;
    color: #e2e8f0;
}

html[data-theme='light'] .contact-value {
    color: #1e293b;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
