:root {

    --background: #06070b;
    --background-2: #0a0c12;

    --surface: #0e1119;
    --surface-2: #131722;

    --text: #f5f7ff;
    --muted: #8c93a5;

    --purple: #7c5cff;
    --purple-bright: #9a82ff;

    --cyan: #00e5ff;

    --green: #00f5a0;

    --border: rgba(255,255,255,.08);

    --container: 1400px;

}


* {

    box-sizing: border-box;

    margin: 0;

    padding: 0;

}


html {

    scroll-behavior: smooth;

}


body {

    min-height: 100vh;

    overflow-x: hidden;

    background: var(--background);

    color: var(--text);

    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

}


body::selection {

    background: var(--purple);

    color: white;

}


a {

    color: inherit;

    text-decoration: none;

}


button,
input,
textarea {

    font: inherit;

}


button {

    cursor: pointer;

}


/* =====================================================
   BACKGROUND
===================================================== */

.background-grid {

    position: fixed;

    inset: 0;

    z-index: -10;

    pointer-events: none;

    opacity: .25;

    background-image:

        linear-gradient(
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );

    background-size: 65px 65px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 80%
        );

}


.background-glow {

    position: fixed;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    filter: blur(120px);

    pointer-events: none;

    z-index: -9;

}


.glow-purple {

    top: -250px;

    left: 10%;

    background:
        rgba(124,92,255,.12);

}


.glow-cyan {

    right: -250px;

    top: 35%;

    background:
        rgba(0,229,255,.055);

}


#noise {

    position: fixed;

    inset: 0;

    z-index: 9000;

    pointer-events: none;

    opacity: .025;

    background-image:

        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");

}


/* =====================================================
   HEADER
===================================================== */

.site-header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 76px;

    z-index: 1000;

    background:
        rgba(6,7,11,.75);

    border-bottom:
        1px solid
        var(--border);

    backdrop-filter:
        blur(18px);

}


.nav-container {

    width: min(
        var(--container),
        calc(100% - 50px)
    );

    height: 100%;

    margin: auto;

    display: flex;

    align-items: center;

}


.brand {

    display: flex;

    align-items: center;

    gap: 11px;

    font-weight: 950;

    letter-spacing: 4px;

}


.brand-symbol {

    display: grid;

    place-items: center;

    width: 34px;

    height: 34px;

    border:
        1px solid
        var(--purple);

    border-radius: 9px;

    color: var(--cyan);

    font-size: 16px;

    box-shadow:
        0 0 25px
        rgba(124,92,255,.18);

}


.brand-name {

    font-size: 21px;

}


.main-navigation {

    display: flex;

    align-items: center;

    gap: 28px;

    margin-left: auto;

}


.nav-link {

    position: relative;

    color: var(--muted);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1.7px;

    text-transform: uppercase;

    transition: .25s;

}


.nav-link::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 1px;

    background: var(--cyan);

    transition: .25s;

}


.nav-link:hover {

    color: white;

}


.nav-link:hover::after {

    width: 100%;

}


.ai-link {

    color: var(--cyan);

}


.header-button {

    width: 40px;

    height: 40px;

    margin-left: 28px;

    border:
        1px solid
        var(--border);

    border-radius: 10px;

    background:
        rgba(255,255,255,.025);

    color: white;

}


.search-icon {

    font-size: 18px;

    transform:
        rotate(-25deg);

    display: inline-block;

}


.mobile-menu-button {

    display: none;

}


/* =====================================================
   MOBILE NAV
===================================================== */

.mobile-navigation {

    position: fixed;

    top: 76px;

    left: 0;

    width: 100%;

    z-index: 999;

    display: none;

    padding: 25px;

    background:
        rgba(6,7,11,.97);

    border-bottom:
        1px solid
        var(--border);

}


.mobile-navigation.open {

    display: flex;

    flex-direction: column;

    gap: 20px;

}


.mobile-navigation a {

    font-size: 14px;

    font-weight: 900;

    letter-spacing: 2px;

    text-transform: uppercase;

}


/* =====================================================
   HERO
===================================================== */

