/* ============================================================
   Portfolio CI4 - Main Stylesheet
   Dark Theme | Aurora | Marquee | Glassmorphism
   ============================================================ */

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

:root {
    --bg-primary: #030303;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.07);
    --text-primary: #ffffff;
    --text-muted: #71717a;
    --text-dim: #3f3f46;
    --accent-blue: #3b82f6;
    --accent-emerald: #10b981;
    --accent-purple: #a855f7;
}

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

html,
body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    min-height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    perspective: 2000px;
    /* Stronger perspective for 3D depth */
}

::selection {
    background: #fff;
    color: #000;
}

/* ─── SCROLLBAR ────────────────────────────────────── */
::-webkit-scrollbar {
    width: 4px;
}

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

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

/* ─── GRAIN OVERLAY ────────────────────────────────── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 999;
    pointer-events: none;
    opacity: .025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px;
}

/* ─── AURORA BACKGROUND ────────────────────────────── */
.aurora {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    contain: strict;
}

main {
    position: relative;
    z-index: 1;
    overflow-x: hidden;
    overflow-y: clip;
    /* Contains 3D transforms leakage */
}

/* ─── 3D DIGITAL GRID ──────────────────────────────── */
.aurora-grid {
    position: absolute;
    inset: -50%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    transform: perspective(1000px) rotateX(60deg) translateY(calc(var(--scroll-perc) * -200px));
    mask-image: radial-gradient(circle, black, transparent 80%);
    z-index: -1;
    pointer-events: none;
    will-change: transform;
}

.aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: aurora-float 20s ease-in-out infinite alternate;
}

.aurora-blob-1 {
    width: 600px;
    height: 600px;
    background: rgba(168, 85, 247, 0.12);
    top: -10%;
    left: 10%;
    animation-duration: 18s;
}

.aurora-blob-2 {
    width: 800px;
    height: 800px;
    background: rgba(59, 130, 246, 0.10);
    bottom: -20%;
    right: 5%;
    animation-duration: 25s;
    animation-delay: -8s;
}

.aurora-blob-3 {
    width: 500px;
    height: 500px;
    background: rgba(16, 185, 129, 0.08);
    top: 40%;
    left: 50%;
    animation-duration: 22s;
    animation-delay: -4s;
}

/* ─── TRAVELING AURORA BLOB (3D SPOTLIGHT) ────────── */
.aurora-traveler {
    position: fixed;
    /* Fixed to follow screen */
    width: 80vw;
    height: 80vh;
    left: 10vw;
    top: calc(var(--scroll-perc, 0) * 100% - 40vh);
    /* Offsets to keep it centered */
    background: radial-gradient(circle at 50% 50%,
            rgba(59, 130, 246, 0.12) 0%,
            rgba(168, 85, 247, 0.08) 40%,
            transparent 75%);
    filter: blur(100px);
    /* Lower blur for performance */
    z-index: -1;
    pointer-events: none;
    transition: top 0.4s cubic-bezier(0.1, 0.7, 0.1, 1);
    transform: translateZ(-200px);
    /* Pushed back in 3D space */
    will-change: top;
}

/* Secondary smaller glow */
.aurora-traveler::after {
    content: '';
    position: absolute;
    width: 40vw;
    height: 40vh;
    left: 20vw;
    top: 20vh;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1), transparent 70%);
    filter: blur(60px);
    /* Lower blur */
    transform: translateZ(100px);
    /* Different Z for parallax feel */
}

/* ─── 3D ATMOSPHERIC ORBS ──────────────────────────── */
.aurora-3d-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.15;
    will-change: transform;
}

.aurora-orb-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-blue);
    left: 10%;
    top: 20%;
    transform: translateZ(-300px) translateY(calc(var(--scroll-perc) * 200px));
}

.aurora-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-purple);
    right: 15%;
    bottom: 10%;
    transform: translateZ(-500px) translateY(calc(var(--scroll-perc) * -300px));
}

@keyframes aurora-float {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(60px, 80px) scale(1.3);
    }
}

