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

:root {
    --bg-primary: #0a0e1a;
    --bg-secondary: #151b2d;
    --accent-gold: #d4af37;
    --accent-cyan: #00e5ff;
    --text-primary: #e8eaed;
    --text-secondary: #a0a4b0;
    --grid-color: rgba(212, 175, 55, 0.08);
}

/* Custom Developer Cursor */
body {
    font-family: 'Crimson Pro', serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}

#cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    transform: translate(-50%, -50%);
    opacity: 0;
}

#cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 229, 255, 0.4);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.2s ease;
    transform: translate(-50%, -50%);
    opacity: 0;
}

#cursor.active {
    opacity: 1;
}

#cursor-follower.active {
    opacity: 1;
}

#cursor.hover {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-cyan);
}

a,
button,
.project-card,
.experience-item,
.skill-item {
    cursor: none;
}

/* Show default cursor on mobile */
@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    a,
    button,
    .project-card,
    .experience-item,
    .skill-item {
        cursor: pointer;
    }
}

a,
button,
.project-card,
.experience-item,
.skill-item {
    cursor: none;
}

/* Navigation Bar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-cyan));
    z-index: 1001;
    transform-origin: left;
    transition: width 0.1s ease;
}

nav.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
    font-family: 'Space Mono', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--accent-gold);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    padding: 5px;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: rgba(21, 27, 45, 0.98);
        backdrop-filter: blur(10px);
        width: 250px;
        padding: 30px;
        gap: 20px;
        border-left: 1px solid rgba(212, 175, 55, 0.1);
        transition: right 0.3s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }
}

/* Animated grid background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px),
        linear-gradient(180deg, var(--grid-color) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    z-index: -1;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 50px 50px;
    }
}

/* Glowing orb effect */
.orb {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
    z-index: -1;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

.orb-1 {
    background: radial-gradient(circle, var(--accent-gold), transparent);
    top: -150px;
    right: -150px;
}

.orb-2 {
    background: radial-gradient(circle, var(--accent-cyan), transparent);
    bottom: -150px;
    left: -150px;
    animation-delay: -10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(50px, 80px) scale(1.15);
    }

    66% {
        transform: translate(-30px, -50px) scale(0.95);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
header {
    padding: 180px 0 60px;
    position: relative;
}

.header-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

.name-section {
    flex: 1;
}

h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;

    background: linear-gradient(270deg, var(--accent-gold), var(--accent-cyan), var(--accent-gold));
    background-size: 600% 600%;

    background-clip: text;
    /* standard property */
    -webkit-background-clip: text;
    /* for Safari/WebKit */
    -webkit-text-fill-color: transparent;

    animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


@keyframes shimmer {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.3);
    }
}

.title {
    font-family: 'Space Mono', monospace;
    font-size: 1.3rem;
    color: var(--accent-gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 30px;
    opacity: 0;
    animation: slideUp 0.8s ease-out 0.3s forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    opacity: 0;
    animation: slideUp 0.8s ease-out 0.5s forwards;
}

.contact-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 12px 24px;
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    transition: all 0.3s ease;
    font-family: 'Space Mono', monospace;
    position: relative;
    overflow: hidden;
}

.contact-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.contact-links a:hover::before {
    width: 300px;
    height: 300px;
}

.contact-links a:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.github-stats {
    flex: 0 0 300px;
    background: linear-gradient(135deg, rgba(21, 27, 45, 0.9), rgba(21, 27, 45, 0.6));
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    opacity: 0;
    animation: slideUp 0.8s ease-out 0.7s forwards;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.stat-item {
    margin-bottom: 20px;
}

.stat-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    padding-left: 15px;
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

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

    50% {
        transform: scale(1.05);
    }
}

/* Section styling */
section {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Education */
.education-item {
    margin-bottom: 40px;
    padding-left: 30px;
    border-left: 2px solid var(--accent-gold);
    position: relative;
}

.education-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 5px;
    width: 10px;
    height: 10px;
    background: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-gold);
}

.education-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.education-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.education-date {
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    color: var(--accent-cyan);
}

/* Experience */
.experience-item {
    background: linear-gradient(135deg, rgba(21, 27, 45, 0.9), rgba(21, 27, 45, 0.7));
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.experience-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    transition: left 0.5s ease;
}

.experience-item:hover::before {
    left: 100%;
}

.experience-item:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.experience-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.experience-date {
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    color: var(--accent-cyan);
}