.hero-section {

    position: relative;

    min-height: 900px;

    display: grid;

    place-items: center;

    padding:
        130px 25px 100px;

    overflow: hidden;

}


.hero-content {

    position: relative;

    z-index: 3;

    max-width: 1000px;

    text-align: center;

}


.hero-eyebrow {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 9px;

    margin-bottom: 25px;

    color: var(--cyan);

    font-size: 10px;

    font-weight: 950;

    letter-spacing: 4px;

}


.status-dot {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 15px
        var(--green);

}


.hero-title {

    font-size:
        clamp(
            65px,
            11vw,
            155px
        );

    line-height: .82;

    letter-spacing: -8px;

    font-weight: 950;

}


.hero-title span {

    color: var(--purple);

    text-shadow:
        0 0 60px
        rgba(124,92,255,.25);

}


.hero-description {

    max-width: 680px;

    margin:
        38px auto;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.75;

}


.hero-buttons {

    display: flex;

    justify-content: center;

    gap: 12px;

}


.button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding:
        15px 21px;

    border-radius: 10px;

    font-size: 10px;

    font-weight: 950;

    letter-spacing: 1.7px;

    text-transform: uppercase;

    transition:
        transform .25s,
        box-shadow .25s,
        background .25s;

}


.button:hover {

    transform:
        translateY(-3px);

}


.button-primary {

    background: var(--purple);

    color: white;

    box-shadow:
        0 10px 35px
        rgba(124,92,255,.2);

}


.button-primary:hover {

    box-shadow:
        0 15px 50px
        rgba(124,92,255,.4);

}


.button-secondary {

    border:
        1px solid
        var(--border);

    background:
        rgba(255,255,255,.025);

}


.button-secondary:hover {

    background:
        rgba(255,255,255,.07);

}


.hero-scroll {

    position: absolute;

    bottom: 35px;

    left: 50%;

    transform:
        translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 7px;

    color: #555c6c;

    font-size: 9px;

    font-weight: 950;

    letter-spacing: 3px;

}


.hero-orbit {

    position: absolute;

    border:
        1px solid
        rgba(124,92,255,.08);

    border-radius: 50%;

    pointer-events: none;

}


.orbit-one {

    width: 700px;

    height: 700px;

}


.orbit-two {

    width: 1100px;

    height: 1100px;

    border-color:
        rgba(0,229,255,.035);

}


/* =====================================================
   SECTIONS
===================================================== */

.content-section {

    width: min(
        var(--container),
        calc(100% - 50px)
    );

    margin: auto;

    padding:
        120px 0;

}


.section-dark {

    width: 100%;

    padding-left:
        max(
            25px,
            calc(
                (100% - var(--container))
                / 2
            )
        );

    padding-right:
        max(
            25px,
            calc(
                (100% - var(--container))
                / 2
            )
        );

    background:
        var(--background-2);

    border-top:
        1px solid
        var(--border);

    border-bottom:
        1px solid
        var(--border);

}


.section-heading {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    margin-bottom: 40px;

}


.section-label {

    color: var(--cyan);

    font-size: 9px;

    font-weight: 950;

    letter-spacing: 3px;

}


.section-heading h2 {

    margin-top: 10px;

    font-size:
        clamp(
            38px,
            5vw,
            62px
        );

    line-height: .95;

    letter-spacing: -3px;

}


.section-heading h2 span {

    color: var(--purple);

}


.section-number {

    color:
        rgba(255,255,255,.12);

    font-size: 65px;

    font-weight: 950;

    line-height: .8;

}


/* =====================================================
   ARTICLE CARDS
===================================================== */

.articles-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

}


.article-card {

    position: relative;

    overflow: hidden;

    min-height: 350px;

    border:
        1px solid
        var(--border);

    border-radius: 16px;

    background:
        var(--surface);

    transition:
        transform .3s,
        border-color .3s,
        box-shadow .3s;

}


.article-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(124,92,255,.45);

    box-shadow:
        0 25px 70px
        rgba(0,0,0,.4);

}


