﻿@import url(spacing.css);
@import url(colors.css);
@import url(config.css);
@import url(icons/icons.css);
@import url(icons/animation.css);
@import url(shared/jigsawPlayground.css);

@font-face {
    font-family: 'Inter';
    src: url('/font/Inter-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('/font/Inter-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('/font/Inter-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('/font/Inter-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Inter';
    src: url('/font/Inter-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('/font/Inter-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('/font/Inter-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('/font/Inter-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('/font/Inter-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}


@keyframes textGlow {
    from {
        text-shadow: 
            0 0 10px rgba(0, 255, 127, 0.5),
            0 0 20px rgba(0, 255, 127, 0.3),
            0 0 30px rgba(0, 255, 127, 0.2),
            2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    to {
        text-shadow: 
            0 0 15px rgba(0, 255, 127, 0.8),
            0 0 25px rgba(0, 255, 127, 0.5),
            0 0 35px rgba(0, 255, 127, 0.3),
            2px 2px 4px rgba(0, 0, 0, 0.8);
    }
}


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    box-sizing: border-box;
    font-family: Inter;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
    overflow-x: hidden;
    display:flex;
    flex-direction: column;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
}

body {
    line-height: 1.5;
    position:relative;
    display:flex;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

.antialised {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    transition: background-color 0.2s, color 0.2s;
    background: var(--root-bg-color);
    color: var(--root-color);
    font-size: var(--root-font-size);
}

body {
    max-width: 100vw;
    padding: 0;
}

/*App*/
.app {
    position: relative;
    max-width: 100dvw;
    width: 100dvw;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    min-height: 100dvh;
}

/*Header*/
.site-header {
    height: var(--header-height);
    max-height: var(--header-height);
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-content: center;
    position: absolute;
    width: 100vw;
    top: 0px;
    left: 0px;
    border-bottom: 1px solid var(--border-color);
    padding-left: var(--root-padding);
    padding-right: 10px;
    background-color: var(--head-menu-bg-color);
}

    .site-header > div {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

        .site-header > div:first-child > img:first-child {
            height: 44px;
            margin-right: 10px;
        }

    .site-header .site-theme-button {
        margin-left: 10px;
    }

.light .site-header > div:first-child > img:first-child {
    background-color: var(--c-zinc-800);
    border-radius: 5px;
    padding: 4px;
    box-shadow: inset 0 1px 0 0 #ffffff77;
}

.site-header > div:last-child > div:first-child > a {
    margin-left: 10px;
    margin-right: 10px;
    text-decoration: none;
    color: white;
}

    .site-header > div:last-child > div:first-child > a:hover {
        color: #0a58ca;
    }

    .site-header > div:last-child > div:first-child > a > img {
        display: inline-block;
        vertical-align: bottom;
        margin-right: 5px;
    }

/*Body*/
.site-body {
    height: calc(100vh - 62px);
    overflow-y: auto;
    padding-bottom:10px;
}

    .site-body > div {
        margin: auto;
/*        width: 100dvw;
        max-width: 100dvw;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 20px;
        min-width: 1024px;*/
    }

@media screen and (min-width: 1500px) {
    .site-body > div {
        width: 1400px;
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/*Footer*/
.site-footer {
    height: 62px;
    box-shadow: 0 0 0 1px var(--border-color);
    width: 100dvw;
    top: calc(100% - 62px);
    display: flex;
    align-items: center;
    flex-flow: row;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
    z-index:100;
}

    .site-footer a:hover {
        color: #0a58ca !important;
    }

/*Menu*/
.site-menu-container {
    position: absolute;
    width: var(--menu-width);
    top: var(--menu-top);
    height: var(--menu-height);
    background-color: var(--head-menu-bg-color);
}

/*Hero*/
.site-hero {
    display: flex;
    flex-flow: row;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-top: 8.2px;
}

    .site-hero > div {
        display: flex;
        flex-direction: column;
    }

        .site-hero > div:first-child > h1 {
            margin-bottom: 10px;
            font-size: 42px;
        }

        .site-hero > div:first-child > h3 {
            font-size: 16px;
            font-weight: 300;
            color: #8597af;
        }

        .site-hero > div:first-child {
            width: 50%;
        }

        .site-hero > div:last-child {
            width: 50%;
            height: calc(100dvh - 200px);
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            flex-direction: column;
            align-items: center;
            align-content: center;
            justify-content: center;
        }

            .site-hero > div:last-child > img {
                width: 55%;
                border-radius: 16px;
                box-shadow: 0 0 15px 2px #0087ff88, inset 0 0 15px 5px #0087ff88;
                border: 2px solid #8bc5f8;
            }

.site-hero {
    position: relative;
    overflow: hidden;
    margin-top:82px;
}

    .site-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1;
    }

    .site-hero video {
        position: absolute;
        bottom: auto;
        object-fit: contain;
        z-index: 0;
    }

    .site-hero > div {
        position: relative;
        z-index: 2;
    }
    
    .site-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 1;
    }


    .site-hero video {
        position: absolute;
        top: 0;
        left: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        z-index: 0;
        filter: blur(1px) brightness(0.65);
    }

    .site-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient( 135deg, rgba(13, 17, 23, 0.75) 0%, rgba(13, 17, 23, 0.6) 50%, rgba(13, 17, 23, 0.75) 100% );
        z-index: 1;
    }

    .site-hero h1,
    .site-hero h3 {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }

.hero-tags {
    margin-top: 20px;
}

    .hero-tags > label {
        padding-left: 10px;
        padding-right: 12px;
        border: 1px solid green;
        border-radius: 100px;
        font-size: 13px;
        color: lawngreen;
        margin-right: 10px;
        white-space: nowrap;
        line-height: 28px;
    }

        .hero-tags > label > span {
            color: lawngreen;
            padding-right: 6px;
        }

.hero-tags-first {
    margin-bottom: 10px;
}

    .hero-tags-first > label {
        font-size: 1.3em;
        margin-right: 12px;
        color: #1790fc;
    }

/*Card*/
.card {
    box-shadow: var(--card-shadow);
    background-color: var(--card-bg-color);
    border-radius: var(--border-radius);
}

@media screen and (max-width: 48em) {
    .card {
        display: block;
    }
}

/*Button*/
.btn {
    border-radius: var(--btn-border-radius);
    padding-left: var(--btn-side-padding);
    padding-right: var(--btn-side-padding);
    height: var(--btn-height);
    font-size: var(--btn-font-size);
    border: var(--btn-prm-border);
    font-weight: 700;
    display: table;
}

.btn-primary {
    background-color: var(--btn-prm-bg-color);
    color: var(--btn-prm-color);
    box-shadow: var(--btn-prm-shadow);
}

    .btn-primary:active, .btn-primary:hover {
        background-color: var(--btn-prm-bg-active-color);
    }

.btn-secondary {
    background-color: var(--btn-scn-bg-color);
    color: var(--btn-scn-color);
    box-shadow: var(--btn-scn-shadow);
}

    .btn-secondary:active, .btn-secondary:hover {
        background-color: var(--btn-scn-bg-active-color);
    }

.btn-danger {
    background-color: var(--btn-dng-bg-color);
    color: var(--btn-dng-color);
    box-shadow: var(--btn-dng-shadow);
    border: var(--btn-dng-border);
}

    .btn-danger:active, .btn-danger:hover {
        background-color: var(--btn-dng-bg-active-color);
    }

@media screen and (max-width: 48em) {
    .btn-primary:hover {
        background-color: var(--btn-prm-bg-color);
    }

    .btn-primary:active {
        background-color: var(--btn-prm-bg-active-color);
    }

    .btn-secondary:hover {
        background-color: var(--btn-scn-bg-color);
    }

    .btn-secondary:active {
        background-color: var(--btn-scn-bg-active-color);
    }

    .btn-danger:hover {
        background-color: var(--btn-dng-bg-color);
    }

    .btn-danger:active {
        background-color: var(--btn-dng-bg-active-color);
    }
}

@media screen and (min-width: 48em) {
    .btn:hover {
        cursor: pointer;
    }
}

/*Select*/
select {
    background-color: var(--select-bg-color);
    height: 2.1em;
    border-radius: var(--border-radius);
    padding-left: .5rem;
    box-sizing: border-box;
    outline: none;
    border-color: var(--select-border-color);
    font-size: var(--select-font-size);
    position: relative;
    color: var(--select-color);
    box-shadow: var(--select-shadow);
}

    select option:hover {
    }

/*TextBox*/
input[type=text],
input[type=password] {
    background-color: var(--textbox-bg-color);
    height: 2.3em;
    border-radius: var(--border-radius);
    padding-left: .5rem;
    padding-right: .5rem;
    outline: none;
    border: var(--textbox-border);
    font-size: var(--textbox-font-size);
    position: relative;
    color: var(--textbox-color);
    box-shadow: var(--textbox-shadow);
    font-weight: 500;
}

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
    display: none;
}

input[type=text]:hover,
input[type=password]:hover {
    border-color: var(--textbox-hover-border-color);
}

input[type=text]:active,
input[type=text]:focus,
input[type=password]:active,
input[type=password]:focus {
    border: var(--textbox-active-border);
    outline: none;
}

.page-inner-title > h2 {
    font-weight: 300;
}

/*Pricing*/
.recommended-badge {
    position: relative;
}

    .recommended-badge::before {
        content: "RECOMMENDED";
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, #ff6b35, #f7931e);
        color: white;
        padding: 4px 16px;
        border-radius: 12px;
        font-size: 11px;
        font-weight: bold;
        letter-spacing: 0.5px;
        box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
        z-index: 10;
    }

.price-highlight {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.site-pricing {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

    .site-pricing > div {
        width: 315px;
        height: 440px;
        box-shadow: 0 0 0 1px forestgreen;
        border-radius: 16px;
        background-color: rgb(22, 28, 43);
        padding: 12px;
        position: relative;
    }

        .site-pricing > div[data-free] {
            background-color: rgb(22, 28, 43);
        }

        .site-pricing > div > img {
            border-radius: 16px;
            margin-bottom: 10px;
        }

        .site-pricing > div[data-neo] > img {
            border-radius: 16px;
            margin-bottom: 10px;
            object-fit: cover;
            object-position: 20% 30%; /* Position the focal point */
            transform: scale(1.4); /* Adjust zoom level */
            pointer-events: none;
        }

        .site-pricing > div > label {
            font-size: 1.2em;
            display: block;
        }

        .site-pricing > div[data-recommended] {
        }

        .price-price {
            vertical-align: middle;
            padding-left: 10px;
            padding-right: 10px;
            font-size: 1.15em;
            border-radius: 100px;
            display: table;
            background-color: rgb(25, 32, 49);
            box-shadow: 0 0 0 1px #272f45;
            margin-top: 10px;
        }

    .price-price > label {
        font-size: 1.2em;
        color: lawngreen;
    }

    .price-price[data-discount] > label:first-child {
        font-size: 1em;
        color: var(--c-zinc-500);
        text-decoration: line-through;
        margin-right: 10px;
    }
.site-pricing > div > a {
    width: 100%;
    position: absolute;
    bottom: 0px;
    left: 0;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    border: 1px solid forestgreen;
    height: 48px;
    background-color: forestgreen;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.25em;
    text-align: center;
    text-decoration: none;
    color: white;
    line-height: 48px;
}

    .site-pricing > div > a:hover {
        background-color: #33b733;
    }

.site-pricing > div[data-recommended] > a {
    width: 100%;
    position: absolute;
    bottom: 0px;
    left: 0;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    border: 1px solid #ff6b35;
    height: 48px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    cursor: pointer;
    font-weight: 500;
    font-size: 1.25em;
    text-align: center;
    text-decoration: none;
    color: white;
    line-height: 48px;
}

    .site-pricing > div[data-recommended] > a:hover {
        background: linear-gradient(135deg, #ff7f50, #ff6b35);
    }

.m2-jigsaw-shape-source-count {
    left: 253px;
    top: 143px;
    position: absolute;
    text-align: right;
    width: 20px;
    pointer-events: none;
}

.site-payment-methods {
    height: 30px;
    width: 300px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    bottom: 15px;
    right: 200px;
}

    .site-payment-methods img {
        transition: linear transform 0.1s;
    }

        .site-payment-methods img:hover {
            transform: scale(1.2);
        }

.site-download-wrapper .donwload-button {
    border-radius: 100px;
    border: 1px solid lawngreen;
    background-color: green;
    padding: 5px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 1.3rem;
    cursor: pointer;
    text-decoration: none;
    color: white;
}

    .site-download-wrapper .donwload-button:hover {
        background-color: lawngreen;
        color: black;
    }

.sub-hero {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: -100px;
    padding-top: 20px;
}

    .sub-hero > div {
        width: 50%;
    }

        .sub-hero > div > div:first-child {
            font-size: 32px;
            text-align: center;
            margin-bottom: 20px;
            font-weight: 800;
            justify-content: center;
        }

        .sub-hero > div > div:last-child {
            font-size: 16px;
            width: 350px;
            display: flex;
            flex-direction: column;
            margin-left: auto;
            margin-right: auto;
        }

            .sub-hero > div > div:last-child > img {
                border-radius: 16px;
                box-shadow: 0 0 15px 2px #0087ff88, inset 0 0 15px 5px #0087ff88;
                border: 2px solid #8bc5f8;
                margin-bottom: 10px;
            }

            .sub-hero > div > div:last-child > ul {
                font-size: 16px;
                text-align: left;
            }

                .sub-hero > div > div:last-child > ul > li {
                    list-style-position: inside;
                }


@media screen and (max-height: 1100px) {
    .site-hero {
        height: 670px;
        padding-top: 30px;
    }

        .site-hero img {
            width: 380px !important;
        }

    .sub-hero {
        margin-top: -40px;
    }
}

.card-glow {
    box-shadow: 0 0 0 2px #ff6b35, 0 0 20px rgba(255, 107, 53, 0.4), 0 0 40px rgba(255, 107, 53, 0.2), 0 8px 32px rgba(255, 107, 53, 0.2) !important;
    transform: scale(1.02);
}



/*
        <div class="d-tabs">
            <div class="d-tabs-header" id="dtabs-example">
                <div class="d-tab" data-bind="dTab">Tab Name</div>
                <div class="d-tab" data-bind="dTab">Tab Name 2</div>
            </div>
            <div class="d-tabs-container">
                <div class="d-tab-body">
                    tab 1 content
                </div>
                <div class="d-tab-body">
                    tab 2 content
                </div>
            </div>
        </div>


*/

.d-tabs {
}

    .d-tabs .d-tabs-header {
    }

        .d-tabs .d-tabs-header .d-tab {
            display: inline-block;
            padding: 10px 20px;
            cursor: pointer;
            border-bottom: 2px solid transparent;
            font-weight: 500;
            color: var(--root-color);
        }

.site-pricing-wrapper .d-tabs-header {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 3px;
    gap: 2px;
    width: fit-content;
    backdrop-filter: blur(10px);
}

.site-pricing-wrapper .d-tab {
    padding: 12px 24px;
    border-radius: 22px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: none;
    white-space: nowrap;
}

    .site-pricing-wrapper .d-tab[data-d-tab-active="true"] {
        background: #22c55e;
        color: white;
        box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    }

    .site-pricing-wrapper .d-tab[data-d-tab-active="false"]:hover {
        color: white;
        background: rgba(255, 255, 255, 0.1);
    }

.pricing-gradient-bg {
    background: linear-gradient(135deg, rgba(13, 41, 70, 0.4) 0%, rgba(22, 78, 99, 0.6) 25%, rgba(15, 23, 42, 0.8) 50%, rgba(30, 41, 59, 0.6) 75%, rgba(13, 41, 70, 0.4) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}




        /* GITHUB ACCENT GLOW */
        .github-accent {
            font-size: 3rem;
            font-weight: 600;
            color: #58a6ff;
            text-shadow: 
                0 0 20px rgba(88, 166, 255, 0.4),
                0 2px 4px rgba(0, 0, 0, 0.3);
            animation: subtle-glow 3s ease-in-out infinite alternate;
            letter-spacing: -0.02em;
        }

        /* SUCCESS GREEN */
        .github-success {
            font-size: 2.8rem;
            font-weight: 500;
            color: #3fb950;
            text-shadow: 
                0 0 15px rgba(63, 185, 80, 0.3),
                0 1px 3px rgba(0, 0, 0, 0.4);
            animation: success-pulse 2s ease-in-out infinite;
            position: relative;
        }

        .github-success::before {
            content: '✓';
            position: absolute;
            left: -50px;
            top: 50%;
            transform: translateY(-50%);
            color: #3fb950;
            opacity: 0.7;
            animation: checkmark-appear 2s ease-in-out infinite;
        }

        /* WARNING ORANGE */
        .github-warning {
            font-size: 2.6rem;
            font-weight: 500;
            color: #d29922;
            text-shadow: 
                0 0 12px rgba(210, 153, 34, 0.3),
                0 1px 2px rgba(0, 0, 0, 0.5);
            animation: warning-flash 3s ease-in-out infinite;
            background: linear-gradient(135deg, #d29922, #f2cc60);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* DANGER RED */
        .github-danger {
            font-size: 2.7rem;
            font-weight: 600;
            color: #f85149;
            text-shadow: 
                0 0 18px rgba(248, 81, 73, 0.4),
                0 2px 4px rgba(0, 0, 0, 0.3);
            animation: danger-throb 2.5s ease-in-out infinite;
            position: relative;
        }

        /* PURPLE MERGE */
        .github-purple {
            font-size: 2.9rem;
            font-weight: 500;
            color: #a5a5ff;
            text-shadow: 
                0 0 16px rgba(165, 165, 255, 0.3),
                0 1px 3px rgba(0, 0, 0, 0.4);
            animation: merge-flow 4s linear infinite;
            background: linear-gradient(90deg, #a5a5ff, #8b5cf6, #a5a5ff);
            background-size: 200% 100%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* NEUTRAL GRAY WITH BORDER */
        .github-neutral {
            font-size: 2.5rem;
            font-weight: 400;
            color: #f0f6fc;
            text-shadow: 
                0 1px 2px rgba(0, 0, 0, 0.6),
                -1px -1px 0 #21262d,
                1px -1px 0 #21262d,
                -1px 1px 0 #21262d,
                1px 1px 0 #21262d;
            animation: subtle-hover 3s ease-in-out infinite;
            border: 1px solid #30363d;
            padding: 20px 30px;
            border-radius: 8px;
            background: rgba(13, 17, 23, 0.8);
            backdrop-filter: blur(10px);
        }

        /* CODE STYLE */
        .github-code {
            font-size: 2.3rem;
            font-weight: 500;
            font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
            color: #79c0ff;
            background: #161b22;
            padding: 20px 25px;
            border-radius: 6px;
            border: 1px solid #30363d;
            text-shadow: 
                0 0 10px rgba(121, 192, 255, 0.3),
                0 1px 2px rgba(0, 0, 0, 0.5);
            animation: code-typing 4s ease-in-out infinite;
            position: relative;
            overflow: hidden;
        }

        .github-code::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(121, 192, 255, 0.1), transparent);
            animation: code-scan 3s linear infinite;
        }

        /* PREMIUM GRADIENT */
        .github-premium {
            font-size: 3.2rem;
            font-weight: 700;
            background: linear-gradient(135deg, #ffd700, #ffed4e, #f9e71e, #f7dd0c);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 
                0 0 20px rgba(255, 215, 0, 0.4),
                0 3px 6px rgba(0, 0, 0, 0.3);
            animation: premium-shine 3s ease-in-out infinite;
            position: relative;
        }

        .github-premium::before {
            content: '★';
            position: absolute;
            left: -60px;
            top: 50%;
            transform: translateY(-50%);
            color: #ffd700;
            animation: star-twinkle 2s ease-in-out infinite;
        }

        /* MODERN GLASSMORPHISM */
        .github-glass {
            font-size: 2.8rem;
            font-weight: 500;
            color: rgba(240, 246, 252, 0.9);
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 25px 35px;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            text-shadow: 
                0 1px 3px rgba(0, 0, 0, 0.3);
            animation: glass-float 4s ease-in-out infinite;
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        @keyframes subtle-glow {
            0% { 
                text-shadow: 
                    0 0 20px rgba(88, 166, 255, 0.4),
                    0 2px 4px rgba(0, 0, 0, 0.3);
            }
            100% { 
                text-shadow: 
                    0 0 30px rgba(88, 166, 255, 0.6),
                    0 2px 4px rgba(0, 0, 0, 0.3);
            }
        }

        @keyframes success-pulse {
            0%, 100% { 
                filter: brightness(1);
                transform: scale(1);
            }
            50% { 
                filter: brightness(1.1);
                transform: scale(1.01);
            }
        }

        @keyframes checkmark-appear {
            0%, 70% { opacity: 0; transform: translateY(-50%) scale(0.8); }
            100% { opacity: 0.7; transform: translateY(-50%) scale(1); }
        }

        @keyframes warning-flash {
            0%, 100% { filter: brightness(1); }
            50% { filter: brightness(1.2); }
        }

        @keyframes danger-throb {
            0%, 100% { 
                transform: scale(1);
                filter: brightness(1);
            }
            50% { 
                transform: scale(1.01);
                filter: brightness(1.15);
            }
        }

        @keyframes merge-flow {
            0% { background-position: 0% 50%; }
            100% { background-position: 200% 50%; }
        }

        @keyframes subtle-hover {
            0%, 100% { 
                transform: translateY(0);
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            }
            50% { 
                transform: translateY(-2px);
                box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
            }
        }

        @keyframes code-typing {
            0%, 90% { opacity: 1; }
            95% { opacity: 0.7; }
            100% { opacity: 1; }
        }

        @keyframes code-scan {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        @keyframes premium-shine {
            0% { 
                background-position: 0% 50%;
                filter: brightness(1);
            }
            50% { 
                background-position: 100% 50%;
                filter: brightness(1.2);
            }
            100% { 
                background-position: 0% 50%;
                filter: brightness(1);
            }
        }

        @keyframes star-twinkle {
            0%, 100% { 
                opacity: 0.6;
                transform: translateY(-50%) rotate(0deg) scale(1);
            }
            50% { 
                opacity: 1;
                transform: translateY(-50%) rotate(180deg) scale(1.2);
            }
        }

        @keyframes glass-float {
            0%, 100% { 
                transform: translateY(0);
                box-shadow: 
                    0 8px 32px rgba(0, 0, 0, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.1);
            }
            50% { 
                transform: translateY(-5px);
                box-shadow: 
                    0 12px 40px rgba(0, 0, 0, 0.4),
                    inset 0 1px 0 rgba(255, 255, 255, 0.15);
            }
        }

        .style-label {
            color: #7d8590;
            font-size: 0.9rem;
            margin-top: 15px;
            font-weight: normal;
            opacity: 0.8;
        }