.experience-item ul {
    list-style: none;
    padding-left: 0;
}

.experience-item li {
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
    color: var(--text-secondary);
}

.experience-item li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-size: 1.2rem;
}

/* Projects */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background: linear-gradient(135deg, rgba(21, 27, 45, 0.9), rgba(21, 27, 45, 0.7));
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.03), transparent);
    transition: left 0.6s ease;
}

.project-card:hover::before {
    transform: scaleX(1);
}

.project-card:hover::after {
    left: 100%;
}

.project-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.project-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    flex-direction: column;
    text-align: center;
}

.project-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.project-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.project-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-family: 'Space Mono', monospace;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 229, 255, 0.1));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.project-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.4s ease;
}

.project-links a:hover::before {
    left: 100%;
}

.project-links a:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.project-description {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.6;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.tech-tag {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Skills */
.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.skill-category {
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.skill-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-family: 'Space Mono', monospace;
}

.skill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-item {
    padding: 8px 16px;
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 6px;
    color: var(--accent-cyan);
    font-size: 0.95rem;
    transition: all 0.4s ease;
    position: relative;
}

.skill-item:hover {
    background: rgba(0, 229, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 229, 255, 0.3);
    border-color: var(--accent-cyan);
}

/* Certificates */
.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.certificate-item {
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 8px;
    border-left: 3px solid var(--accent-gold);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.certificate-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    transition: height 0.3s ease;
}

.certificate-item:hover::before {
    height: 100%;
}

.certificate-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.15);
    background: rgba(21, 27, 45, 0.8);
}

.certificate-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.certificate-issuer {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Footer */
footer {
    padding: 60px 0 40px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Space Mono', monospace;
    padding: 10px 20px;
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

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

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header-content {
        flex-direction: column;
    }

    .github-stats {
        flex: 1;
        width: 100%;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    section {
        padding: 50px 0;
    }

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

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Timeline Experience Section */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-gold), var(--accent-cyan));
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 50px;
}

.timeline-dot {
    position: absolute;
    left: 21px;
    top: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 3px solid var(--accent-gold);
    box-shadow: 0 0 0 4px var(--bg-primary), 0 0 20px rgba(212, 175, 55, 0.5);
    transition: all 0.4s ease;
    z-index: 2;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 4px var(--bg-primary), 0 0 30px rgba(0, 229, 255, 0.8);
}

.timeline-content {
    background: linear-gradient(135deg, rgba(21, 27, 45, 0.9), rgba(21, 27, 45, 0.7));
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--accent-gold);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    transition: left 0.5s ease;
}

.timeline-item:hover .timeline-content::before {
    left: 100%;
}

.timeline-item:hover .timeline-content {
    border-left-color: var(--accent-cyan);
    transform: translateX(10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.timeline-date {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    color: var(--accent-cyan);
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.timeline-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.timeline-company {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 500;
}

.timeline-description {
    list-style: none;
    padding-left: 0;
}

.timeline-description li {
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.7;
}

.timeline-description li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-size: 1.2rem;
}

/* Mobile responsive timeline */
@media (max-width: 768px) {
    .timeline::before {
        left: 15px;
    }

    .timeline-item {
        padding-left: 50px;
    }

    .timeline-dot {
        left: 6px;
    }

    .timeline-title {
        font-size: 1.3rem;
    }

    .timeline-company {
        font-size: 1rem;
    }
}

/* ── Project Website Thumbnail Preview ───────────────────────── */
.project-preview-thumb {
    position: relative;
    width: 100%;
    height: 180px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    margin: -32px -35px 20px -35px;
    width: calc(100% + 70px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    background: #0d1020;
    flex-shrink: 0;
}

.project-preview-thumb iframe {
    width: 200%;
    height: 200%;
    transform: scale(0.5);
    transform-origin: top left;
    border: none;
    pointer-events: none;
}

.project-preview-thumb .thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            transparent 55%,
            rgba(10, 14, 26, 0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

.project-preview-thumb .thumb-loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-secondary);
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    z-index: 0;
}

.thumb-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(212, 175, 55, 0.15);
    border-top-color: var(--accent-gold);
    border-radius: 50%;
    animation: previewSpin 0.8s linear infinite;
}

@keyframes previewSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Card needs flex column so thumbnail sits naturally above content */
.project-card {
    display: flex;
    flex-direction: column;
}