@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kalam:wght@300;400;700&display=swap');

/* ==========================================================================
   1. VARIABLES & CORE STYLES
   ========================================================================== */
:root {
    --bg-color: #0b0c10;
    /* Dark mode: NO background image — plain solid color */
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #52525b;
    --card-bg: #0d1117;
    --border-color: rgba(255, 255, 255, 0.08);
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

[data-theme="light"] {
    --bg-color: #f5f5f7;
    --mask-color: rgba(252, 251, 250, 0.9);
    --text-primary: #111827;
    --text-secondary: #52525b;
    --text-muted: #a1a1aa;
    --card-bg: #ebebeb;
    --border-color: rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-secondary);
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.25s ease, color 0.25s ease;
}

/* Light mode only: add a soft background photo */
[data-theme="light"] body {
    background-image: linear-gradient(var(--mask-color), var(--mask-color)),
        url('https://images.unsplash.com/photo-1490730141103-6cac27aaab94?q=80&w=3840&auto=format&fit=crop');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.5;
}

.link-underline {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* ==========================================================================
   3. LAYOUT
   ========================================================================== */
.container {
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
    margin-top: 2rem;
}

/* ==========================================================================
   4. HEADER & NAVIGATION
   ========================================================================== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: wrap;
}

/* Brand name (home link) */
.nav-brand {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    padding: 0.45rem 0.65rem;
    margin-right: 0.25rem;
}

.nav-brand:hover {
    opacity: 0.7;
}

.nav-sep {
    width: 1px;
    height: 14px;
    background: var(--border-color);
    margin: 0 0.4rem;
    flex-shrink: 0;
}

.nav-link {
    font-size: 0.875rem;
    padding: 0.45rem 0.65rem;
    border-radius: 9999px;
    color: var(--text-secondary);
    font-weight: 400;
}

.nav-link:hover {
    opacity: 1;
    color: var(--text-primary);
}

.nav-link.active {
    color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.06);
}

[data-theme="light"] .nav-link.active {
    background-color: rgba(0, 0, 0, 0.06);
}

