:root {
    /* Toned Down: Deep Black/Slate with Cyan Accents */
    --bg-color: #020203;
    /* Near black with tiniest cool tint */
    --bg-secondary: #0a0e12;
    /* Dark slate/black for sidebar */
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    /* Neutral Slate-400 */
    --accent-color: #5FCBF0;
    /* Cyan */
    --accent-hover: #01AAD7;
    /* Darker Cyan */
    --border-color: rgba(95, 203, 240, 0.1);

    --sidebar-width: 280px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Glassmorphism Updated */
    --glass-bg: rgba(1, 73, 96, 0.7);
    --glass-border: rgba(95, 203, 240, 0.1);
    --glass-blur: 16px;

    /* Animation Tokens */
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes text-pulse-glow {

    0%,
    100% {
        filter: drop-shadow(0 0 15px rgba(95, 203, 240, 0.1));
    }

    50% {
        filter: drop-shadow(0 0 25px rgba(95, 203, 240, 0.4));
    }
}

strong,
b {
    background: linear-gradient(135deg, #fff 0%, var(--accent-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow: hidden;
    /* App-like feel */
}

/* App Layout */
.app-container {
    display: flex;
    height: 100vh;
    width: 100vw;
}

/* Mobile Header */
.mobile-header {
    display: none;
    align-items: center;
    padding: 1rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.mobile-header .logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    margin-left: 1rem;
}

#menu-toggle {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
}

/* Sidebar */
.sidebar {
    width: var(--sidebar-width);
    background: var(--bg-secondary);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.sidebar-header {
    padding: 2rem;
}

.sidebar-header .logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 0%, #a1a1aa 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    display: inline-block;
}

.nav-content {
    padding: 0 1rem 2rem;
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}

.nav-group {
    margin-bottom: 1.5rem;
}

.nav-group-title {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0.75rem;
    /* Increased padding area for click target */
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 6px;
    transition: all 0.2s ease;
    user-select: none;
}

.nav-group-title:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.nav-group-title .chevron {
    transition: transform 0.2s ease;
}

.nav-group-title.open .chevron {
    transform: rotate(90deg);
}

.nav-group-content {
    display: none;
    padding-left: 0.5rem;
    /* Indent content slightly less than before as strict folder structure might be enough */
}

.nav-group-content.open {
    display: block;
    animation: slide-down 0.2s ease-out;
}

@keyframes slide-down {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-item {
    display: block;
    padding: 0.5rem 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

/* Main Content */
.main-content {
    flex: 1;
    overflow-y: auto;
    padding: 3rem 4rem;
    scroll-behavior: smooth;
    position: relative;
    z-index: 10;
}

/* Sidebar Hover & Active States */
.nav-item:hover,
.nav-group-title:hover {
    background: linear-gradient(90deg, rgba(95, 203, 240, 0.1) 0%, transparent 100%);
    color: var(--text-primary);
    border-left: 2px solid rgba(95, 203, 240, 0.3);
}

.nav-item.active {
    background: linear-gradient(90deg, rgba(95, 203, 240, 0.15) 0%, transparent 100%);
    color: var(--accent-color);
    border-left: 3px solid var(--accent-color);
    box-shadow: -5px 0 15px rgba(95, 203, 240, 0.1);
    animation: pulse-glow 3s infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: -5px 0 15px rgba(95, 203, 240, 0.1);
    }

    50% {
        box-shadow: -5px 0 25px rgba(95, 203, 240, 0.25);
    }
}

.folder-icon {
    transition: transform 0.3s var(--ease-out-back);
}

.folder-toggle.open .folder-icon {
    transform: rotate(90deg);
}

/* Updated Gradient Text for Logo */
.sidebar-header .logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, white 0%, var(--accent-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(95, 203, 240, 0.3));
}

/* Search Bar */
.search-container {
    padding: 1rem;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    position: relative;
    flex-shrink: 0;
    z-index: 10;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 12px;
    color: var(--text-secondary);
    pointer-events: none;
    transition: color 0.2s;
}

#search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 10px 10px 36px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all 0.2s ease;
    outline: none;
}

#search-input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(95, 203, 240, 0.2);
}

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

.search-results {
    position: absolute;
    bottom: 100%;
    left: 1rem;
    right: 1rem;
    background: #0a0e12;
    border: 1px solid var(--border-color);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.search-results.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(-10px);
    /* Lift up slightly */
}

.result-item {
    display: flex;
    flex-direction: column;
    padding: 10px 14px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.15s;
}

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