.article-image {

    position: relative;

    height: 190px;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 75% 30%,
            rgba(124,92,255,.45),
            transparent 25%
        ),

        linear-gradient(
            135deg,
            #1b1e2d,
            #0b0d13
        );

}


.article-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.45),
            transparent
        );

}


.article-content {

    padding: 22px;

}


.article-category {

    color: var(--cyan);

    font-size: 9px;

    font-weight: 950;

    letter-spacing: 2px;

}


.article-card h3 {

    margin:
        10px 0;

    font-size: 20px;

    line-height: 1.2;

}


.article-card p {

    color: var(--muted);

    font-size: 13px;

    line-height: 1.65;

}


.article-meta {

    display: flex;

    justify-content: space-between;

    margin-top: 18px;

    color: #5f6675;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1px;

}


/* =====================================================
   GAMES
===================================================== */

.games-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;

}


.game-card {

    position: relative;

    padding: 25px;

    min-height: 190px;

    border:
        1px solid
        var(--border);

    border-radius: 14px;

    background:
        var(--surface);

    transition: .3s;

}


.game-card:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(0,229,255,.3);

}


.game-status {

    color: var(--green);

    font-size: 8px;

    font-weight: 950;

    letter-spacing: 2px;

}


.game-card h3 {

    margin-top: 25px;

    font-size: 22px;

}


.game-developer {

    margin-top: 7px;

    color: var(--muted);

    font-size: 12px;

}


.game-platforms {

    display: flex;

    flex-wrap: wrap;

    gap: 6px;

    margin-top: 20px;

}


.platform {

    padding:
        5px 8px;

    border:
        1px solid
        var(--border);

    border-radius: 5px;

    color: #777e8e;

    font-size: 8px;

    font-weight: 900;

}


/* =====================================================
   UPDATES
===================================================== */

.updates-container {

    display: grid;

    gap: 10px;

}


.update-card {

    display: grid;

    grid-template-columns:
        120px 1fr auto;

    align-items: center;

    gap: 20px;

    padding: 20px;

    border:
        1px solid
        var(--border);

    border-radius: 12px;

    background:
        rgba(255,255,255,.018);

    transition: .25s;

}


.update-card:hover {

    border-color:
        rgba(124,92,255,.3);

    background:
        rgba(124,92,255,.04);

}


.update-date {

    color: #666d7d;

    font-size: 9px;

    font-weight: 950;

}


.update-title {

    font-weight: 850;

}


.update-source {

    color: var(--cyan);

    font-size: 9px;

    font-weight: 900;

}


/* =====================================================
   RELEASE
===================================================== */

.release-banner {

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding:
        55px;

    border:
        1px solid
        rgba(124,92,255,.25);

    border-radius: 20px;

    background:

        radial-gradient(
            circle at 10% 50%,
            rgba(124,92,255,.17),
            transparent 35%
        ),

        rgba(255,255,255,.015);

}


.release-banner h3 {

    max-width: 700px;

    margin:
        12px 0 15px;

    font-size:
        clamp(
            30px,
            4vw,
            52px
        );

    line-height: 1;

    letter-spacing: -2px;

}


.release-banner p {

    max-width: 650px;

    color: var(--muted);

    line-height: 1.7;

}


.release-arrow {

    font-size: 50px;

    color: var(--purple);

}


.release-pulse {

    position: absolute;

    top: -150px;

    right: -100px;

    width: 350px;

    height: 350px;

    border-radius: 50%;

    background:
        rgba(0,229,255,.05);

    filter: blur(60px);

}


/* =====================================================
   AI
===================================================== */

.ai-section {

    position: relative;

    overflow: hidden;

    padding:
        140px 25px;

    border-top:
        1px solid
        var(--border);

}


.ai-background {

    position: absolute;

    inset: 0;

    background:

        radial-gradient(
            circle at 20% 50%,
            rgba(124,92,255,.16),
            transparent 35%
        ),

        radial-gradient(
            circle at 90% 30%,
            rgba(0,229,255,.05),
            transparent 25%
        );

}