/* ─── NAVBAR ───────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 900;
    color: #000;
    text-decoration: none;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: .7rem 2rem;
    border-radius: 1rem;
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    list-style: none;
}

.navbar-links a {
    font-size: .6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--text-muted);
    text-decoration: none;
    transition: color .2s;
}

.navbar-links a:hover {
    color: #fff;
}

/* ─── HERO ─────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7rem 2rem 4rem;
    z-index: 1;
}

.hero-inner {
    max-width: 1280px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 2rem;
    font-size: .6rem;
    font-weight: 900;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.hero-tag span:first-child {
    display: block;
    width: 48px;
    height: 1px;
    background: rgba(255, 255, 255, .2);
}

.hero-title {
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 900;
    line-height: .85;
    letter-spacing: -.04em;
    margin-bottom: 2rem;
}

.hero-title .gradient-text {
    background: linear-gradient(90deg, #fff 0%, #71717a 50%, #27272a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 2.5rem;
}

.hero-desc strong {
    color: #fff;
}

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

.btn-primary {
    padding: .9rem 2.5rem;
    background: #fff;
    color: #000;
    font-size: .65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .15em;
    border-radius: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform .2s, background .2s;
}

.btn-primary:hover {
    background: #e4e4e7;
    transform: scale(1.05);
}

.btn-secondary {
    padding: .9rem 2.5rem;
    background: rgba(15, 15, 15, 0.5);
    border: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
    font-size: .65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .15em;
    border-radius: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s, background .2s;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #18181b;
    transform: scale(1.05);
}

/* Hero Photo */
.hero-photo-wrap {
    position: relative;
    justify-self: end;
}

.hero-photo-glow {
    position: absolute;
    inset: 2rem;
    background: rgba(255, 255, 255, .05);
    filter: blur(80px);
    border-radius: 50%;
}

.hero-photo {
    position: relative;
    width: 380px;
    height: 380px;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--border);
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.hero-photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #18181b, #27272a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    font-weight: 900;
    color: var(--text-dim);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    opacity: .3;
    animation: fade-in 2s 1s both;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding: .2rem;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 4px;
    animation: scroll-bounce 1.5s ease-in-out infinite;
}

@keyframes scroll-bounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(8px);
        opacity: .3;
    }
}

/* ─── SECTION COMMONS ──────────────────────────────── */
section {
    position: relative;
    z-index: 1;
}

.section-label {
    display: block;
    font-size: .6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .5em;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.section-desc {
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--text-dim);
    line-height: 1.8;
}

/* ─── SKILLS MARQUEE ───────────────────────────────── */
.skills-section {
    padding: 8rem 0;
    overflow: hidden;
}

.skills-header {
    max-width: 1280px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
    text-align: center;
}

.skills-header .section-label {
    color: var(--accent-emerald);
}

.skills-header .section-title {
    font-style: italic;
    text-shadow: 0 0 40px rgba(16, 185, 129, .15);
}

.marquee-wrap {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.marquee-track {
    display: flex;
    overflow: hidden;
    --gap: 2.5rem;
    gap: var(--gap);
    user-select: none;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    gap: var(--gap);
    animation: marquee-left 40s linear infinite;
}

.marquee-content.reverse {
    animation: marquee-right 45s linear infinite;
}

.skill-card {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem 2.5rem;
    border-radius: 2rem;
    background: rgba(9, 9, 9, .3);
    border: 1px solid var(--border);
    backdrop-filter: blur(24px);
    min-width: 200px;
    transition: border-color .4s, background .4s;
}

.skill-card:hover {
    border-color: rgba(16, 185, 129, .3);
    background: rgba(16, 185, 129, .03);
}

.skill-card img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform .4s;
}

.skill-card:hover img {
    transform: scale(1.25);
}

.skill-card span {
    font-size: .6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .3em;
    color: var(--text-dim);
    transition: color .3s;
}

.skill-card:hover span {
    color: #fff;
}

@keyframes marquee-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - var(--gap)/2));
    }
}

@keyframes marquee-right {
    from {
        transform: translateX(calc(-50% - var(--gap)/2));
    }

    to {
        transform: translateX(0);
    }
}

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