.result-item:hover {
    background: rgba(95, 203, 240, 0.1);
}

.result-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.result-path {
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.7;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.result-snippet {
    font-size: 0.8rem;
    color: var(--text-secondary);
    opacity: 0.8;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 2px;
}

.result-match {
    color: var(--accent-color);
    font-weight: 700;
}

.result-header-match {
    color: var(--text-primary);
    font-weight: 500;
    opacity: 0.9;
}

.no-results {
    padding: 1rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-style: italic;
}

/* Main Content */
.main-content {
    flex: 1;
    overflow-y: auto;
    padding: 3rem 4rem;
    /* Generous padding */
    scroll-behavior: smooth;
    position: relative;
}

/* Markdown Typography */
.markdown-body {
    max-width: 800px;
    margin: 0 auto;
    color: #e4e4e7;
    font-size: 1.1rem;
}

.markdown-body h1,
.markdown-body h2,
.markdown-body h3,
.markdown-body h4,
.markdown-body h5,
.markdown-body h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, white 0%, var(--accent-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-pulse-glow 3s infinite;
}

.markdown-body h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    /* We need to reset the text fill specifically for the border to be visible if it was text? No, border is separate. */
}

.markdown-body h2 {
    font-size: 2rem;
    font-weight: 600;
}

.markdown-body h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

.markdown-body p {
    margin-bottom: 1.5rem;
    color: #d4d4d8;
}

.markdown-body a {
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.markdown-body a:hover {
    border-bottom-color: var(--accent-color);
}

.markdown-body ul,
.markdown-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.markdown-body li {
    margin-bottom: 0.5rem;
}

.markdown-body blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 1rem;
    margin-left: 0;
    color: var(--text-secondary);
    font-style: italic;
}

.markdown-body code {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2em 0.4em;
    border-radius: 4px;
    font-family: 'Menlo', monospace;
    font-size: 0.9em;
}

.markdown-body pre {
    background: #18181b;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
}

.markdown-body pre code {
    background: none;
    padding: 0;
}

.markdown-body img {
    max-width: 100%;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Banner Header Styling - Updated to be just text */
.banner-header {
    margin: 2rem 0 3rem 0;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    position: relative;
    overflow: visible;
}

.banner-header::before {
    display: none;
}

.banner-header h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin: 0;
    padding: 0;
    border: none;
}

/* Markdown Tables */
.markdown-body table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2rem 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.markdown-body th {
    background: rgba(95, 203, 240, 0.1);
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-weight: 600;
    text-align: left;
    padding: 1rem;
    border-bottom: 2px solid var(--border-color);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.markdown-body td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.markdown-body tr:last-child td {
    border-bottom: none;
}

.markdown-body tr:hover td {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .app-container {
        flex-direction: column;
    }

    .mobile-header {
        display: flex;
    }

    .sidebar {
        position: fixed;
        top: 60px;
        /* Below header */
        left: 0;
        bottom: 0;
        z-index: 90;
        transform: translateX(-100%);
        width: 100%;
        border-right: none;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .main-content {
        padding: 5rem 1.5rem 2rem;
        /* Top padding for fixed header */
        width: 100%;
    }

    .markdown-body h1 {
        font-size: 2.25rem;
    }
}

/* 2026 Aesthetics & Polish */

/* Animated Background Gradient */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(1, 170, 215, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(95, 203, 240, 0.1) 0%, transparent 40%);
    z-index: 0;
    animation: bg-pulse 15s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes bg-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.15);
        opacity: 0.4;
    }
}



