﻿.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, #ffffff, rgba(255, 255, 255, 0.1));
    box-shadow: 0 0 6px 2px rgba(255, 255, 255, 0.4);
    opacity: 0.8;
    pointer-events: none;
    animation-name: float, blink;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

/* Gerakan naik turun lembut */
@keyframes float {
    0% {
        transform: translateY(0px) translateX(0px);
    }

    50% {
        transform: translateY(-10px) translateX(5px);
    }

    100% {
        transform: translateY(0px) translateX(0px);
    }
}

/* Efek berkedip lembut seperti bintang */
@keyframes blink {
    0%, 100% {
        opacity: 0.8;
        box-shadow: 0 0 6px 2px rgba(255, 255, 255, 0.4);
    }

    50% {
        opacity: 0.3;
        box-shadow: 0 0 3px 1px rgba(255, 255, 255, 0.2);
    }
}






/* BATAS */




:root {
    --primary-color: #040b14;
    --secondary-color: #64ffda;
    --accent-color: #ff6b6b;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-light: #8892b0;
    --text-lighter: #a8b2d1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-lighter);
    overflow-x: hidden;
    background: var(--primary-color);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    background: rgba(4, 11, 20, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

    .navbar.scrolled {
        background: rgba(4, 11, 20, 0.95);
        <!-- padding: 15px 50px; -->
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .logo:hover {
        color: var(--accent-color);
        transform: translateY(-2px);
    }

    .logo::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--accent-color);
        transition: width 0.3s ease;
    }

    .logo:hover::after {
        width: 100%;
    }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--text-lighter);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

    .nav-link:hover {
        color: var(--secondary-color);
        transform: translateY(-2px);
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--secondary-color);
        transition: width 0.3s ease;
    }

    .nav-link:hover::after {
        width: 100%;
    }

/* Hero Section - The Beginning */
.hero-section {
    height: 150vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a1628 50%, var(--primary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
/* Skills Galaxy Section */
@media screen and (max-width: 768px) {
    .hero-section {
        height: 200vh !important;
    }
    .navbar {
        /*display: none;*/
    }
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
}

    .hero-content.animated {
        transform: translateY(0);
        opacity: 1;
    }

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: var(--white);
    transition: all 0.3s ease;
    display: inline-block;
}

    /*.hero-title:hover {
        color: var(--secondary-color);
        transform: scale(1.05);
        text-shadow: 0 0 20px rgba(100, 255, 218, 0.5);
    }*/

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    display: inline-block;
}

    .hero-subtitle:hover {
        transform: scale(1.1);
        text-shadow: 0 0 15px rgba(100, 255, 218, 0.4);
    }

.hero-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    color: var(--text-lighter);
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 10px;
}

  /*  .hero-description:hover {
        background: rgba(100, 255, 218, 0.1);
        transform: scale(1.02);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }*/

/* Floating Code Elements */
.code-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: var(--secondary-color);
    z-index: 1;
    overflow: hidden;
}

.code-line {
    position: absolute;
    white-space: nowrap;
    animation: slideCode 20s linear infinite;
    transition: all 0.3s ease;
}

    .code-line:hover {
        color: var(--accent-color);
        opacity: 0.5;
        transform: scale(1.1);
    }

@keyframes slideCode {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(100vw);
    }
}

/* Journey Section - The Path */
.journey-section {
    min-height: 100vh;
    background: linear-gradient(180deg, var(--primary-color) 0%, #0a1628 100%);
    position: relative;
    overflow: hidden;
}

.journey-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 50px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
    transition: all 0.3s ease;
    display: inline-block;
}

    .section-title:hover {
        color: var(--secondary-color);
        transform: scale(1.05);
        text-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
    }

.journey-timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--secondary-color), var(--accent-color));
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

    .timeline-line:hover {
        width: 6px;
        background: linear-gradient(to bottom, var(--accent-color), var(--secondary-color));
        box-shadow: 0 0 20px rgba(100, 255, 218, 0.5);
    }

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    transition: all 0.3s ease;
}

    .timeline-item:hover {
        transform: translateY(-5px);
    }

    .timeline-item:nth-child(even) {
        flex-direction: row-reverse;
    }