.ai-content {

    position: relative;

    z-index: 2;

    width: min(
        1000px,
        100%
    );

    margin: auto;

}


.ai-badge {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--cyan);

    font-size: 10px;

    font-weight: 950;

    letter-spacing: 3px;

}


.ai-badge-dot {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 15px
        var(--green);

}


.ai-content h2 {

    margin:
        15px 0 25px;

    font-size:
        clamp(
            45px,
            8vw,
            100px
        );

    line-height: .85;

    letter-spacing: -5px;

}


.ai-content h2 span {

    color: var(--purple);

}


.ai-content > p {

    max-width: 650px;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.7;

    margin-bottom: 40px;

}


.ai-demo {

    padding: 25px;

    border:
        1px solid
        rgba(124,92,255,.25);

    border-radius: 18px;

    background:
        rgba(7,8,13,.8);

    box-shadow:
        0 30px 100px
        rgba(0,0,0,.25);

}


.ai-demo-header {

    display: flex;

    justify-content: space-between;

    margin-bottom: 15px;

    color: #707789;

    font-size: 9px;

    font-weight: 950;

    letter-spacing: 2px;

}


.ai-demo-header span:last-child {

    color: var(--green);

}


#aiInput {

    width: 100%;

    min-height: 220px;

    resize: vertical;

    padding: 20px;

    border:
        1px solid
        var(--border);

    border-radius: 10px;

    outline: none;

    background:
        #080a10;

    color: white;

    line-height: 1.6;

}


#aiInput:focus {

    border-color:
        rgba(124,92,255,.5);

}


.ai-output {

    margin-top: 25px;

    padding: 20px;

    border:
        1px solid
        var(--border);

    border-radius: 10px;

    color: var(--muted);

    line-height: 1.7;

}


/* =====================================================
   LOADING
===================================================== */

.loading-card {

    padding: 35px;

    border:
        1px solid
        var(--border);

    border-radius: 12px;

    color: var(--muted);

}


/* =====================================================
   FOOTER
===================================================== */

.site-footer {

    padding:
        65px 25px 25px;

    border-top:
        1px solid
        var(--border);

}


.footer-container {

    width: min(
        var(--container),
        100%
    );

    margin: auto;

    display: flex;

    justify-content: space-between;

}


.footer-brand p {

    margin-top: 13px;

    color: var(--muted);

    font-size: 12px;

}


.footer-links {

    display: flex;

    gap: 80px;

}


.footer-links strong {

    display: block;

    margin-bottom: 15px;

    font-size: 9px;

    letter-spacing: 2px;

}


.footer-links a {

    display: block;

    margin:
        9px 0;

    color: var(--muted);

    font-size: 12px;

}


.footer-links a:hover {

    color: white;

}


.footer-bottom {

    width: min(
        var(--container),
        100%
    );

    margin:
        50px auto 0;

    padding-top: 18px;

    display: flex;

    justify-content: space-between;

    border-top:
        1px solid
        var(--border);

    color: #555c6c;

    font-size: 9px;

}


/* =====================================================
   SEARCH
===================================================== */

.search-overlay {

    position: fixed;

    inset: 0;

    z-index: 5000;

    display: none;

    place-items: center;

    padding: 25px;

    background:
        rgba(0,0,0,.78);

    backdrop-filter:
        blur(18px);

}


.search-overlay.open {

    display: grid;

}


.search-box {

    position: relative;

    width:
        min(
            750px,
            100%
        );

    padding: 40px;

    border:
        1px solid
        var(--border);

    border-radius: 18px;

    background:
        var(--surface);

}


.close-search {

    position: absolute;

    top: 15px;

    right: 20px;

    border: 0;

    background: transparent;

    color: white;

    font-size: 28px;

}


.search-box h2 {

    margin:
        12px 0 25px;

    font-size: 42px;

    letter-spacing: -2px;

}


#searchInput {

    width: 100%;

    padding: 17px;

    border:
        1px solid
        var(--border);

    border-radius: 10px;

    outline: none;

    background:
        #080a10;

    color: white;

}


.search-results {

    margin-top: 20px;

}