/* ─── PROJECTS SECTION ─────────────────────────────── */
.projects-section {
    padding: 8rem 2rem;
}

.projects-header {
    max-width: 1280px;
    margin: 0 auto 6rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    flex-wrap: wrap;
}

.projects-header-left .section-label {
    color: var(--accent-blue);
    opacity: .5;
}

.projects-header-text {
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--text-dim);
}

.projects-link {
    font-size: .6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--text-muted);
    text-decoration: none;
    border: 1px solid var(--border);
    padding: .8rem 1.8rem;
    border-radius: 10px;
    transition: color .2s, border-color .2s;
}

.projects-link:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .2);
}

.projects-list {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10rem;
}

.project-item {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.project-item.in-view {
    opacity: 1;
    transform: translateY(0);
}

.project-item.reverse {
    flex-direction: row-reverse;
}

.project-image-wrap {
    flex: 1;
    transform-style: preserve-3d;
}

.project-image {
    width: 100%;
    /* Fill the wrapper */
    aspect-ratio: 16/10;
    border-radius: 3rem;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #0a0a0a;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.project-item:hover .project-image img {
    transform: scale(1.08);
}

.project-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity .5s, backdrop-filter .5s;
    backdrop-filter: blur(0px);
}

.project-item:hover .project-image-overlay {
    opacity: 1;
    backdrop-filter: blur(8px);
}

.project-image-overlay a {
    width: 56px;
    height: 56px;
    background: #fff;
    color: #000;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform .2s;
}

.project-image-overlay a:hover {
    transform: scale(1.15);
}

.project-image-overlay svg {
    width: 22px;
    height: 22px;
}

.project-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 1rem;
}

.project-item.reverse .project-content {
    align-items: flex-end;
    text-align: right;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1.5rem;
}

.project-item.reverse .project-tags {
    justify-content: flex-end;
}

.project-tag {
    font-size: .55rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .3em;
    padding: .35rem 1rem;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
    color: var(--text-muted);
    border-radius: 50px;
}

.project-name {
    font-size: clamp(2rem, 5vw, 5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    transition: color .4s;
}

.project-item:hover .project-name {
    color: var(--accent-blue);
}

.project-desc {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: .95rem;
    margin-bottom: 2rem;
    max-width: 440px;
    opacity: .8;
}

.project-line {
    height: 2px;
    width: 8rem;
    background: linear-gradient(90deg, rgba(59, 130, 246, .5), transparent);
    transition: width 1s ease;
}

.project-item:hover .project-line {
    width: 100%;
    max-width: 440px;
}

.project-item.reverse .project-line {
    background: linear-gradient(270deg, rgba(59, 130, 246, .5), transparent);
}

/* ─── DISCUSSION SECTION (3-BOX GRID) ──────────────── */
.discussion-section {
    padding: 8rem var(--side-padding);
    background: #050505;
}

.discussion-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "badge form"
        "archive archive";
    gap: 2.5rem;
}

.grid-box {
    padding: 2.5rem;
}

.badge-box {
    grid-area: badge;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* Start from top */
    min-height: 800px;
    /* Ensure enough room for 700px canvas + label */
}

.form-box {
    grid-area: form;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center content vertically */
}

.archive-box {
    grid-area: archive;
}

.badge-canvas-wrap {
    width: 100%;
    height: 700px;
    /* Restore original height */
    position: relative;
    border-radius: 3rem;
    overflow: hidden;
    border: 1px solid var(--border);
    background: rgba(5, 5, 10, .5);
    backdrop-filter: blur(30px);
}

#badge-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.badge-label-v2 small {
    display: block;
    font-size: .55rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .6em;
    color: var(--text-dim);
    margin-bottom: .5rem;
}

.badge-label-v2 h4 {
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -.02em;
    font-style: italic;
}

/* ─── GRID BOX COMPONENTS ─────────────────────────── */

.discussion-header-v3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.glass-icon-circle {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    flex-shrink: 0;
}

