/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    background-image: radial-gradient(circle, #f0f0f0 1px, transparent 1px);
    background-size: 20px 20px;
    transition: all 0.3s ease;
}

body.dark-theme {
    background-color: #1a1a1a;
    background-image: radial-gradient(circle, #333 1px, transparent 1px);
    color: #e0e0e0;
}

/* Global link hover states */
a {
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.7;
}

.container {
    min-height: 100vh;
    max-width: 1400px;
    margin: 0 auto;
}

/* Main Content */
.main-content {
    width: 100%;
    padding: 2rem 3rem;
    max-width: 100%;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    padding: 0 2rem;
}

/* Hero Section */
.hero-section {
    margin-bottom: 3rem;
    text-align: left;
}

.name {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000;
    line-height: 1.2;
    text-transform: lowercase;
}

body.dark-theme .name {
    color: #fff;
}

.hero-tagline {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.4;
}

.hero-tagline p {
    margin: 0;
}

body.dark-theme .hero-tagline {
    color: #999;
}

.hero-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.7;
}

.hero-subtitle p {
    margin: 0;
}

body.dark-theme .hero-subtitle {
    color: #999;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 2rem;
}

.hero-description p {
    margin: 0;
}

body.dark-theme .hero-description {
    color: #ccc;
}

/* Sections */
.section-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #000;
    text-transform: lowercase;
    text-align: left;
}

.section-title-spaced {
    margin-top: 2rem;
}

body.dark-theme .section-title {
    color: #fff;
}

.about-section {
    margin-bottom: 3rem;
}

.about-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 2rem;
}

body.dark-theme .about-text {
    color: #ccc;
}

.nav-links {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.nav-links a {
    color: #444;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.25s ease, border-color 0.25s ease;
    position: relative;
    padding: 0.1rem 0;
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}

.nav-links a:hover {
    color: #000;
    border-bottom-color: #ff9ec7;
}

.nav-links a::after {
    display: none;
}

body.dark-theme .nav-links a {
    color: #ccc;
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

body.dark-theme .nav-links a:hover {
    color: #fff;
    border-bottom-color: #ff9ec7;
}

/* Venn Diagram Section */
.venn-section {
    margin-bottom: 3rem;
    text-align: center;
}

.venn-intro {
    font-size: 0.95rem;
    color: #666;
    max-width: 720px;
    margin: 0.5rem auto 1.25rem;
}

body.dark-theme .venn-intro {
    color: #999;
}

.venn-diagram {
    position: relative;
    width: 400px;
    height: 350px;
    margin: 0 auto 2rem;
}

.venn-circle {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    background: transparent;
    border: 2px solid #e5e7eb;
    box-shadow: none;
    transition: transform 0.2s ease, box-shadow 0.4s ease;
    animation: vennPulse 3s ease-in-out infinite;
    cursor: pointer;
}

/* Soft synchronized pulse for all circles */
@keyframes vennPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
    50% {
        box-shadow: 0 0 12px 2px var(--spot-border);
    }
}

.venn-circle:hover {
    transform: scale(1.05);
    color: #1f2937;
    animation: none;
}

.venn-circle.purpose {
    top: 40px;
    left: 60px;
    --spot-border: rgba(16, 185, 129, 0.4);
    --spot-bg: rgba(16, 185, 129, 0.05);
    animation: vennPulse 3s ease-in-out infinite;
}

.venn-circle.resilience {
    top: 40px;
    right: 60px;
    --spot-border: rgba(59, 130, 246, 0.4);
    --spot-bg: rgba(59, 130, 246, 0.05);
    animation: vennPulse 3s ease-in-out infinite;
}

.venn-circle.empathy {
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    --spot-border: rgba(168, 85, 247, 0.4);
    --spot-bg: rgba(168, 85, 247, 0.05);
    animation: vennPulse 3s ease-in-out infinite;
}

/* Remove group dim effect */
.venn-diagram:hover .venn-circle {
    opacity: 1;
}

.venn-circle.purpose:hover {
    background: rgba(16, 185, 129, 0.22);
    border-color: rgba(16, 185, 129, 0.95);
}

.venn-circle.resilience:hover {
    background: rgba(59, 130, 246, 0.22);
    border-color: rgba(59, 130, 246, 0.95);
}

.venn-circle.empathy:hover {
    background: rgba(168, 85, 247, 0.22);
    border-color: rgba(168, 85, 247, 0.95);
}

.venn-circle span {
    text-align: center;
    line-height: 1.2;
}

.venn-description {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    max-width: 400px;
    margin: 0 auto;
}

.venn-quote {
    font-size: 1rem;
    color: #666;
    font-style: italic;
    text-align: center;
    margin-top: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

body.dark-theme .venn-quote {
    color: #999;
}

body.dark-theme .venn-description {
    color: #999;
}

body.dark-theme .venn-circle {
    color: #999;
    border-color: #4b5563;
}

body.dark-theme .venn-circle:hover {
    color: #f9fafb;
}

/* Expressions Section */
.expressions-section {
    margin-bottom: 3rem;
}

.expressions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 2rem;
    margin-bottom: 2rem;
}

.expression-item {
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
    transition: none;
}

.expression-item:hover {
    transform: none;
    box-shadow: none;
}

body.dark-theme .expression-item {
    background: transparent;
    border-color: transparent;
}

.expression-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

body.dark-theme .expression-title {
    color: #fff;
}

.expression-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

body.dark-theme .expression-description {
    color: #999;
}

/* Beliefs Section */
.beliefs-section {
    margin-bottom: 3rem;
}

.beliefs-intro {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
}

body.dark-theme .beliefs-intro {
    color: #999;
}

.beliefs-list {
    list-style: none;
    padding: 0;
}

.beliefs-list li {
    font-size: 1rem;
    color: #444;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.beliefs-list li::before {
    content: "•";
    color: #ff9ec7;
    font-weight: bold;
    position: absolute;
    left: 0;
}

body.dark-theme .beliefs-list li {
    color: #ccc;
}

body.dark-theme .beliefs-list li::before {
    color: #ff9ec7;
}

/* Skills Section */
.skills-section {
    margin-bottom: 3rem;
}

.skills-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.skills-list li {
    font-size: 0.9rem;
    color: #444;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.skills-list li::before {
    content: "•";
    color: #ff9ec7;
    font-weight: bold;
    position: absolute;
    left: 0;
}

body.dark-theme .skills-list li {
    color: #ccc;
}

body.dark-theme .skills-list li::before {
    color: #ff9ec7;
}

.skills-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 1rem;
}

