@font-face {
    font-family: 'Aexir';
    src: url('fonts/Aexir-Free-Version-BF65ef18d2783f2.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --bg-primary: #050505;
    --bg-secondary: #0a0a0a;
    --bg-card: rgba(15, 15, 15, 0.9);
    --bg-card-hover: rgba(20, 20, 20, 0.95);
    --text-primary: #f5f5f5;
    --text-secondary: #888888;
    --text-muted: #555555;
    --purple: #8b5cf6;
    --purple-dim: #6d45d9;
    --blue: #3b82f6;
    --gradient: linear-gradient(135deg, var(--purple), var(--blue));
    --gradient-text: linear-gradient(90deg, var(--purple), var(--blue), var(--purple));
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(139, 92, 246, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

body.intro-active {
    overflow: hidden;
}

/* Cinematic Intro */
.cinematic-intro {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.15), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.15), transparent 45%),
        #050505;
    opacity: 1;
    transform: scale(1);
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 1.2s cubic-bezier(0.4, 0, 0.2, 1),
                transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.cinematic-intro.intro-exit {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
}

.cinematic-intro.intro-exit .intro-content {
    transform: translateY(-30px);
    opacity: 0;
}

#intro-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.intro-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 720px;
    animation: introRise 1.6s ease forwards;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.intro-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.6);
    margin-bottom: 1.5rem;
}

.intro-title {
    font-family: 'Aexir', sans-serif;
    font-size: clamp(3.2rem, 10vw, 6rem);
    font-weight: normal;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #f8f8f8;
}

.intro-tagline {
    font-size: 1.1rem;
    color: rgba(245, 245, 245, 0.7);
    margin-bottom: 2.5rem;
}

.intro-loader {
    width: 180px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}

.intro-loader-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--purple), var(--blue));
    border-radius: 3px;
    box-shadow: 0 0 10px var(--purple), 0 0 20px rgba(139, 92, 246, 0.5);
}

.intro-debug {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: rgba(245, 245, 245, 0.7);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.intro-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
    pointer-events: none;
}

@keyframes introRise {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Background Effects - Now using Vanta.js 3D */
.bg-gradient {
    display: none; /* Replaced by Vanta.js */
}

.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    z-index: 100;
    background: linear-gradient(to bottom, var(--bg-primary), transparent);
}

.nav-logo {
    font-family: 'Aexir', sans-serif;
    font-size: 1.5rem;
    font-weight: normal;
    text-decoration: none;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 4rem;
}

.hero-content {
    text-align: center;
    max-width: 700px;
}

.hero-title {
    font-family: 'Aexir', sans-serif;
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: normal;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 1rem;
}

.gradient-text {
    background: var(--gradient-text);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Sections */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.section-title {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--purple);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

/* Project Card */
.project-card {
    position: relative;
    border-radius: 16px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.project-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.project-card:hover {
    transform: translateY(-6px) scale(1.01);
}

.project-card.featured {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .project-card.featured {
        grid-column: span 1;
    }
}

.card-glow {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, var(--border-subtle), var(--border-subtle));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: background 0.4s ease;
}

.project-card:hover .card-glow {
    background: linear-gradient(135deg, var(--purple), var(--blue));
}

.project-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: var(--gradient);
    opacity: 0;
    filter: blur(40px);
    transition: opacity 0.4s ease;
    z-index: -1;
}

.project-card:hover::before {
    opacity: 0.15;
}

.card-content {
    position: relative;
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: background 0.3s ease;
}

.project-card:hover .card-content {
    background: var(--bg-card-hover);
}

.card-badge {
    display: inline-block;
    width: fit-content;
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 100px;
    color: var(--purple);
    margin-bottom: 1rem;
}

.card-badge.accent {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    color: var(--blue);
}

.wip-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.25rem 0.6rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: var(--gradient);
    border-radius: 100px;
    color: white;
}

.project-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.project-card:hover .project-title {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-pitch {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.meta-item svg {
    opacity: 0.7;
}

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

.tag {
    padding: 0.3rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.project-card:hover .tag {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.2);
    color: var(--text-primary);
}

.card-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--purple);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.project-card:hover .card-link {
    opacity: 1;
    transform: translateX(0);
}

/* Skills Section */
.skills-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.skill-category {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.skill-category.visible {
    opacity: 1;
    transform: translateY(0);
}

.skill-category-title {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.skill-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 2rem;
}

.skill-item {
    display: inline-flex;
    align-items: baseline;
    gap: 0.4rem;
}

.skill-icon {
    width: 1.2rem;
    height: 1.2rem;
    color: var(--purple);
    flex-shrink: 0;
    position: relative;
    top: 0.15rem;
}

.skill-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.skill-name::after {
    content: ' — ';
    color: var(--text-muted);
    font-weight: 400;
}

.skill-evidence {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 2rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.blog-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.blog-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.blog-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0.75rem 0;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--purple);
}

.blog-excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.blog-tag {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 500;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 4px;
    color: var(--purple);
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-subtle);
    padding: 3rem 2rem;
    margin-top: 4rem;
}

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

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

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 5rem 1.5rem 3rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Animation utilities */
.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== 3D VANTA BACKGROUND ===== */