.glass-icon-circle.archive-icon {
    color: var(--accent-emerald);
}

.glass-icon-circle svg {
    width: 20px;
    height: 20px;
}

.discussion-title-v3 {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(to bottom, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.1rem;
}

.discussion-meta-v3 {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.02em;
}

/* ─── PREMIUM FORM V3 ───────────────────────────── */
.premium-form-v3 {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: transform .6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-style: preserve-3d;
}

.premium-form-v3.dispatching {
    transform: rotateX(15deg) rotateY(-5deg) translateZ(80px);
    opacity: 0.9;
}

.premium-form-v3.success-blast {
    animation: success-pop .6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-group-v3 {
    position: relative;
}

.minimal-input,
.minimal-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.minimal-textarea {
    min-height: 220px;
    /* Increased height to fill space */
    resize: none;
}

.minimal-input::placeholder,
.minimal-textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
}

.minimal-input:focus,
.minimal-textarea:focus,
.comment-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--accent-blue);
    box-shadow: 0 0 20px rgba(64, 64, 255, 0.1);
}

/* Legacy Admin Support */
.comment-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-action-row {
    display: flex;
    justify-content: flex-end;
}

.premium-submit {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    color: #000;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
}

.premium-submit:hover {
    background: var(--accent-blue);
    color: #fff;
    transform: translateY(-3px);
}

.premium-submit svg {
    width: 16px;
    height: 16px;
}

/* ─── SCROLLABLE COMMENTS V3 ─────────────────────── */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 1.5rem;
    margin-right: -1rem;
}

/* Minimalist Glass Scrollbar */
.comments-list::-webkit-scrollbar {
    width: 3px;
}

.comments-list::-webkit-scrollbar-track {
    background: transparent;
}

.comments-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.comments-list::-webkit-scrollbar-thumb:hover {
    background: var(--accent-blue);
}

.comment-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.comment-item:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.1);
}

.comment-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    flex-shrink: 0;
}

.comment-avatar svg {
    width: 20px;
    height: 20px;
}

.comment-body {
    flex: 1;
    min-width: 0;
    /* Essential for flex items with text */
}

.comment-meta {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    /* Allow time to wrap if name is long */
}

.comment-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    word-break: break-all;
    /* Prevent long names from overflowing */
    overflow-wrap: break-word;
}

.comment-time {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    white-space: nowrap;
}

.comment-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    word-break: break-word;
    /* Main fix for overflow */
    overflow-wrap: break-word;
}

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

.empty-slate-glass {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
}

.empty-slate-glass p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Animations */
@keyframes success-pop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02) translateZ(30px);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes light-streak {
    0% {
        opacity: 0;
        transform: scale(0.8) translateZ(-10px);
    }

    50% {
        opacity: 1;
        transform: scale(1.1) translateZ(0px);
    }

    100% {
        opacity: 0;
        transform: scale(1.2) translateZ(20px);
    }
}

/* Error Shake */
.error-shake {
    animation: shake 0.4s cubic-bezier(.36, .07, .19, .97) both;
}

@keyframes shake {

    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }
}

.comments-list {
    margin-top: 2rem;
}

.comment-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 2.5rem;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: comment-in 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.comment-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.comment-avatar {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.comment-item:hover .comment-avatar {
    transform: rotate(10deg);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(168, 85, 247, 0.2));
}

.comment-avatar svg {
    width: 24px;
    height: 24px;
    color: var(--accent-blue);
}

.comment-body {
    flex: 1;
}

.comment-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.comment-name {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
}

.comment-time {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
}

.comment-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
}