.skills-column {
    margin-bottom: 0;
}

.skills-inline {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1rem;
}

.skills-inline span {
    display: inline;
}

body.dark-theme .skills-inline {
    color: #ccc;
}

@media (max-width: 768px) {
    .skills-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Dive Deeper Section */
.dive-deeper-section {
    margin-bottom: 3rem;
}

/* Elsewhere Section */
.elsewhere-section {
    margin-bottom: 3rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
    margin-bottom: 2rem;
}

.social-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
}

.social-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: lowercase;
    text-align: left;
}

body.dark-theme .social-label {
    color: #999;
}

.social-link {
    color: #000;
    font-weight: 400;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.2s ease;
}

.social-link:hover {
    opacity: 0.7;
}

.social-link i {
    font-size: 0.75rem;
    opacity: 0.6;
}

body.dark-theme .social-link {
    color: #fff;
}

.copy-button {
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.copy-button:hover {
    opacity: 0.7;
}

body.dark-theme .copy-button {
    color: #999;
}

.friendly-message {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

body.dark-theme .friendly-message {
    border-top-color: #333;
}

.friendly-message p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

body.dark-theme .friendly-message p {
    color: #999;
}

/* Footer */
.page-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
    margin-top: 3rem;
}

body.dark-theme .page-footer {
    border-top-color: #333;
}

.timestamp {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.9rem;
    color: #666;
}

body.dark-theme .timestamp {
    color: #999;
}

.footer-controls {
    display: flex;
    gap: 0.5rem;
}

/* Theme Toggle Switch */
.theme-toggle-container {
    display: flex;
    align-items: center;
}

.theme-toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    cursor: pointer;
}

.theme-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e5e7eb;
    transition: 0.3s;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