/* Content Transitions */
.markdown-body {
    animation: fade-in 0.4s ease-out;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slide-up-fade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-animate {
    opacity: 0;
    animation: slide-up-fade 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Header Anchor Links */
.header-anchor-wrapper {
    position: relative;
    display: inline-block;
}

.header-anchor {
    position: absolute;
    left: -1.2em;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;

    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8em;

    background: linear-gradient(135deg, white 0%, var(--accent-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-decoration: none;
    border: none !important;
    cursor: pointer;
    padding: 0.2em;

    animation: text-pulse-glow 3s infinite;
}

h1:hover .header-anchor,
h2:hover .header-anchor,
h3:hover .header-anchor,
h4:hover .header-anchor,
h5:hover .header-anchor,
h6:hover .header-anchor {
    opacity: 0.5;
}

.header-anchor:hover {
    opacity: 1 !important;
    transform: translateY(-50%) scale(1.1);
}

/* Copy Feedback Tooltip */
.copy-feedback {
    position: absolute;
    background: var(--accent-color);
    color: var(--bg-color);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-body);
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    white-space: nowrap;
}

.copy-feedback.show {
    opacity: 1;
    transform: translateY(0);
}

/* Prevent overlap when TOC is present */
.main-content.with-toc {
    padding-right: 320px;
    /* 250px (toc) + 32px (right: 2rem) + extra spacing */
}

/* Floating Table of Contents */
.floating-toc {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    max-height: 70vh;
    overflow-y: auto;
    padding: 1.5rem;
    background: rgba(10, 14, 18, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    opacity: 0.3;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 90;
}

.floating-toc:hover {
    opacity: 1;
}

.floating-toc h4 {
    font-family: var(--font-heading);
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
    font-weight: 700;
}

.floating-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.floating-toc li {
    margin-bottom: 0.75rem;
}

.floating-toc a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: all 0.2s ease;
    display: block;
    line-height: 1.4;
    border-left: 2px solid transparent;
    padding-left: 0.5rem;
}

.floating-toc a:hover {
    color: var(--accent-color);
    border-left-color: var(--accent-color);
    background: linear-gradient(90deg, rgba(95, 203, 240, 0.1) 0%, transparent 100%);
}

.floating-toc li.toc-level-2 {
    margin-left: 0.5rem;
}

.floating-toc li.toc-level-3 {
    margin-left: 1rem;
}

/* Hide mobile-only elements on desktop */
.floating-toc .toc-close-btn,
.toc-overlay,
.toc-fab {
    display: none;
}

/* Mobile TOC - slide-in panel */
@media (max-width: 1200px) {
    .main-content.with-toc {
        padding-right: 4rem; /* Reset to normal padding on mobile */
    }

    .floating-toc {
        position: fixed;
        right: -280px; /* Hidden off-screen */
        top: 0;
        transform: none;
        width: 280px;
        max-height: 100vh;
        height: 100vh;
        border-radius: 0;
        border-left: 1px solid var(--border-color);
        border-right: none;
        opacity: 1;
        padding-top: 5rem;
        transition: right 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
        background: rgba(10, 14, 18, 0.95);
        z-index: 1000;
    }

    .floating-toc.mobile-open {
        right: 0;
    }

    /* Mobile TOC overlay */
    .toc-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
    }

    .toc-overlay.visible {
        opacity: 1;
        visibility: visible;
    }

    /* Floating TOC button */
    .toc-fab {
        display: flex;
        position: fixed;
        right: 1rem;
        bottom: 1.5rem;
        width: 48px;
        height: 48px;
        background: rgba(10, 14, 18, 0.7);
        backdrop-filter: blur(12px);
        border: 1px solid var(--border-color);
        border-radius: 50%;
        color: var(--text-secondary);
        font-size: 1.2rem;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        z-index: 98;
        transition: all 0.2s ease;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    }

    .toc-fab:hover,
    .toc-fab:active {
        background: rgba(20, 26, 32, 0.9);
        color: var(--accent-color);
        border-color: var(--accent-color);
        transform: scale(1.05);
    }

    .toc-fab svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
    }

    /* Close button for mobile TOC */
    .floating-toc .toc-close-btn {
        display: flex;
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 32px;
        height: 32px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid var(--border-color);
        border-radius: 6px;
        color: var(--text-secondary);
        font-size: 1.2rem;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
    }

    .floating-toc .toc-close-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        color: var(--text-primary);
    }
}

/* 
========================================
   Global Footer
========================================
*/

.site-footer {
    border-top: 1px solid var(--border-color);
    margin-top: 4rem;
    padding-top: 3rem;
    padding-bottom: 2rem;
    animation: fade-in 0.5s ease-out forwards;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo-section {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, white 0%, var(--accent-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(95, 203, 240, 0.2));
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-links-section {
    display: flex;
    gap: 4rem;
}

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

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.footer-column a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: all 0.2s ease;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--accent-color);
    transform: translateX(2px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2.5rem;
    }

    .footer-links-section {
        width: 100%;
        flex-direction: column;
        gap: 2rem;
    }
}

/* Social Icon Styling */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    align-items: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: all 0.2s ease;
    text-decoration: none;
    border-bottom: none;
}

.social-link:hover {
    opacity: 1;
    transform: translateY(-2px);
    text-decoration: none;
    border-bottom: none;
}

.social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}