/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #2d3748;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
.header {
    background-color: #2d3748;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 2rem;
}

.nav-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-shrink: 0;
    gap: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-icons a {
    color: #63b3ed;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #90cdf4;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: nowrap;
    flex: 1;
    justify-content: flex-end;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #63b3ed;
}

.nav-links a i {
    font-size: 1.1rem;
}

.nav-links a.active {
    color: #63b3ed;
}

.theme-toggle {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, transform 0.2s ease;
    margin-left: 0.5rem;
}

.theme-toggle:hover {
    color: #63b3ed;
    transform: scale(1.1);
}

.theme-toggle i {
    font-size: 1.1rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 33px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.hamburger-line {
    width: 30px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

body.light-mode .hamburger-line {
    background-color: #2d3748;
}

.header-name {
    font-size: 1.5rem;
    font-weight: 700;
}

.header-name a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-name a:hover {
    color: #63b3ed;
}

/* Main Content */
.main-content {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    width: 100%;
}

/* About Section */
.about-section {
    margin-bottom: 5rem;
}

.about-container {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.about-image {
    flex-shrink: 0;
}

.about-image img {
    width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.about-text {
    flex: 1;
}

.name {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.subtitle {
    font-size: 1.5rem;
    color: #cbd5e0;
    margin-bottom: 2rem;
    font-weight: 300;
}

.bio {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e2e8f0;
}

.bio p {
    margin-bottom: 1.5rem;
}

.bio a {
    color: #63b3ed;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bio a:hover {
    color: #90cdf4;
    text-decoration: underline;
}

/* Publications Section */
.publications-section {
    margin-top: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #ffffff;
}

.publications-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.publication-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.publication-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.publication-image {
    flex-shrink: 0;
    width: 200px;
}

.publication-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.publication-details {
    flex: 1;
}

.publication-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #ffffff;
    line-height: 1.4;
}

.publication-authors {
    font-size: 1rem;
    color: #cbd5e0;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.publication-journal {
    font-size: 0.95rem;
    color: #a0aec0;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.publication-status {
    font-size: 0.9rem;
    color: #90cdf4;
    font-style: italic;
    margin-bottom: 1rem;
}

.publication-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: transparent;
    color: #63b3ed;
    border: 1px solid #63b3ed;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: inherit;
}

.btn:hover {
    background-color: #63b3ed;
    color: #2d3748;
}

.btn a {
    color: inherit;
    text-decoration: none;
}

/* Publications Page Styles */
.publications-page {
    padding-top: 2rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ffffff;
}

.publications-intro {
    font-size: 1.1rem;
    color: #e2e8f0;
    line-height: 1.8;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.publication-category-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #63b3ed;
    margin-top: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(99, 179, 237, 0.3);
}

.publication-category-title:first-of-type {
    margin-top: 0;
}

.publication-status {
    font-size: 0.9rem;
    color: #90cdf4;
    font-style: italic;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
}

.publications-list {
    position: relative;
}

.publication-year-group {
    margin-bottom: 2rem;
}

.publication-entry {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.publication-content {
    display: flex;
    gap: 1.5rem;
    flex: 1;
    align-items: flex-start;
}

.publication-thumbnail {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
}

.publication-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.publication-info {
    flex: 1;
}

.publication-info .publication-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
    line-height: 1.4;
}

.publication-info .publication-authors {
    font-size: 0.95rem;
    color: #cbd5e0;
    margin-bottom: 0.4rem;
    line-height: 1.6;
}

.publication-venue {
    font-size: 0.9rem;
    color: #a0aec0;
    margin-bottom: 0.75rem;
    font-style: italic;
}

.btn-small {
    display: inline-block;
    padding: 0.35rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: none;
    border-radius: 3px;
    text-decoration: none;
    font-size: 0.85rem;
    margin-right: 0.5rem;
    transition: background-color 0.3s ease;
    cursor: pointer;
    font-family: inherit;
}

.btn-small:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-small a {
    color: inherit;
    text-decoration: none;
}

.publication-year {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
    min-width: 80px;
    text-align: right;
}

.publication-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.review-details {
    color: #cbd5e0;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 0.75rem;
    padding: 0.75rem;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
}

/* Projects Page Styles */
.projects-page {
    padding-top: 2rem;
}

.projects-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.project-card {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.project-card:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.project-image {
    flex-shrink: 0;
    width: 400px;
    height: 250px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.project-content {
    flex: 1;
}

.project-content .project-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.project-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.project-type {
    padding: 0.25rem 0.75rem;
    background-color: rgba(99, 179, 237, 0.2);
    color: #63b3ed;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.project-date {
    color: #a0aec0;
    font-size: 0.9rem;
}

.project-tech {
    color: #cbd5e0;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.project-tech strong {
    color: #ffffff;
}

.project-description {
    margin-bottom: 1.5rem;
}

.project-description h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.project-features {
    list-style: none;
    padding-left: 0;
}

.project-features li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #e2e8f0;
    line-height: 1.7;
}

.project-features li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #63b3ed;
    font-weight: bold;
}

.project-features li strong {
    color: #ffffff;
}

.project-links {
    margin-top: 1.5rem;
}

.view-all {
    text-align: center;
    margin-top: 3rem;
}

/* Section Styles */
.section {
    margin-bottom: 5rem;
}

.experience-item,
.education-item {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.experience-header,
.education-header {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1rem;
}

.experience-header h3,
.education-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

.company {
    color: #63b3ed;
    font-weight: 500;
}

.date {
    color: #a0aec0;
    font-size: 0.9rem;
    margin-left: auto;
}

.experience-list,
.project-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.experience-list li,
.project-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: #e2e8f0;
    line-height: 1.7;
}

.experience-list li:before,
.project-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #63b3ed;
    font-weight: bold;
}

.tech-stack {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e0;
    font-size: 0.9rem;
}

.degree {
    font-size: 1.1rem;
    color: #63b3ed;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.details {
    color: #cbd5e0;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-info {
    margin-bottom: 1.5rem;
    color: #cbd5e0;
    font-size: 0.95rem;
}

.contact-info a {
    color: #63b3ed;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #90cdf4;
    text-decoration: underline;
}

.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.skills-category {
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.skills-category h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #63b3ed;
}

.skills-category p {
    color: #e2e8f0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.certification-item {
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.certification-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.cert-date,
.cert-org {
    color: #a0aec0;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.cert-link {
    color: #63b3ed;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cert-link:hover {
    color: #90cdf4;
    text-decoration: underline;
}

.volunteering-category {
    margin-bottom: 3rem;
}

.volunteering-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #63b3ed;
    margin-bottom: 2rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.project-item {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.project-tech {
    color: #cbd5e0;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.project-link {
    color: #63b3ed;
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: #90cdf4;
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: #2d3748;
    padding: 3rem 2rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-social a {
    color: #63b3ed;
    font-size: 1.3rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #90cdf4;
}

.copyright {
    color: #a0aec0;
    font-size: 0.9rem;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }

    .nav-header {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .hamburger {
        display: flex;
        margin-left: auto;
    }

    .social-icons {
        gap: 1rem;
        flex-shrink: 0;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 0.75rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .theme-toggle {
        margin-top: 0.5rem;
        margin-left: 0;
    }

    .main-content {
        padding: 2rem 1rem;
    }

    .about-container {
        flex-direction: column;
        gap: 2rem;
    }

    .about-image {
        width: 100%;
        text-align: center;
    }

    .about-image img {
        width: 250px;
        max-width: 100%;
    }

    .name {
        font-size: 2rem;
        text-align: center;
    }

    .subtitle {
        font-size: 1.2rem;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
        text-align: center;
    }

    .publication-item {
        flex-direction: column;
        gap: 1.5rem;
    }

    .publication-image {
        width: 100%;
    }

    .publication-image img {
        width: 100%;
    }

    .publication-title {
        font-size: 1.1rem;
    }

    .publication-authors {
        font-size: 0.9rem;
    }

    .publication-journal {
        font-size: 0.85rem;
    }

    .footer {
        padding: 2rem 1rem;
    }

    .footer-social {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .name {
        font-size: 1.75rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .bio {
        font-size: 1rem;
    }

    .nav-links {
        font-size: 0.9rem;
    }

    .social-icons a,
    .footer-social a {
        font-size: 1.1rem;
    }

    /* Publications page mobile */
    .page-title {
        font-size: 1.75rem;
    }

    .publication-entry {
        flex-direction: column;
        gap: 1rem;
    }

    .publication-year {
        font-size: 1.5rem;
        text-align: left;
        min-width: auto;
    }

    .publication-content {
        width: 100%;
        flex-direction: column;
    }

    .publication-thumbnail {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
        min-height: 180px;
        margin-bottom: 1rem;
    }

    .publication-thumbnail img {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
        object-fit: cover;
    }

    .publication-thumbnail i {
        font-size: 2.5rem !important;
    }

    /* Hide icon thumbnails on mobile (for peer-review page) */
    .publication-thumbnail:has(i) {
        display: none;
    }

    .publication-info {
        width: 100%;
    }

    .publication-info .publication-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .publication-info .publication-authors,
    .publication-venue {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }

    .publication-status {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .review-details {
        font-size: 0.85rem;
        padding: 0.9rem;
        margin-top: 0.5rem;
    }

    .publication-category-title {
        font-size: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 1.5rem;
    }

    .publications-intro {
        font-size: 1rem;
        padding: 1rem;
        margin-bottom: 2rem;
    }

    .publication-divider {
        margin: 1.5rem 0;
    }
}

@media (max-width: 768px) {
    .header-name {
        font-size: 1.25rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .publication-entry {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem !important;
        margin-bottom: 1.5rem;
    }

    .publication-year {
        font-size: 1.75rem;
        text-align: left;
        min-width: auto;
        order: -1;
    }

    .publication-content {
        width: 100%;
        flex-direction: column;
        gap: 1rem;
    }

    .publication-thumbnail {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
        min-height: 200px;
        margin-bottom: 1rem;
    }

    .publication-thumbnail img {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
        object-fit: cover;
    }

    .publication-thumbnail i {
        font-size: 3rem !important;
    }

    /* Hide icon thumbnails on mobile (for peer-review page) */
    .publication-thumbnail:has(i) {
        display: none;
    }

    .publication-info {
        width: 100%;
    }

    .publication-info .publication-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .publication-info .publication-authors,
    .publication-venue {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .publication-status {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .review-details {
        font-size: 0.9rem;
        padding: 1rem;
        margin-top: 0.5rem;
    }

    /* Projects page mobile */
    .project-card {
        flex-direction: column;
        gap: 1.5rem;
    }

    .project-image {
        width: 100%;
        height: 200px;
    }

    .project-content .project-title {
        font-size: 1.5rem;
    }

    .skills-container {
        grid-template-columns: 1fr;
    }
}

/* Light Mode Styles */
body.light-mode {
    background-color: #f7fafc;
    color: #2d3748;
}

body.light-mode .header {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

body.light-mode .nav-links a {
    color: #2d3748;
}

body.light-mode .nav-links a:hover {
    color: #63b3ed;
}

body.light-mode .nav-links a.active {
    color: #63b3ed;
}

body.light-mode .theme-toggle {
    color: #2d3748;
}

body.light-mode .theme-toggle:hover {
    color: #63b3ed;
}

body.light-mode .social-icons a {
    color: #4a5568;
}

body.light-mode .social-icons a:hover {
    color: #63b3ed;
}

body.light-mode .name {
    color: #1a202c;
}

body.light-mode .subtitle {
    color: #4a5568;
}

body.light-mode .bio {
    color: #4a5568;
}

body.light-mode .bio a {
    color: #63b3ed;
}

body.light-mode .section-title {
    color: #1a202c;
}

body.light-mode .publication-item,
body.light-mode .experience-item,
body.light-mode .education-item,
body.light-mode .project-card,
body.light-mode .certification-item,
body.light-mode .skills-category {
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

body.light-mode .publication-item:hover,
body.light-mode .project-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body.light-mode .publication-title,
body.light-mode .project-title {
    color: #1a202c;
}

body.light-mode .publication-authors,
body.light-mode .publication-journal,
body.light-mode .project-tech {
    color: #4a5568;
}

body.light-mode .publication-status {
    color: #63b3ed;
}

body.light-mode .publications-intro {
    color: #4a5568;
    background-color: #ffffff;
}

body.light-mode .page-title {
    color: #1a202c;
}

body.light-mode .publication-category-title {
    color: #63b3ed;
    border-bottom: 2px solid rgba(99, 179, 237, 0.3);
}

body.light-mode .abstract-container {
    background-color: #f7fafc;
}

body.light-mode .abstract-text {
    color: #4a5568;
}

body.light-mode .review-details {
    color: #4a5568;
    background-color: #f7fafc;
}

body.light-mode .footer {
    background-color: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .copyright {
    color: #4a5568;
}

body.light-mode .btn-small {
    background-color: rgba(0, 0, 0, 0.05);
    color: #2d3748;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .btn-small:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: #1a202c;
}

body.light-mode .btn {
    color: #63b3ed;
    border: 1px solid #63b3ed;
}

body.light-mode .btn:hover {
    background-color: #63b3ed;
    color: #ffffff;
}

body.light-mode .publication-info .publication-title {
    color: #1a202c;
}

body.light-mode .publication-info .publication-authors {
    color: #4a5568;
}

body.light-mode .publication-venue {
    color: #718096;
}

body.light-mode .publication-status {
    color: #63b3ed;
}

body.light-mode .publication-thumbnail i {
    color: #63b3ed !important;
}

body.light-mode .publication-entry {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

body.light-mode .publication-entry:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body.light-mode .publication-year-group {
    background-color: transparent;
}

body.light-mode .publication-divider {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    body.light-mode .nav-links {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    body.light-mode .nav-links a {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
}

/* Project specific light mode styles */
body.light-mode .project-content .project-title {
    color: #1a202c;
}

body.light-mode .project-date {
    color: #718096;
}

body.light-mode .project-type {
    background-color: rgba(99, 179, 237, 0.15);
    color: #63b3ed;
}

body.light-mode .project-tech strong {
    color: #1a202c;
}

body.light-mode .project-description h3 {
    color: #1a202c;
}

body.light-mode .project-features li {
    color: #4a5568;
}

body.light-mode .project-features li strong {
    color: #1a202c;
}

body.light-mode .project-image img {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