input:checked + .slider {
    background-color: #374151;
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.sun-icon, .moon-icon {
    font-size: 12px;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.sun-icon {
    opacity: 1;
}

.moon-icon {
    opacity: 0;
}

input:checked + .slider .sun-icon {
    opacity: 0;
}

input:checked + .slider .moon-icon {
    opacity: 1;
}

body.dark-theme .slider {
    background-color: #374151;
}

body.dark-theme .slider:before {
    background-color: white;
}

/* About Page Styles */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #fff;
}

body.dark-theme .breadcrumb {
    color: #999;
}

body.dark-theme .breadcrumb a {
    color: #999;
}

body.dark-theme .breadcrumb a:hover {
    color: #fff;
}

.about-header {
    margin-bottom: 4rem;
    text-align: left;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
    line-height: 1.2;
}

body.dark-theme .about-title {
    color: #fff;
}

.about-tagline {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
    line-height: 1.5;
}

body.dark-theme .about-tagline {
    color: #999;
}

.about-content {
    margin-bottom: 4rem;
    text-align: left;
}

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

.content-section .section-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
    text-transform: lowercase;
}

body.dark-theme .content-section .section-title {
    color: #fff;
}

.content-section .about-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 0;
}

body.dark-theme .content-section .about-text {
    color: #ccc;
}

.interests-list {
    list-style: none;
    padding: 0;
}