.no-comments-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.no-comments-icon {
    width: 64px;
    height: 64px;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.no-comments-v2 p {
    color: var(--text-dim);
    font-size: 0.9rem;
    font-weight: 600;
}

/* ─── SHARED 3D CONTAINER SYSTEM ─────────────────── */
.container-p-3d {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid var(--border);
    border-radius: 3rem;
    overflow: hidden;
    position: relative;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: transform .4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color .4s;
    transform-style: preserve-3d;
}

.container-p-3d:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

/* Update original wraps to use/extend the unified system */
/* Styles handled by .container-p-3d and specific child overrides */

/* ─── 3D SOCIAL ICONS (FOOTER) ───────────────────── */
.footer-social-grid {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2rem;
}

.social-3d-link {
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all .4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    transform-style: preserve-3d;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-3d-link svg {
    width: 22px;
    height: 22px;
    transition: transform .4s, color .4s;
    transform: translateZ(10px);
}

.social-3d-link::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-purple));
    opacity: 0;
    transition: opacity .4s;
    z-index: -1;
    filter: blur(8px);
}

.social-3d-link:hover {
    transform: translateY(-8px) rotateX(15deg) rotateY(-10deg) scale(1.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.social-3d-link:hover::after {
    opacity: 0.4;
}

.social-3d-link:hover svg {
    transform: translateZ(25px) scale(1.1);
}

/* Specific Hover Colors */
.social-3d-link.github:hover {
    color: #fff;
}

.social-3d-link.instagram:hover {
    color: #E4405F;
}

.social-3d-link.email:hover {
    color: var(--accent-blue);
}

.hero {
    min-height: 100vh;
    padding: 8rem var(--side-padding) 4rem;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ─── FOOTER ───────────────────────────────────────── */
.footer {
    border-top: 1px solid var(--border);
    background: #000;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    z-index: 5;
    margin-bottom: 0;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -.04em;
    background: linear-gradient(180deg, #fff, #3f3f46);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    display: block;
}

.footer-copy {
    font-size: .6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .5em;
    color: var(--text-dim);
    opacity: .5;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: .6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--text-muted);
    text-decoration: none;
    transition: color .2s;
}

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

/* ─── PROJECTS PAGE ────────────────────────────────── */
.projects-page {
    min-height: 100vh;
    padding: 8rem 2rem 6rem;
}

.projects-page-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.page-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    letter-spacing: -.04em;
    text-transform: uppercase;
    margin-bottom: 4rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    /* Improved for mobile */
    gap: 2rem;
}

.project-card {
    display: block;
    text-decoration: none;
    border-radius: 2rem;
    /* Slightly more rounded */
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Softer glass border */
    background: rgba(255, 255, 255, 0.02);
    /* Glass background */
    backdrop-filter: blur(10px);
    transition: all .4s cubic-bezier(0.23, 1, 0.32, 1);
}

.project-card:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, .5);
    border-color: rgba(255, 255, 255, .15);
    transform: translateY(-4px);
}

.project-card-img {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #0a0a0a;
}

.project-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.project-card:hover .project-card-img img {
    transform: scale(1.07);
}

.project-card-no-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    font-style: italic;
    font-size: .8rem;
}

.project-card-body {
    padding: 1.5rem;
}

.project-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: .75rem;
    transition: color .3s;
}

.project-card:hover .project-card-title {
    color: var(--accent-blue);
}

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

.project-card-tag {
    font-size: .55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
    padding: .3rem .8rem;
    background: #18181b;
    color: var(--text-muted);
    border-radius: 6px;
}

.empty-notice {
    color: var(--text-dim);
    font-style: italic;
    padding: 2rem 0;
}

/* ─── PROJECT DETAIL ───────────────────────────────── */
.project-detail {
    min-height: 100vh;
    padding: 8rem 2rem 6rem;
}

.project-detail-inner {
    max-width: 900px;
    margin: 0 auto;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 3rem;
    transition: color .2s;
}

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

@media (max-width: 640px) {
    .projects-page {
        padding: 6rem 1.5rem 4rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }

    .page-title {
        margin-bottom: 2.5rem;
    }
}

.detail-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: -.03em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 2rem;
}

.detail-tag {
    font-size: .6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .2em;
    padding: .5rem 1.2rem;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--border);
    color: var(--text-muted);
    border-radius: 50px;
}

.detail-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.detail-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .8rem 1.6rem;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--border);
    color: #fff;
    text-decoration: none;
    font-size: .65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .15em;
    border-radius: 10px;
    transition: background .2s;
}