.timeline-content {
    flex: 1;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    margin: 0 2rem;
    color: var(--text-lighter);
    transition: all 0.3s ease;
}

    .timeline-content:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(100, 255, 218, 0.3);
        box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    }

    .timeline-content h3 {
        color: var(--secondary-color);
        font-size: 1.5rem;
        margin-bottom: 1rem;
        transition: all 0.3s ease;
    }

    .timeline-content:hover h3 {
        color: var(--accent-color);
        transform: translateX(5px);
    }

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

    .timeline-item:nth-child(even) .timeline-content:hover h3 {
        transform: translateX(-5px);
    }

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    transform: translate(-50%, -50%) scale(1.3);
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.8);
}

.timeline-icon {
    position: absolute;
    left: 50%;
    top: -10%;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    transform: translate(-50%, -50%);
    z-index: 3;
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.3);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-icon {
    background: var(--accent-color);
    color: var(--white);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.6);
}

/* Skills Galaxy Section */
@media screen and (max-width: 768px) {
    .skills-galaxy {
        width: 300px !important;
        height: 300px !important;
    }

    .skill-orbit:nth-child(1) {
        width: 100px !important;
        height: 100px !important;
    }

    .skill-orbit:nth-child(2) {
        width: 180px !important;
        height: 180px !important;
    }

    .skill-orbit:nth-child(3) {
        width: 250px !important;
        height: 250px !important;
    }

    .skill-planet {
        width: 50px !important;
        height: 50px !important;
        font-size: 6px !important;
    }

        .skill-planet:hover {
            transform: scale(1.2) rotate(10deg) !important;
        }

    .skill-center {
        width: 60px !important;
        height: 60px !important;
        font-size: 12px !important;
    }

    .skills-title {
        font-size: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .skills-container {
        padding: 60px 20px !important;
    }
}

.skills-section {
    min-height: 100vh;
    
    background: linear-gradient(45deg, var(--primary-color) 0%, #0a1628 50%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skills-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 50px;
    text-align: center;
}

.skills-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3rem;
    transition: all 0.3s ease;
    display: inline-block;
}

    .skills-title:hover {
        color: var(--secondary-color);
        transform: scale(1.05);
        text-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
    }

.skills-galaxy {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

    .skills-galaxy:hover {
        transform: scale(1.02);
    }

.skill-orbit {
    position: absolute;
    border: 2px solid rgba(100, 255, 218, 0.2);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
    transition: all 0.3s ease;
}

    .skill-orbit:hover {
        border-color: rgba(100, 255, 218, 0.5);
        box-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
    }

    .skill-orbit:nth-child(1) {
        width: 200px;
        height: 200px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        animation-duration: 15s;
    }

    .skill-orbit:nth-child(2) {
        width: 400px;
        height: 400px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        animation-duration: 25s;
        animation-direction: reverse;
    }

    .skill-orbit:nth-child(3) {
        width: 600px;
        height: 600px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        animation-duration: 35s;
    }

.skill-planet {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 12px;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    transform-origin: center;
}

    .skill-planet:hover {
        transform: scale(1.3) rotate(10deg);
        box-shadow: 0 0 40px rgba(255, 107, 107, 0.8);
        background: var(--secondary-color);
        color: var(--primary-color);
        font-weight: 700;
    }

.skill-center {
    position: absolute;
    top: 43%;
    left: 43%;
    transform: translate(-0%, -0%);
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    box-shadow: 0 0 40px rgba(100, 255, 218, 0.6);
    transition: all 0.3s ease;
    cursor: pointer;
}

    .skill-center:hover {
        transform: translate(-50%, -50%) scale(1.1);
        background: var(--accent-color);
        color: var(--white);
        box-shadow: 0 0 50px rgba(255, 107, 107, 0.8);
        animation: pulse 2s infinite;
    }

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 107, 107, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
    }
}

/* Experience Cards Section */
.experience-section {
    min-height: 100vh;
    background: linear-gradient(180deg, #0a1628 0%, var(--primary-color) 100%);
    padding: 100px 0;
    position: relative;
}

.experience-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.experience-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .experience-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
        transition: all 0.3s ease;
    }

    .experience-card:hover::before {
        height: 8px;
        background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    }

    .experience-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 30px 60px rgba(0,0,0,0.4);
        border-color: rgba(100, 255, 218, 0.3);
    }

.card-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.experience-card:hover .card-icon {
    transform: rotate(15deg) scale(1.2);
    color: var(--accent-color);
}

.card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.experience-card:hover .card-title {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.experience-card p {
    color: var(--text-lighter);
    transition: all 0.3s ease;
}

.experience-card:hover p {
    transform: translateX(3px);
}

/* Contact Section - The Connection */
.contact-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a1628 0%, var(--primary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 50px;
    text-align: center;
    color: var(--white);
}

.contact-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--white);
    transition: all 0.3s ease;
    display: inline-block;
}

    .contact-title:hover {
        color: var(--secondary-color);
        transform: scale(1.05);
        text-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
    }