.search-result {

    padding:
        15px 0;

    border-bottom:
        1px solid
        var(--border);

}


.search-result strong {

    display: block;

}


.search-result span {

    color: var(--muted);

    font-size: 12px;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width: 900px) {

    .main-navigation {

        display: none;

    }


    .mobile-menu-button {

        display: flex;

        flex-direction: column;

        justify-content: center;

        gap: 5px;

        width: 40px;

        height: 40px;

        margin-left: 10px;

        border:
            1px solid
            var(--border);

        border-radius: 9px;

        background: transparent;

    }


    .mobile-menu-button span {

        width: 17px;

        height: 1px;

        margin: auto;

        background: white;

    }


    .header-button {

        margin-left: auto;

    }


    .articles-grid {

        grid-template-columns:
            1fr;

    }


    .games-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


}


@media(max-width: 650px) {

    .nav-container {

        width:
            calc(100% - 30px);

    }


    .hero-section {

        min-height: 750px;

    }


    .hero-title {

        letter-spacing: -5px;

    }


    .hero-description {

        font-size: 15px;

    }


    .hero-buttons {

        flex-direction: column;

    }


    .button {

        width: 100%;

    }


    .content-section {

        width:
            calc(100% - 30px);

        padding:
            85px 0;

    }


    .section-dark {

        padding-left: 15px;

        padding-right: 15px;

    }


    .section-heading {

        align-items: flex-start;

    }


    .section-number {

        display: none;

    }


    .games-grid {

        grid-template-columns:
            1fr;

    }


    .update-card {

        grid-template-columns:
            1fr;

        gap: 8px;

    }


    .release-banner {

        padding: 30px;

    }


    .release-arrow {

        display: none;

    }


    .footer-container {

        flex-direction: column;

        gap: 40px;

    }


    .footer-links {

        gap: 50px;

    }


    .footer-bottom {

        flex-direction: column;

        gap: 8px;

    }


    .search-box {

        padding: 28px;

    }

}

/* =========================================================
   KORVA CUSTOM CURSOR
   ========================================================= */

/*
   Force the browser's normal webpage cursor OFF.
   This applies to the entire KORVA website.
*/
html,
html *,
body,
body * {
    cursor: none !important;
}


/* ---------------------------------------------------------
   CURSOR CORE
   --------------------------------------------------------- */

#korva-cursor {

    position: fixed;

    left: 0;
    top: 0;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    pointer-events: none;

    z-index: 2147483647;

    transform:
        translate3d(-50%, -50%, 0);

    /*
       Bright white center so the cursor remains visible
       against both dark and bright parts of the website.
    */

    background: #ffffff;

    /*
       Dark separation around the white core.
       This is what prevents the cursor from disappearing
       into bright backgrounds.
    */

    border: 2px solid rgba(10, 8, 20, 0.9);

    /*
       Multiple glow layers.
    */

    box-shadow:

        0 0 0 1px rgba(255, 255, 255, 0.9),

        0 0 5px rgba(255, 255, 255, 1),

        0 0 12px rgba(124, 92, 255, 1),

        0 0 24px rgba(124, 92, 255, 0.75),

        0 0 40px rgba(124, 92, 255, 0.35);

    will-change: transform;

    transition:
        width 0.15s ease,
        height 0.15s ease,
        box-shadow 0.15s ease;

}


/* ---------------------------------------------------------
   OUTER KORVA RING
   --------------------------------------------------------- */

#korva-cursor-ring {

    position: fixed;

    left: 0;
    top: 0;

    width: 40px;
    height: 40px;

    border-radius: 50%;

    pointer-events: none;

    z-index: 2147483646;

    transform:
        translate3d(-50%, -50%, 0);

    /*
       Dark outer separation.
    */

    border:
        1px solid rgba(10, 8, 20, 0.85);

    /*
       Bright purple inner line.
    */

    box-shadow:

        0 0 0 1px rgba(124, 92, 255, 0.75),

        0 0 8px rgba(124, 92, 255, 0.85),

        0 0 18px rgba(124, 92, 255, 0.45);

    background:
        rgba(124, 92, 255, 0.025);

    will-change:
        transform,
        width,
        height,
        border-color,
        box-shadow;

    transition:
        width 0.25s cubic-bezier(.16, 1, .3, 1),
        height 0.25s cubic-bezier(.16, 1, .3, 1),
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;

}