/* Right side of nav: terms, privacy, theme toggle */
.nav-right {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link-sm {
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 0.4rem 0.5rem;
    border-radius: 6px;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-link-sm:hover {
    color: var(--text-secondary);
    opacity: 1;
}

.nav-divider {
    width: 1px;
    height: 14px;
    background: var(--border-color);
    margin: 0 0.35rem;
}

/* ==========================================================================
   5. TYPOGRAPHY
   ========================================================================== */
h1 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

h2, h3 {
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.bio-title {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.bio-content {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    font-size: 0.95rem;
}

.bio-content strong {
    color: var(--text-primary);
    font-weight: 500;
}

.divider-svg {
    display: block;
    width: 80px;
    height: 16px;
    color: var(--text-muted);
    margin: 1.5rem 0;
}

/* Section headings */
.section-heading {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    margin-top: 0;
}

/* ==========================================================================
   6. MARQUEE — Tech Stack
   ========================================================================== */
.marquee-container {
    width: 100%;
    overflow: hidden;
    padding: 0.75rem 0 1.5rem;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-inner {
    display: flex;
    width: max-content;
    gap: 2rem;
    animation: marquee-scroll 10s linear infinite;
}

.marquee-inner:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    cursor: default;
    flex-shrink: 0;
}

.marquee-item img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

/* Light-mode-adaptive icons (white logos) */
[data-theme="light"] .icon-adaptive {
    filter: invert(1) brightness(0.15);
}

.marquee-item span {
    font-size: 0.7rem;
    white-space: nowrap;
    color: var(--text-muted);
    font-weight: 500;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ==========================================================================
   7. SOCIALS GRID
   ========================================================================== */
.socials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 600px) {
    .socials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.social-card {
    background-color: var(--sc-bg, #333333);
    border-radius: 10px;
    padding: 1.1rem 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.18s ease, opacity 0.18s ease;
    border: 1px solid transparent;
}

.social-card:hover {
    opacity: 0.88;
    transform: translateY(-3px);
}

.social-card img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.social-card span {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    opacity: 1;
}

/* X and Threads dark cards get border in dark mode */
.social-card.dark-card {
    border-color: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   8. THEME TOGGLE
   ========================================================================== */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem;
    border-radius: 50%;
    transition: color 0.2s ease;
}

.theme-toggle:hover {
    color: var(--text-primary);
}

.theme-toggle svg {
    width: 17px;
    height: 17px;
}

.sun-icon { display: none; }
[data-theme="light"] .moon-icon { display: none; }
[data-theme="light"] .sun-icon { display: block; }

/* ==========================================================================
   9. PAGE CONTENT: WORK / PROJECTS / CONTACT
   ========================================================================== */
.work-list, .project-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1rem;
}

.work-item, .project-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}

.work-item:last-child, .project-item:last-child {
    border-bottom: none;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.item-num {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-right: 0.5rem;
}

.item-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.item-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.item-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.25rem;
}

.tag {
    font-size: 0.72rem;
    color: var(--text-muted);
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 0.18rem 0.5rem;
    border-radius: 4px;
}

.tech-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: inline-block;
}

.visit-btn {
    font-size: 0.8rem;
    color: var(--text-muted);
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    text-decoration: none;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.visit-btn:hover {
    color: var(--text-primary);
    border-color: var(--text-secondary);
    opacity: 1;
}

/* Contact */
.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 1rem;
}

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

@media (max-width: 480px) {
    .contact-card-list {
        grid-template-columns: 1fr;
    }
}

.contact-mini-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.mini-card-text {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.mini-card-val {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
}

.copy-btn {
    padding: 0.4rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    background-color: var(--text-muted);
    color: var(--bg-color);
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-btn:hover {
    background-color: var(--text-secondary);
}

.copy-btn.copied {
    background-color: #10b981;
    border-color: #10b981;
    color: var(--bg-color);
}

.copy-btn .copy-icon {
    display: block;
}

.copy-btn .tick-icon {
    display: none;
}

.copy-btn.copied .copy-icon {
    display: none;
}

.copy-btn.copied .tick-icon {
    display: block;
}

/* Form */
.flat-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.form-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-input {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.7rem 1rem;
    font-size: 0.92rem;
    color: var(--text-primary);
    font-family: var(--font-sans);
    outline: none;
    transition: border-color 0.2s ease;
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input:focus {
    border-color: var(--text-secondary);
}

textarea.form-input {
    min-height: 120px;
    resize: none;
}

.submit-btn {
    background-color: var(--text-primary);
    color: var(--bg-color);
    font-weight: 600;
    font-family: var(--font-sans);
    padding: 0.7rem 1.4rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 0.88rem;
    align-self: flex-start;
    transition: opacity 0.2s ease;
}

.submit-btn:hover {
    opacity: 0.82;
}

.form-success-card {
    display: none;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    margin-top: 1.5rem;
}

.form-success-card svg {
    color: #10b981;
    margin-bottom: 1rem;
}

.form-success-card h3 {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   10. FOOTER
   ========================================================================== */
footer {
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 0;
    margin-top: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--text-secondary);
    opacity: 1;
}

/* ==========================================================================
   14. MOBILE RESPONSIVENESS
   ========================================================================== */

/* Small mobile devices (up to 480px) */
@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 1.25rem 1rem;
    }

    /* Header & Navigation */
    header {
        gap: 0.75rem;
    }

    nav {
        gap: 0.15rem;
        flex-wrap: wrap;
    }

    .nav-brand {
        font-size: 0.9rem;
        padding: 0.4rem 0.5rem;
    }

    .nav-link {
        font-size: 0.8rem;
        padding: 0.35rem 0.5rem;
    }

    .nav-right {
        gap: 0.15rem;
    }

    .nav-link-sm {
        font-size: 0.7rem;
        padding: 0.35rem 0.45rem;
    }

    /* Typography */
    h1 {
        font-size: 1.25rem;
    }

    .bio-title {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .bio-content {
        font-size: 0.9rem;
        gap: 1rem;
    }

    /* Section headings */
    .section-heading {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }

    /* Marquee */
    .marquee-container {
        padding: 0.5rem 0 1rem;
    }

    .marquee-item img {
        width: 24px;
        height: 24px;
    }

    .marquee-item span {
        font-size: 0.65rem;
    }

    /* Socials grid */
    .socials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .social-card {
        padding: 0.9rem 0.6rem;
    }

    .social-card img {
        width: 24px;
        height: 24px;
    }

    .social-card span {
        font-size: 0.7rem;
    }

    /* Contact page */
    .contact-card-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .contact-mini-card {
        padding: 0.9rem;
    }

    .mini-card-text {
        font-size: 0.75rem;
    }

    .mini-card-val {
        font-size: 0.9rem;
    }

    /* Form */
    .form-group {
        gap: 0.35rem;
    }

    .form-label {
        font-size: 0.78rem;
    }

    .form-input {
        padding: 0.6rem 0.85rem;
        font-size: 0.88rem;
    }

    textarea.form-input {
        min-height: 100px;
    }

    .submit-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    /* Footer */
    footer {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        padding: 1.25rem 0;
        margin-top: 3rem;
    }

    /* Work/Projects */
    .work-item, .project-item {
        padding-bottom: 1.25rem;
        gap: 0.4rem;
    }

    .item-title {
        font-size: 0.95rem;
    }

    .item-desc {
        font-size: 0.88rem;
    }

    .tag {
        font-size: 0.68rem;
        padding: 0.15rem 0.45rem;
    }

    /* Blog */
    .blog-post-title {
        font-size: 0.95rem;
    }

    .blog-post-excerpt {
        font-size: 0.88rem;
    }

    .back-to-blog-link {
        font-size: 0.9rem;
    }

    .blog-post-title {
        font-size: 1.4rem;
    }
}

/* Medium mobile devices (481px - 600px) */
@media (min-width: 481px) and (max-width: 600px) {
    .container {
        padding: 1.5rem 1.25rem;
    }

    .nav-link {
        font-size: 0.82rem;
        padding: 0.4rem 0.6rem;
    }

    .socials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    h1 {
        font-size: 1.3rem;
    }

    .bio-content {
        font-size: 0.92rem;
    }
}

/* Tablet devices (601px - 768px) */
@media (min-width: 601px) and (max-width: 768px) {
    .container {
        padding: 1.75rem 1.5rem;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .socials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large mobile optimization for navigation */
@media (max-width: 400px) {
    nav {
        justify-content: center;
    }

    .nav-brand {
        margin-right: 0;
    }

    .nav-sep {
        display: none;
    }

    header {
        justify-content: center;
    }

    .nav-right {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }
}

/* ==========================================================================
   11. STATIC PAGES (Terms / Privacy)
   ========================================================================== */
.static-content {
    max-width: 640px;
    margin-top: 1.5rem;
}

.static-content h2 {
    font-size: 1rem;
    margin: 2rem 0 0.5rem;
    color: var(--text-primary);
}

.static-content p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* ==========================================================================
   12. DECORATIVE KHAT-STYLE NOTE
   ========================================================================== */
.khat-note {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #f5f0e6 0%, #e8e0d0 100%);
    padding: 1.5rem;
    border-radius: 3px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-family: 'Kalam', cursive;
    font-size: 0.85rem;
    color: #4a4a4a;
    line-height: 1.6;
    max-width: 200px;
    z-index: 1000;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    border: 1px solid #d4c8b8;
}

.khat-note:hover {
    opacity: 1;
}

.khat-note::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 8px;
    background: linear-gradient(to bottom, #d4c8b8, #e8e0d0);
    border-radius: 3px 3px 0 0;
}

.khat-note::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 8px;
    background: linear-gradient(to top, #d4c8b8, #e8e0d0);
    border-radius: 0 0 3px 3px;
}

@media (max-width: 768px) {
    .khat-note {
        display: none;
    }
}

/* ==========================================================================
   13. BLOG PAGE STYLES
   ========================================================================== */
.blog-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1rem;
}

.blog-post-card {
    padding: 1rem 0;
    cursor: pointer;
    border-bottom: 1px solid var(--border-color);
}

.blog-post-card:last-child {
    border-bottom: none;
}

.blog-post-card:hover {
    opacity: 0.7;
}

.blog-post-card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.blog-post-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.blog-post-date {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.blog-post-excerpt {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-top: 0.25rem;
}

.blog-post-view {
    margin-top: 1rem;
}

.blog-post-header-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
    gap: 1rem;
}

.back-to-blog-link {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
}

.back-to-blog-link:hover {
    opacity: 0.6;
}

.blog-post-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.02em;
    flex-grow: 1;
}

.blog-post-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

.blog-post-divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 1.5rem 0 2rem 0;
}

.blog-post-content {
    margin-top: 1rem;
}

.blog-post-content h1 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.blog-post-content h2 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.75rem;
}

.blog-post-content h3 {
    font-size: 1.1rem;
    margin: 1.25rem 0 0.5rem;
}

.blog-post-content p {
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.blog-post-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.blog-post-content em {
    font-style: italic;
}

.blog-post-content code {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.88rem;
}

.blog-post-content pre {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 1rem;
    overflow-x: auto;
    margin: 1rem 0;
}

.blog-post-content pre code {
    background: none;
    border: none;
    padding: 0;
}

.blog-post-content ul,
.blog-post-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.blog-post-content li {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.blog-post-content blockquote {
    border-left: 3px solid var(--text-secondary);
    padding-left: 1rem;
    margin: 1rem 0;
    color: var(--text-muted);
    font-style: italic;
}

.blog-post-content hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 2rem 0;
}

.loading {
    text-align: center;
    color: var(--text-muted);
    padding: 2rem;
}

/* Admin page styles */
.admin-post-card {
    position: relative;
    padding: 1rem 0;
    cursor: default;
    border-bottom: 1px solid var(--border-color);
}

.admin-post-card:last-child {
    border-bottom: none;
}

.admin-post-card:hover {
    opacity: 1;
}

.admin-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.edit-btn,
.delete-btn {
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-color);
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 0.78rem;
    transition: border-color 0.2s, color 0.2s;
}

.edit-btn:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.delete-btn:hover {
    border-color: #ef4444;
    color: #ef4444;
}

.post-editor {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
}