.detail-link:hover {
    background: rgba(255, 255, 255, .1);
}

.detail-link svg {
    width: 16px;
    height: 16px;
}

.detail-img {
    width: 100%;
    border-radius: 1.5rem;
    overflow: hidden;
    margin-bottom: 3rem;
    border: 1px solid var(--border);
}

.detail-img img {
    width: 100%;
    display: block;
}

.detail-body {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.detail-body p {
    margin-bottom: 1.2rem;
}

/* ─── SCROLL ANIMATIONS (MODERN 3D) ────────────────── */

/* Base hidden state for any animate-on-scroll element */
.scroll-animate {
    opacity: 0;
    will-change: transform, opacity, filter;
    transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1.0);
}

/* 3D Reveal: Slides up, scales, and rotates on X-axis */
.reveal-3d {
    transform: translateY(100px) scale(0.8) rotateX(-30deg);
    filter: blur(10px);
}

.reveal-3d.in-view {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
    filter: blur(0);
}

/* Tilt In: Slides from side with rotation */
.tilt-in-left {
    transform: translateX(-100px) rotateY(20deg);
}

.tilt-in-right {
    transform: translateX(100px) rotateY(-20deg);
}

.tilt-in-left.in-view,
.tilt-in-right.in-view {
    opacity: 1;
    transform: translateX(0) rotateY(0deg);
}

/* Zoom & Blur */
.zoom-blur {
    transform: scale(1.3) translateY(50px);
    filter: blur(20px);
}

.zoom-blur.in-view {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
}

/* Fade Up (Enhanced) */
.fade-up {
    opacity: 0;
    transform: translateY(60px);
}

.fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Outbound animations (optional, triggered when leaving) */
/* Outbound animations should be subtle to avoid jarring "flashes" */
.out-view {
    opacity: 0.1;
    transform: translateY(-30px) scale(0.95) rotateX(10deg);
    filter: blur(2px);
    pointer-events: none;
}

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

    to {
        opacity: 1;
    }
}

/* ─── 3D PARALLAX & TILT UTILITIES ────────────────── */
.parallax-wrap {
    transform-style: preserve-3d;
}

/* Internal layer that "pops" out in 3D */
.parallax-layer {
    transform-style: preserve-3d;
    transition: transform 0.3s ease-out;
    pointer-events: none;
    will-change: transform;
}

/* Dynamic tilt based on scroll - handled via JS */
.scroll-tilt {
    transition: transform 0.3s ease-out;
    transform: rotateX(var(--tilt-x, 0deg)) translate3d(0, 0, 0);
    transform-style: preserve-3d;
    will-change: transform;
}

/* High-end Glassmorphism with Depth */
.glass-panel-3d {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transform: translateZ(20px);
}

