/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #181818;
    background-color: #f3f4f6;
    overflow-x: hidden;
}

/* Flow Field Canvas */
.flow-field-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #f3f4f6 0%, #e0e7ef 100%);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.98) !important;
    backdrop-filter: blur(4px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03) !important;
    border-bottom: 1px solid #f3f4f6 !important;
    color: #181818 !important;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 1rem;
}

.nav-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f97316;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-logo a:hover {
    color: #ea580c;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    justify-content: center;
}

.nav-extra {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #181818;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #f97316;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #f97316;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #f97316;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #181818;
    padding-top: 80px;
    position: relative;
    background: transparent;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
    z-index: -1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: none;
    color: #ea580c;
}

.highlight {
    color: #fbbf24;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #f97316;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #222;
    line-height: 1.7;
}

.hero-hint {
    font-size: 0.9rem;
    color: #f97316;
    margin-top: 1rem;
    opacity: 0.8;
    font-style: italic;
    text-align: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

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

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #fbbf24, #f97316);
    color: #181818;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.08);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: #f97316;
    border: 2px solid #f97316;
}

.btn-secondary:hover {
    background: #f97316;
    color: #fff;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-placeholder {
    width: 300px;
    height: 300px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(249, 115, 22, 0.3);
    border: 3px solid rgba(249, 115, 22, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 50px rgba(249, 115, 22, 0.2);
}

.profile-headshot {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #f97316;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    background: #fff;
    display: block;
    margin: 0 auto;
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(2px);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #ea580c;
    text-shadow: none;
}

/* About Section */
.about {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(2px);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #000000;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #f97316;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(249, 115, 22, 0.5);
}

.stat p {
    color: #555;
    font-weight: 500;
}

.about-placeholder {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #fbbf24, #f97316);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.3);
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.skill-category {
    background: #fff;
    color: #181818;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid #f97316;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-5px);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.2);
}

.skill-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #f97316;
    text-align: center;
}

.skill-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #f9fafb;
    color: #181818;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #f97316;
}

.skill-item:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.3);
    transform: scale(1.05);
}

.skill-item i {
    font-size: 1.5rem;
    color: #f97316;
}

.skill-item span {
    font-weight: 500;
    color: #181818;
}

/* Projects Section */
.projects {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(2px);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: #fff;
    color: #181818;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid #f97316;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.2);
}

.project-image {
    height: 200px;
    background: linear-gradient(135deg, #fbbf24, #f97316);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-placeholder {
    font-size: 3rem;
    color: white;
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f97316;
}

.project-content p {
    color: #222;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.project-tech span {
    background: #fff7ed;
    color: #f97316;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #f97316;
}

.project-links {
    display: flex;
    gap: 1rem;
}

.project-link {
    text-decoration: none;
    color: #f97316;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: #ea580c;
    text-decoration: underline;
}

.project-content .project-link {
    color: #f97316;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.project-content .project-link:hover {
    color: #ea580c;
    text-decoration: underline;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f97316;
}

.contact-info p {
    color: #222;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-items {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-item i {
    color: #f97316;
    font-size: 1.2rem;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: #fff7ed;
    color: #f97316;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #f97316;
}

.social-link:hover {
    background: #f97316;
    color: #fff;
}

.contact-form {
    background: #fff;
    color: #181818;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid #f97316;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: #f9fafb;
    color: #181818;
    border: 1.5px solid #f97316;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ea580c;
    background: #fff7ed;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #fff;
    color: #888;
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid #f97316;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(15, 23, 42, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        backdrop-filter: blur(20px);
    }

    .nav-menu.active {
        left: 0;
    }

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

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        justify-content: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .skill-items {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

.hero-description,
.project-content p,
.contact-info p,
.stat p,
.skill-item span,
.contact-item span {
    color: #222 !important;
}

.section-title,
.skill-category h3,
.project-content h3,
.contact-info h3 {
    color: #ea580c;
}

/* Void Link Section */
.void-link-section {
    background: #181818;
    color: #fff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.void-link-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(139, 69, 19, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.void-link-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.void-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 20px 40px;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.2), rgba(101, 67, 33, 0.3));
    border: 2px solid #8b4513;
    border-radius: 50px;
    text-decoration: none;
    color: #deb887;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.void-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(222, 184, 135, 0.2), transparent);
    transition: left 0.6s;
}

.void-link:hover::before {
    left: 100%;
}

.void-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.4);
    border-color: #deb887;
    color: #fff;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.4), rgba(101, 67, 33, 0.5));
}

.void-icon {
    font-size: 1.5rem;
    color: #deb887;
    transition: color 0.3s ease;
    animation: voidPulse 3s ease-in-out infinite;
}

.void-link:hover .void-icon {
    color: #fff;
}

@keyframes voidPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Black Hole Navigation Element */
.black-hole-nav {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 4px !important;
    position: relative;
}