/* ---------------------------------------------------------
   INNER GLOW
   --------------------------------------------------------- */

#korva-cursor-ring::after {

    content: "";

    position: absolute;

    inset: 7px;

    border-radius: 50%;

    background: rgba(124, 92, 255, 0.08);

    box-shadow:
        inset 0 0 10px rgba(124, 92, 255, 0.25);

    opacity: 0.8;

}


/* ---------------------------------------------------------
   HOVERING INTERACTIVE ELEMENTS
   --------------------------------------------------------- */

body.korva-cursor-hover #korva-cursor-ring {

    width: 48px;
    height: 48px;

    border-color: #9b86ff;

    background:
        rgba(124, 92, 255, 0.055);

    box-shadow:

        0 0 0 1px rgba(8, 6, 18, 0.9),

        0 0 0 2px rgba(124, 92, 255, 0.65),

        0 0 12px rgba(124, 92, 255, 0.9),

        0 0 28px rgba(124, 92, 255, 0.55);

}


/* Make the core react too */

body.korva-cursor-hover #korva-cursor {

    width: 11px;
    height: 11px;

    background: #ffffff;

    border-color: #080612;

    box-shadow:

        0 0 0 1px #ffffff,

        0 0 7px #ffffff,

        0 0 14px #7c5cff,

        0 0 28px #7c5cff,

        0 0 48px rgba(124, 92, 255, 0.65);

}


/* ---------------------------------------------------------
   ARTICLE / GAME CARD HOVER
   --------------------------------------------------------- */

body.korva-cursor-card #korva-cursor-ring {

    width: 58px;
    height: 58px;

    border-color: rgba(124, 92, 255, 0.85);

}


/* ---------------------------------------------------------
   CLICK PULSE
   --------------------------------------------------------- */

.korva-click {

    position: fixed;

    left: 0;
    top: 0;

    width: 10px;
    height: 10px;

    border: 1px solid #7c5cff;

    border-radius: 50%;

    pointer-events: none;

    z-index: 2147483645;

    transform: translate3d(-50%, -50%, 0);

    animation: korvaClick 0.65s cubic-bezier(.16, 1, .3, 1) forwards;

}


@keyframes korvaClick {

    0% {

        width: 8px;
        height: 8px;

        opacity: 1;

        border-width: 2px;

        box-shadow:
            0 0 0 rgba(124, 92, 255, 0);

    }

    45% {

        opacity: 0.8;

        box-shadow:
            0 0 20px rgba(124, 92, 255, 0.7);

    }

    100% {

        width: 110px;
        height: 110px;

        opacity: 0;

        border-width: 1px;

        box-shadow:
            0 0 35px rgba(124, 92, 255, 0);

    }

}


/* ---------------------------------------------------------
   TRAIL PARTICLES
   --------------------------------------------------------- */

.korva-trail {

    position: fixed;

    left: 0;
    top: 0;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    pointer-events: none;

    z-index: 2147483644;

    transform: translate3d(-50%, -50%, 0);

    background: rgba(124, 92, 255, 0.8);

    box-shadow:
        0 0 8px rgba(124, 92, 255, 0.65);

    opacity: 0;

    will-change: transform, opacity;

}


/* ---------------------------------------------------------
   TEXT / INPUT EXCEPTION
   --------------------------------------------------------- */

input,
textarea,
select,
[contenteditable="true"] {

    cursor: none !important;

}


/* ---------------------------------------------------------
   TOUCH DEVICES
   --------------------------------------------------------- */

@media (pointer: coarse) {

    html,
    html *,
    body,
    body * {

        cursor: auto !important;

    }

    #korva-cursor,
    #korva-cursor-ring,
    .korva-trail,
    .korva-click {

        display: none !important;

    }

}