#vanta-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

/* ===== CUSTOM CURSOR ===== */

html {
    cursor: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="1" height="1"></svg>'), auto;
}

*, *::before, *::after {
    cursor: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="1" height="1"></svg>'), auto !important;
}

/* ===== CUSTOM SCROLLBAR ===== */

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--purple), var(--blue));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--purple-dim), var(--purple));
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--purple) var(--bg-primary);
}

.custom-cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: transform 0.15s ease, opacity 0.15s ease;
    box-shadow: 0 0 20px var(--purple), 0 0 40px rgba(139, 92, 246, 0.4);
}

.custom-cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(139, 92, 246, 0.5);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9998;
    transition: transform 0.3s ease, border-color 0.3s ease, width 0.3s ease, height 0.3s ease;
}

.custom-cursor.hovering {
    transform: translate(-50%, -50%) scale(1.5);
}

.custom-cursor-ring.hovering {
    width: 50px;
    height: 50px;
    border-color: rgba(59, 130, 246, 0.6);
}

/* Hide custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    *, *::before, *::after {
        cursor: auto !important;
    }
    .custom-cursor, .custom-cursor-ring, .cursor-glow {
        display: none !important;
    }
}

/* ===== INTERACTIVE ELEMENTS ===== */

/* Cursor Glow (ambient) - follows mouse */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 0;
}

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

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient);
    z-index: 1000;
    transition: width 0.1s ease;
}

/* Floating Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(139, 92, 246, 0.5);
    border-radius: 50%;
    animation: float linear infinite;
}

.particle:nth-child(odd) {
    background: rgba(59, 130, 246, 0.5);
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Magnetic Elements */
.link-card,
.badge,
.tag {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, border-color 0.3s ease;
}

/* Enhanced Card Glow (follows cursor) */
.card-glow {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.project-card:hover .card-glow {
    opacity: 1;
}

/* Text Scramble Effect - ensure monospace during animation */
.project-title {
    font-family: 'Inter', monospace;
    min-width: fit-content;
}

/* Hero Parallax */
.hero {
    transition: transform 0.1s ease, opacity 0.1s ease;
    will-change: transform, opacity;
}

/* Stat Numbers - prepare for counter animation */
.stat-number {
    font-variant-numeric: tabular-nums;
    min-width: 3ch;
    display: inline-block;
}

/* ===== 3D TRANSFORMS ===== */

/* Enable 3D space for cards */
.projects-grid {
    perspective: 2000px;
    transform-style: preserve-3d;
}

.project-card {
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    will-change: transform;
}

/* 3D depth for card children */
.card-content {
    transform-style: preserve-3d;
}

.project-title,
.project-tags,
.card-badge,
.project-pitch {
    transition: transform 0.3s ease;
    will-change: transform;
}

.nav-links a {
    position: relative;
}

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

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

/* Glow on interactive elements */
.link-card:hover {
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

/* Pulsing badge animation */
.card-badge.accent {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(59, 130, 246, 0);
    }
}

/* 3D Floating animation */
@keyframes float3d {
    0%, 100% {
        transform: translateY(0) rotateX(0) rotateY(0);
    }
    25% {
        transform: translateY(-10px) rotateX(2deg) rotateY(2deg);
    }
    50% {
        transform: translateY(-5px) rotateX(0) rotateY(-2deg);
    }
    75% {
        transform: translateY(-15px) rotateX(-2deg) rotateY(1deg);
    }
}

/* Apply to hero stats */
.hero-stats {
    perspective: 1000px;
}

.stat {
    animation: float3d 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

.stat:nth-child(1) { animation-delay: 0s; }
.stat:nth-child(2) { animation-delay: 0.5s; }
.stat:nth-child(3) { animation-delay: 1s; }

/* 3D text shadow for hero */
.hero-title {
    text-shadow:
        0 1px 0 rgba(139, 92, 246, 0.4),
        0 2px 0 rgba(139, 92, 246, 0.3),
        0 3px 0 rgba(139, 92, 246, 0.2),
        0 4px 0 rgba(139, 92, 246, 0.1),
        0 5px 10px rgba(0, 0, 0, 0.4);
}

/* Glassmorphism for cards with 3D */
.card-content {
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* 3D border effect */
.project-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(135deg,
        rgba(139, 92, 246, 0.5) 0%,
        transparent 50%,
        rgba(59, 130, 246, 0.5) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover::after {
    opacity: 1;
}

/* Reflection effect */
.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.05) 0%,
        transparent 100%);
    border-radius: 16px 16px 0 0;
    pointer-events: none;
    z-index: 1;
}