.black-hole {
    width: 32px;
    height: 32px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.black-hole:hover {
    transform: scale(1.2);
}

.black-hole-center {
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
    position: absolute;
    z-index: 4;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.black-hole-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    opacity: 0.6;
    animation: blackHoleSwirl 3s linear infinite;
}

.ring-1 {
    width: 16px;
    height: 16px;
    border-color: #333;
    animation-duration: 2s;
}

.ring-2 {
    width: 24px;
    height: 24px;
    border-color: #555;
    animation-duration: 2.5s;
    animation-direction: reverse;
}

.ring-3 {
    width: 32px;
    height: 32px;
    border-color: #777;
    animation-duration: 3s;
    border-style: dashed;
}

@keyframes blackHoleSwirl {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: rotate(180deg) scale(0.8);
        opacity: 0.9;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.6;
    }
}

.black-hole-nav:hover .black-hole-ring {
    animation-duration: 1s !important;
    opacity: 1;
}

.black-hole-nav:hover .black-hole-center {
    box-shadow: 0 0 20px rgba(0, 0, 0, 1);
    background: #111;
}

/* Black hole gravity effect on hover */
.black-hole-nav::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: radial-gradient(circle, transparent 60%, rgba(0, 0, 0, 0.05) 80%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

.black-hole-nav:hover::after {
    opacity: 1;
}

/* Click me hint */
.click-me-hint {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-right: 8px;
    font-size: 0.75rem;
    font-weight: 400;
    color: #666;
    opacity: 1;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.click-me-arrow {
    font-size: 0.8rem;
    color: #999;
    animation: bounceArrow 2s ease-in-out infinite;
    transform: rotate(0deg);
}

.click-me-text {
    font-style: italic;
    color: #888;
    font-size: 0.7rem;
}

@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    40% {
        transform: translateX(3px) rotate(0deg);
    }
    60% {
        transform: translateX(1px) rotate(0deg);
    }
}

.black-hole-nav:hover .click-me-arrow {
    color: #f97316;
    animation-duration: 0.8s;
}

.black-hole-nav:hover .click-me-text {
    color: #f97316;
}

/* Mobile adjustments for black hole */
@media (max-width: 768px) {
    .black-hole {
        width: 28px;
        height: 28px;
    }
    
    .black-hole-center {
        width: 6px;
        height: 6px;
    }
    
    .ring-1 {
        width: 14px;
        height: 14px;
    }
    
    .ring-2 {
        width: 20px;
        height: 20px;
    }
    
    .ring-3 {
        width: 28px;
        height: 28px;
    }
}

/* Company Logo Backgrounds */
.cardinal-bg {
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%) !important;
    position: relative;
}

.silverlake-bg {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%) !important;
    position: relative;
}

.ames-bg {
    background: linear-gradient(135deg, #065f46 0%, #10b981 100%) !important;
    position: relative;
}

.influx-bg {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%) !important;
    position: relative;
}

.alkymi-bg {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%) !important;
    position: relative;
}

.cyberhaven-bg {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%) !important;
    position: relative;
}

.ucsc-bg {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
    position: relative;
}

.kyber-bg {
    background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 100%) !important;
    position: relative;
}

.defense-bg {
    background: linear-gradient(135deg, #1f2937 0%, #4b5563 100%) !important;
    position: relative;
}

.company-logo-img {
    height: 90px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
}

.project-card:hover .company-logo-img {
    transform: scale(1.1);
}

/* Specific logo adjustments for visibility and sizing */
.silverlake-bg .company-logo-img {
    filter: brightness(1.4) contrast(1.3);
    height: 90px;
}

.influx-bg .company-logo-img {
    filter: brightness(0) invert(1);
    height: 75px;
}

.cyberhaven-bg .company-logo-img {
    height: 90px;
    filter: brightness(1.3) contrast(1.2);
}

.alkymi-bg .company-logo-img {
    height: 150px;
    filter: brightness(1.5) contrast(1.4) drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.cardinal-bg .company-logo-img {
    height: 95px;
    filter: brightness(1.6) contrast(1.4) drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

.kyber-bg .company-logo-img {
    height: 200px;
    filter: brightness(1.3) contrast(1.2);
}

.defense-bg .company-logo-img {
    height: 90px;
    filter: brightness(1.2) contrast(1.1);
}

.ames-bg .company-logo-img {
    height: 90px;
    filter: brightness(1.4) contrast(1.3);
}

.ucsc-bg .company-logo-img {
    height: 210px;
    filter: brightness(1.2) contrast(1.1);
}

/* Enhanced hover effects for better visibility */
.alkymi-bg:hover .company-logo-img {
    filter: brightness(1.7) contrast(1.5) drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}

.cardinal-bg:hover .company-logo-img {
    filter: brightness(1.8) contrast(1.5) drop-shadow(0 4px 8px rgba(0,0,0,0.5));
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.company-logo {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.05em;
    opacity: 0.95;
    transition: all 0.3s ease;
}

.project-card:hover .company-logo {
    transform: scale(1.1);
    opacity: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Add subtle pattern overlay for texture */
.cardinal-bg::before,
.silverlake-bg::before,
.ames-bg::before,
.influx-bg::before,
.alkymi-bg::before,
.cyberhaven-bg::before,
.ucsc-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}