.contact-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-lighter);
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 10px;
    display: inline-block;
}

    .contact-subtitle:hover {
        background: rgba(100, 255, 218, 0.1);
        transform: scale(1.02);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .contact-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at var(--x) var(--y), rgba(100, 255, 218, 0.1), transparent 70%);
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    .contact-card:hover::before {
        opacity: 1;
    }

    .contact-card:hover {
        transform: translateY(-10px) scale(1.02);
        background: rgba(255,255,255,0.1);
        border-color: rgba(100, 255, 218, 0.3);
        box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    }

    .contact-card h3 {
        color: var(--white);
        margin-bottom: 1rem;
        transition: all 0.3s ease;
    }

    .contact-card:hover h3 {
        color: var(--secondary-color);
        transform: translateY(-3px);
    }

.contact-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.2) rotate(10deg);
    color: var(--accent-color);
}

.contact-info {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-lighter);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-info {
    transform: translateY(3px);
}

.contact-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .contact-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: all 0.5s ease;
    }

    .contact-btn:hover::before {
        left: 100%;
    }

    .contact-btn:hover {
        background: var(--accent-color);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
    }

/* Floating elements animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Mouse follow effect for contact cards */
.contact-card {
    --x: 0;
    --y: 0;
}


/* Position classes */
.planet-001 {
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.planet-002 {
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.planet-003 {
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
}

.planet-004 {
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
}

.planet-005 {
    top: 80px;
    left: 10%;
    transform: translateX(-50%);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {

    /* Position classes */
    .planet-001 {
        top: -14px !important;
        left: 50% !important;
        transform: translateX(-50%);
    }

    .planet-002 {
        bottom: -21px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .planet-003 {
        top: 50% !important;
        right: -22px !important;
        transform: translateY(-50%);
    }

    .planet-004 {
        top: 50% !important;
        left: -20px !important;
        transform: translateY(-50%);
    }

    .planet-005 {
        top: 20px !important;
        left: 10% !important;
        transform: translateX(-50%);
    }


    .skill-center {
        position: absolute;
        top: 43%;
        left: 43%;
        transform: translate(-0%, -0%);
        width: 42px !important;
        height: 42px !important;
        background: var(--secondary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-color);
        font-size: 20px;
        box-shadow: 0 0 40px rgba(100, 255, 218, 0.6);
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .skill-planet {
        position: absolute;
        width: 40px !important;
        height: 40px !important;
        background: var(--accent-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-weight: 600;
        font-size: 7px !important;
        text-align: center;
        box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
        cursor: pointer;
        transition: all 0.3s ease;
        transform-origin: center;
    }

    /* Position classes */








    .cursor-glow {
        display: none;
    }

    .navbar {
        padding: 15px 20px;
    }

    .nav-menu {
        gap: 15px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title, .skills-title, .contact-title {
        font-size: 2rem;
    }

    .timeline-item {
        flex-direction: column !important;
    }

        .timeline-item:nth-child(even) .timeline-content {
            text-align: left;
        }

    .timeline-line {
        left: 30px;
    }

    .timeline-icon {
        left: 30px;
    }

    .skills-galaxy {
        width: 300px;
        height: 300px;
    }

    .skill-orbit:nth-child(1) {
        width: 100px;
        height: 100px;
    }

    .skill-orbit:nth-child(2) {
        width: 180px;
        height: 180px;
    }

    .skill-orbit:nth-child(3) {
        width: 250px;
        height: 250px;
    }

    .skill-planet {
        width: 60px;
        height: 60px;
        font-size: 10px;
    }
}
/*
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
    box-shadow: 0 0 800px rgba(255, 255, 255, 0.15);
    mix-blend-mode: screen;
    opacity: 0.2;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.05s linear;
}*/


.cursor-glow {
    position: fixed;
    top: 0;
    left: -10px;
    width: 200px;
    height: 200px;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient( circle at center, 
    rgba(100, 255, 218, 0.35) 20%, 
    rgba(100, 255, 218, 0.2) 40%, 
    rgba(100, 255, 218, 0.1) 70%, 
    rgba(100, 255, 218, 0.0) 100% );
    box-shadow: 0 0 60px 20px rgba(100, 255, 218, 0.15);
    mix-blend-mode: screen;
    opacity: 0.5;
    z-index: 9999;
}