.interests-list li {
    font-size: 1rem;
    color: #444;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

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

body.dark-theme .interests-list li {
    color: #ccc;
}

body.dark-theme .interests-list li::before {
    color: #ff9ec7;
}

.back-nav {
    margin-top: 3rem;
    text-align: left;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #000;
}

body.dark-theme .back-link {
    color: #999;
}

body.dark-theme .back-link:hover {
    color: #fff;
}

/* Theme Link Styles */
.theme-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff9ec7;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.theme-link:hover {
    color: #ff7eb3;
    text-decoration: underline;
}

body.dark-theme .theme-link {
    color: #ffb3d9;
}

body.dark-theme .theme-link:hover {
    color: #ff9ec7;
}

/* Notes List Styling */
.notes-list {
    margin-bottom: 3rem;
}

.note-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.note-item:hover {
    border-color: #111827;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(17, 24, 39, 0.08);
}

.note-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.note-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.note-excerpt {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

body.dark-theme .note-item {
    border-color: #4b5563;
}

body.dark-theme .note-item:hover {
    border-color: #f9fafb;
    box-shadow: 0 4px 12px rgba(249, 250, 251, 0.08);
}

body.dark-theme .note-title {
    color: #f9fafb;
}

body.dark-theme .note-excerpt {
    color: #d1d5db;
}

/* Article Styling */
.note-article {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.article-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-content {
    line-height: 1.7;
    color: #374151;
}

.article-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

body.dark-theme .article-title {
    color: #f9fafb;
}

body.dark-theme .article-content {
    color: #d1d5db;
}

body.dark-theme .article-content p {
    color: #d1d5db;
}

/* Sites List Styling */
.sites-list {
    margin-top: 2rem;
}

.site-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.site-item:hover {
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.site-link {
    text-decoration: none;
    color: inherit;
}

.site-link h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}

.site-link:hover h3 {
    color: #111827;
}

.site-item p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

body.dark-theme .site-item {
    border-color: #4b5563;
}

body.dark-theme .site-item:hover {
    border-color: #fff;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

body.dark-theme .site-link h3 {
    color: #f9fafb;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}

body.dark-theme .site-link:hover h3 {
    color: #f9fafb;
}

body.dark-theme .site-item p {
    color: #d1d5db;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding: 1.5rem;
    }
    
    .expressions-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .venn-diagram {
        width: 300px;
        height: 250px;
    }
    
    .venn-circle {
        width: 120px;
        height: 120px;
        font-size: 0.8rem;
    }
}

.someday-text {
    font-size: 0.9rem;
    color: #444;
}

.someday-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.someday-link:hover .someday-text {
    color: #10b981;
}

body.dark-theme .someday-text {
    color: #ccc;
}

body.dark-theme .someday-link:hover .someday-text {
    color: #10b981;
}

/* Now Section Styles */
.now-section {
    margin-bottom: 3rem;
}

.now-content {
    display: grid;
    gap: 3rem;
}

.education-section, .work-section {
    margin-bottom: 0.5rem;
}

.subsection-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #000;
    text-transform: lowercase;
}

body.dark-theme .subsection-title {
    color: #fff;
}

.education-item, .work-item {
    margin-bottom: 1rem;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    transition: none;
}

.education-item:hover, .work-item:hover {
    border-color: transparent;
    transform: none;
    box-shadow: none;
}

body.dark-theme .education-item,
body.dark-theme .work-item {
    background: transparent;
    border-color: transparent;
}

.education-header, .work-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.institution, .company {
    font-weight: 600;
    color: #000;
    font-size: 1.1rem;
}

.company a {
    color: #ff9ec7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.company a:hover {
    color: #1d4ed8;
}

.degree, .role {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

body.dark-theme .institution,
body.dark-theme .company {
    color: #fff;
}

body.dark-theme .degree,
body.dark-theme .role {
    color: #9ca3af;
}

.education-details, .work-details {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.duration, .location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.duration::before {
    content: "🕒";
    font-size: 0.8rem;
}

.location::before {
    content: "📍";
    font-size: 0.8rem;
}

body.dark-theme .education-details,
body.dark-theme .work-details {
    color: #9ca3af;
}

.work-description {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

body.dark-theme .work-description {
    color: #d1d5db;
}

/* InSites Page Styles */
.extensions-section {
    margin-top: 3rem;
}

.extensions-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #000;
    text-transform: lowercase;
}

body.dark-theme .extensions-title {
    color: #fff;
}

.extensions-list {
    margin-bottom: 2rem;
}

.extension-item {
    margin-bottom: 1rem;
    padding: 0;
}

.extension-item-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.extension-left {
    flex: 1;
}

.extension-links {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
    align-items: flex-start;
    padding-top: 0.2rem;
}

.link-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.source-link {
    background-color: rgba(255, 158, 199, 0.1);
    color: #ff9ec7;
    border: 1px solid rgba(255, 158, 199, 0.3);
}

.source-link:hover {
    background-color: rgba(255, 158, 199, 0.2);
    color: #ff7eb3;
}

.live-link {
    background-color: rgba(255, 158, 199, 0.1);
    color: #ff9ec7;
    border: 1px solid rgba(255, 158, 199, 0.3);
}

.live-link:hover {
    background-color: rgba(255, 158, 199, 0.2);
    color: #ff7eb3;
}

body.dark-theme .source-link {
    background-color: rgba(255, 179, 217, 0.15);
    color: #ffb3d9;
    border-color: rgba(255, 179, 217, 0.3);
}

body.dark-theme .source-link:hover {
    background-color: rgba(255, 179, 217, 0.25);
    color: #ff9ec7;
}

body.dark-theme .live-link {
    background-color: rgba(255, 179, 217, 0.15);
    color: #ffb3d9;
    border-color: rgba(255, 179, 217, 0.3);
}

body.dark-theme .live-link:hover {
    background-color: rgba(255, 179, 217, 0.25);
    color: #ff9ec7;
}

.extension-link {
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
    color: inherit;
    transition: color 0.2s ease;
}

.extension-link:hover .extension-text {
    color: #ff9ec7;
}

body.dark-theme .extension-link:hover .extension-text {
    color: #ffb3d9;
}

.extension-text {
    font-size: 0.9rem;
    color: #ff9ec7;
    font-style: normal;
}

/* Projects Section */
.projects-section {
    margin-top: 3rem;
}

.projects-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #000;
    text-transform: lowercase;
}

body.dark-theme .projects-title {
    color: #fff;
}

.projects-list {
    margin-bottom: 2rem;
}

.project-item {
    margin-bottom: 1rem;
    padding: 0;
}

.project-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

.project-link:hover .project-text {
    color: #ff9ec7;
}

body.dark-theme .project-link:hover .project-text {
    color: #ffb3d9;
}

.project-text {
    font-size: 0.9rem;
    color: #ff9ec7;
    font-style: normal;
}

.project-description {
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
    margin-left: 1rem;
}

body.dark-theme .project-description {
    color: #777;
}

/* Minimal hover effects for InSites */
.github-link {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

body.dark-theme .github-link {
    color: #999;
}

.github-text {
    color: #ff9ec7;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}

.github-text:hover {
    color: #ff7eb3;
}

body.dark-theme .github-text {
    color: #ffb3d9;
}

body.dark-theme .github-text:hover {
    color: #93c5fd;
}

/* What Was Page Styles */
.what-was-section {
    margin-bottom: 4rem;
}

.what-was-content {
    text-align: left;
}

.school-life-intro {
    margin-bottom: 4rem;
}

.school-life-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
}

.school-life-intro p:last-child {
    margin-bottom: 0;
}

body.dark-theme .school-life-intro p {
    color: #ccc;
}

.school-link {
    color: #ff9ec7;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.school-link:hover {
    color: #ff7eb3;
    text-decoration: underline;
}

body.dark-theme .school-link {
    color: #ffb3d9;
}

body.dark-theme .school-link:hover {
    color: #ff9ec7;
}

.school-achievements {
    margin-top: 4rem;
}

.achievement-item {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.achievement-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

body.dark-theme .achievement-item {
    border-bottom-color: #333;
}

.achievement-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1.2rem;
    text-transform: lowercase;
    letter-spacing: -0.01em;
}

body.dark-theme .achievement-title {
    color: #fff;
}

.achievement-details {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

body.dark-theme .achievement-details {
    color: #aaa;
}

.school-motto {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #10b981 !important;
    text-align: center !important;
    margin-top: 2rem !important;
    font-style: italic !important;
}

body.dark-theme .school-motto {
    color: #10b981 !important;
}

/* College Chronicles Page Styles */
.page-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #000;
    line-height: 1.2;
    text-transform: lowercase;
}

body.dark-theme .page-title {
    color: #fff;
}

.intro-section {
    margin-bottom: 4rem;
}

.intro-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

body.dark-theme .intro-text {
    color: #ccc;
}

/* College Chronicles Bullet Point Styles */
.achievements-list, .fun-times-list, .build-lead-list {
    list-style: none;
    padding: 0;
}

.achievements-list li, .fun-times-list li, .build-lead-list li {
    font-size: 1rem;
    color: #444;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

/* Dropdown Section Styles */
.dropdown-section {
    margin-bottom: 2rem;
}

.dropdown-section .section-title {
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    padding: 1rem 0;
    border-bottom: 2px solid transparent;
}

.dropdown-section .section-title:hover {
    color: #10b981;
    border-bottom-color: #10b981;
}

.dropdown-section .section-title::after {
    content: "▼";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: #10b981;
    transition: transform 0.3s ease;
}

.dropdown-section .section-title:hover::after {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    opacity: 0;
    transform: translateY(-10px);
}

.dropdown-section:hover .dropdown-content {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
}

.achievements-list li::before, .fun-times-list li::before, .build-lead-list li::before {
    content: "•";
    color: #ff9ec7;
    font-weight: bold;
    position: absolute;
    left: 0;
}

body.dark-theme .achievements-list li,
body.dark-theme .fun-times-list li,
body.dark-theme .build-lead-list li {
    color: #ccc;
}

body.dark-theme .achievements-list li::before,
body.dark-theme .fun-times-list li::before,
body.dark-theme .build-lead-list li::before {
    color: #ff9ec7;
}

/* College Link Styles */
.college-link {
    color: #ff9ec7;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-left: 0.5rem;
    transition: color 0.3s ease;
}

.college-link:hover {
    color: #ff7eb3;
    text-decoration: underline;
}

body.dark-theme .college-link {
    color: #ffb3d9;
}

body.dark-theme .college-link:hover {
    color: #ff9ec7;
}

/* Substack Link Styles */
.substack-link {
    color: #ff9ec7;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.3s ease;
}

.substack-link:hover {
    color: #ff7eb3;
}

body.dark-theme .substack-link {
    color: #ffb3d9;
}

body.dark-theme .substack-link:hover {
    color: #ff9ec7;
}

.substack-section {
    margin: 2rem 0;
}

.substack-text {
    margin-bottom: 0.5rem;
}

/* Command Palette */
body.command-open {
    overflow: hidden;
}

.command-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: #ff9ec7;
    color: #111827;
    font-size: 1.2rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2500;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.command-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
}

body.dark-theme .command-button {
    background: #ffb3d9;
    color: #0f172a;
}

.command-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    z-index: 2600;
}

.command-overlay.open {
    display: flex;
}

.command-dialog {
    width: min(92vw, 560px);
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 1.25rem;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.25);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

body.dark-theme .command-dialog {
    background: #0f172a;
    border: 1px solid rgba(148, 163, 184, 0.2);
    color: #f8fafc;
}

.command-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f3f4f6;
    border-radius: 0.9rem;
    padding: 0.85rem 1rem;
}

body.dark-theme .command-header {
    background: #1f2937;
}

.command-header input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1rem;
    color: inherit;
    outline: none;
}

.command-header input::placeholder {
    color: #9ca3af;
}

body.dark-theme .command-header input::placeholder {
    color: #6b7280;
}

.command-close {
    border: none;
    background: rgba(15, 23, 42, 0.08);
    color: inherit;
    font-size: 0.75rem;
    padding: 0.35rem 0.7rem;
    border-radius: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
}

body.dark-theme .command-close {
    background: rgba(248, 250, 252, 0.08);
}

.command-list {
    max-height: 340px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.command-item {
    border: none;
    background: transparent;
    border-radius: 0.85rem;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease;
    color: inherit;
}

.command-item:hover,
.command-item.active {
    background: rgba(255, 158, 199, 0.18);
}

body.dark-theme .command-item:hover,
body.dark-theme .command-item.active {
    background: rgba(255, 179, 217, 0.16);
}

.command-item-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.command-item-title {
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: lowercase;
}

.command-item-desc {
    font-size: 0.82rem;
    color: #6b7280;
}

body.dark-theme .command-item-desc {
    color: #94a3b8;
}

.command-item-hint {
    font-size: 0.75rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

body.dark-theme .command-item-hint {
    color: #cbd5f5;
}

.command-empty {
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: #9ca3af;
}

body.dark-theme .command-empty {
    color: #94a3b8;
}

@media (max-width: 640px) {
    .command-button {
        bottom: 1.25rem;
        right: 1.25rem;
    }

    .command-dialog {
        padding: 1rem;
    }
}

/* Theme Page Styles */
.theme-section {
    margin-bottom: 3rem;
}

.theme-list {
    list-style: none;
    padding: 0;
}

.theme-list li {
    font-size: 1rem;
    color: #444;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.theme-list li::before {
    content: "•";
    color: #ff9ec7;
    font-weight: bold;
    position: absolute;
    left: 0;
}

body.dark-theme .theme-list li {
    color: #ccc;
}

body.dark-theme .theme-list li::before {
    color: #ff9ec7;
}

.theme-list a {
    color: #ff9ec7;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.3s ease;
}

.theme-list a:hover {
    color: #ff7eb3;
}

body.dark-theme .theme-list a {
    color: #ffb3d9;
}

body.dark-theme .theme-list a:hover {
    color: #ff9ec7;
}

.theme-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1.5rem;
}

body.dark-theme .theme-text {
    color: #ccc;
}

/* Section Divider */
.section-divider {
    border: none;
    height: 1px;
    background-color: #e5e7eb;
    margin: 0.5rem 0;
    opacity: 0.6;
}

body.dark-theme .section-divider {
    background-color: #4b5563;
    opacity: 0.4;
}

.inspiration-section {
    margin-bottom: 3rem;
}

.inspiration-text {
    font-size: 0.95rem;
    color: #666;
    max-width: 720px;
    margin: 0 0 1rem 0;
}

.inspiration-list {
    list-style: none;
    padding: 0;
}

.inspiration-list li {
    margin-bottom: 0.5rem;
}

.inspiration-link {
    color: #ff9ec7;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}

.inspiration-link:hover {
    color: #1d4ed8;
}

body.dark-theme .inspiration-text {
    color: #999;
}

body.dark-theme .inspiration-link:hover {
    color: #93c5fd;
}

/* Custom text selection */
::selection {
    background: #ffd3e6; /* soft pink */
    color: #111827;
}

::-moz-selection {
    background: #ffd3e6;
    color: #111827;
}

body.dark-theme ::selection,
body.dark-theme ::-moz-selection {
    background: #f0a6d8; /* slightly deeper pink for dark mode */
    color: #111827;
}