/* Staggered Child Reveal */
.stagger-reveal>* {
    opacity: 0;
    transform: translateY(30px) translateZ(-50px) rotateX(-20deg);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.in-view.stagger-reveal>*:nth-child(1) {
    transition-delay: 0.1s;
}

.in-view.stagger-reveal>*:nth-child(2) {
    transition-delay: 0.2s;
}

.in-view.stagger-reveal>*:nth-child(3) {
    transition-delay: 0.3s;
}

.in-view.stagger-reveal>*:nth-child(4) {
    transition-delay: 0.4s;
}

.in-view.stagger-reveal>* {
    opacity: 1;
    transform: translateY(0) translateZ(0) rotateX(0deg);
}

/* Scroll Animation Extensions */
.reveal-3d.in-view {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
    filter: blur(0);
}

.scroll-animate.out-view {
    opacity: 0.2;
    transform: scale(0.9) translateY(-30px) rotateX(15deg);
    filter: blur(4px);
}

/* ─── RESPONSIVE (RESTORED) ────────────────────────── */
/* ─── RESPONSIVE (PROFESSIONAL SYSTEM) ─────────────── */

/* 1. Global Spacing & Typography */
:root {
    --side-padding: 3rem;
}

@media (max-width: 1024px) {
    :root {
        --side-padding: 2rem;
    }

    .badge-inner {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --side-padding: 1.5rem;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-tag,
    .hero-btns {
        justify-content: center;
    }

    .hero-photo-wrap {
        justify-self: center;
    }

    .hero-photo {
        width: 240px;
        height: 240px;
    }

    .project-item,
    .project-item.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .project-item.reverse .project-content {
        align-items: flex-start;
        text-align: left;
    }

    /* Discussion Grid Responsive Fine-tuning */
    .discussion-grid {
        gap: 2rem;
    }

    .grid-box {
        padding: 2rem;
    }
}

/* Tablet & Mobile Optimization */
@media (max-width: 1024px) {
    .discussion-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "badge"
            "form"
            "archive";
    }

    .badge-box {
        min-height: auto;
    }

    .badge-canvas-wrap {
        height: 550px;
    }
}

@media (max-width: 768px) {
    .discussion-section {
        padding: 6rem var(--side-padding);
    }

    .grid-box {
        padding: 1.75rem;
    }

    .discussion-title-v3 {
        font-size: 1.2rem;
    }

    .badge-canvas-wrap {
        height: 450px;
    }

    .minimal-textarea {
        min-height: 180px;
    }

    .footer-meta-row {
        gap: 1.25rem;
    }
}

@media (max-width: 640px) {
    .navbar-links {
        position: fixed;
        bottom: 2rem;
        /* Move to bottom for better thumb reach */
        top: auto;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(10, 10, 10, 0.85);
        backdrop-filter: blur(20px) saturate(180%);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0.8rem 1.5rem;
        border-radius: 100px;
        z-index: 1000;
        gap: 1.5rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
        display: flex;
        width: max-content;
    }

    .navbar-link {
        font-size: 0.7rem;
    }

    .toast-container {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        /* Full width toasts on small mobile */
    }

    .glass-toast {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    :root {
        --side-padding: 1.25rem;
    }

    .discussion-section {
        padding: 4rem var(--side-padding);
    }

    .badge-canvas-wrap {
        height: 380px;
        border-radius: 2rem;
    }

    .grid-box {
        padding: 1.25rem;
        /* Reduced padding */
    }

    .comment-item {
        padding: 1rem;
        /* More space for text */
        gap: 0.75rem;
    }

    .comment-avatar {
        width: 32px;
        height: 32px;
    }

    .comment-avatar svg {
        width: 16px;
        height: 16px;
    }

    .footer-meta-row {
        flex-direction: column;
        gap: 0.75rem;
    }

    .premium-submit {
        width: 100%;
        justify-content: center;
    }
}

/* ─── MODERN GLASS TOAST ─────────────────────────── */
.toast-container {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 20000;
    /* Super high z-index */
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    pointer-events: none;
}

.glass-toast {
    min-width: 280px;
    padding: 1rem 1.25rem;
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--accent-blue);
    border-radius: 12px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transform: translateX(120%);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: auto;
}

.glass-toast.active {
    transform: translateX(0);
}

.glass-toast.success {
    border-left-color: var(--accent-emerald);
}

.glass-toast.error {
    border-left-color: #ff4d4d;
}

.glass-toast.info {
    border-left-color: var(--accent-blue);
}

.toast-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    opacity: 0.8;
}

/* ─── SCROLLABLE COMMENTS ─────────────────────────── */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-height: 550px;
    overflow-y: auto;
    padding-right: 1rem;
    margin-right: -1rem;
    /* Compensation for padding-right */
}

/* Custom Minimal Scrollbar */
.comments-list::-webkit-scrollbar {
    width: 4px;
}

.comments-list::-webkit-scrollbar-track {
    background: transparent;
}

/* ─── FORM FOOTER V3 ────────────────────────────── */
.form-footer-v3 {
    margin-top: 3rem;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin-bottom: 2rem;
}

.footer-meta-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-blue);
}

.meta-label {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.1em;
}

.meta-value {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    font-family: monospace;
}

.footer-notice {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    max-width: 90%;
}

.comments-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.comments-list::-webkit-scrollbar-thumb:hover {
    background: var(--accent-blue);
}