@import url(variables.css);
@import url(../assets/quickCSS/fonts.css);
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');
@import url(../assets/webfont/soneIconPack/css/fontello.css);
@import url(animations.css);
@import url(projects.css);
@import url(updates.css);
@import url(plans.css);

/* Custom scrollbar styles są teraz w assets/customScrollbar/customScrollbar.css */
/* Tutaj można nadpisać zmienne scrollbara: */
:root {
    --scrollbar-track-bg: var(--accent-gray-light);
    --scrollbar-thumb-bg: var(--accent-blue);
}

html {
    scroll-behavior: smooth;
    height: 100%;
    overflow-y: auto;
}

body {
    background-color: var(--bg-main);
    margin: auto;
}

.goToTop {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-gradient-start) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 6px 16px -2px var(--accent-shadow-medium);
    cursor: pointer;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 10;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;

    & span {
        font-size: 38px;
        color: var(--text-light);
        font-variation-settings:
            'FILL'1;
    }

    &:hover {
        transform: translateY(-5px);
        box-shadow: 0px 10px 20px -4px var(--accent-shadow-medium);
    }

    &:active {
        transform: translateY(0px);
        box-shadow: none;
        scale: 0.98;
    }
}

.goToTop.visible {
    opacity: 1;
    visibility: visible;
}

&

/* loaders */
    {
    .mainContentLoader.loaderOverlay {
        opacity: 0;
        transition: all 0.3s ease;
        backdrop-filter: blur(15px);
        background-color: rgba(var(--bg-main-rgb), 0.5);
    }

    .wholePageLoader.loaderOverlay {
        opacity: 1;
        transition: all 0.3s ease;
        backdrop-filter: blur(15px);
        background-color: var(--bg-dark);
    }
}

header {
    background-color: var(--bg-main);
    padding: 20px 40px;
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 0;

    & div {
        display: flex;
        align-items: center;
    }

    & img {
        height: 80px;
    }

    & h2 {
        font-family: Varela;
        font-size: 24px;
        color: var(--text-gray-dark);
        margin: 0;
        padding: 0;
        font-weight: bold;

        & .icon-sone-logo {
            font-size: 24px;
            margin: -5px;
            color: transparent;
            background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-gradient-start) 100%);
            background-clip: text;
        }
    }

    & nav {
        display: flex;
        gap: 20px;
        background-color: var(--accent-gray-light);
        padding: 7.5px;
        border-radius: 24px;

        & button {
            background: none;
            border: none;
            font-family: Rubik;
            font-size: 16px;
            transition: all 0.3s ease;
            border-radius: 16.5px;
            padding: 8px 4px;

            &:hover {
                cursor: pointer;
                color: var(--accent-blue);
                transition: all 0.3s ease;
            }

            &:first-of-type {
                padding-left: 16px;
            }

            &:last-of-type {
                padding-right: 16px;
            }
        }

        & button.active {
            background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-gradient-start) 100%);
            color: var(--text-light);
            border-radius: 18px;
            padding: 8px 16px;
            font-weight: 400;
            transition: all 0.3s ease;
            animation: fadeIn 0.3s ease forwards;

            &:hover {
                cursor: default;
                scale: 1.01;
                transition: all 0.3s ease;
            }
        }

        & button.leaving {
            animation: fadeOut 0.3s ease forwards;
        }
    }

    & .loginButton {
        background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-gradient-start) 100%);
        color: var(--text-light);
        font-family: Rubik;
        font-size: 16px;
        border: none;
        padding: 10px 20px;
        border-radius: 24px;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;

        & span {
            font-variation-settings:
                'FILL'1;
        }
    }

    & .loginButton:hover {
        cursor: pointer;
        transform: translateY(-5px);
        box-shadow: 0px 6px 16px -2px var(--accent-shadow-medium);
        transition: all 0.3s ease;
    }

    & .loginButton:active {
        transform: translateY(0px);
        box-shadow: none;
        scale: 0.98;
    }
}

main {
    background-color: var(--bg-main);
    position: relative;
    border-radius: 50px 50px 0 0;
    z-index: 2;

    & .welcomeBlock {
        overflow: hidden;
        outline: 2px solid var(--accent-gradient-start-soft);
        border-radius: 50px;
        text-align: center;
        margin: 0;
        background-color: var(--bg-welcome);
        padding: 120px 60px;
        height: calc(100vh - 120px);
        box-sizing: border-box;
        position: relative;

        & .circle {
            position: absolute;
            width: 200px;
            height: 200px;
            background: linear-gradient(var(--accent-gradient-start-soft), var(--accent-gradient-end-soft));
            border-radius: 50%;
            z-index: 0;
        }

        & .levitatingSquare {
            user-select: none;
            z-index: 5;
            background-color: var(--bg-card-alt);
            color: var(--accent-blue-soft);
            padding: 15px;
            font-size: 50px;
            border-radius: 16px;
            box-shadow: 0px 4px 1px 0px var(--accent-light-gray);
        }

        & h1 {
            font-size: 48px;
            color: var(--text-main);
            font-family: Varela;
            font-weight: bolder;

            & span {
                background: linear-gradient(90deg, var(--accent-gradient-start), var(--accent-gradient-end));
                background-clip: text;
                color: transparent;
            }
        }

        & .stats {
            z-index: 5;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            background-color: var(--bg-card-alt);
            width: fit-content;
            margin: 40px auto 0 auto;
            padding: 20px 40px;
            border-radius: 24px;
            box-shadow: 0 20px 40px var(--accent-blue-shadow),
                0 6px 18px var(--accent-neutral-shadow-medium),
                0 1px 0 var(--accent-shadow-highlight);
            user-select: none;

            & .statItem {
                display: flex;
                align-items: center;
                gap: 10px;
                font-size: 24px;
                color: var(--text-main);
                font-family: Rubik;

                & span {
                    font-size: 40px;
                    color: var(--accent-blue);
                    font-variation-settings:
                        'FILL'1;
                }

                & p {
                    display: flex;
                    flex-direction: column;
                    font-size: 15px;
                    color: var(--text-gray-light);

                    & label {
                        color: var(--text-main);
                        font-size: 24px;
                        font-weight: bold;
                    }
                }
            }

            & .statItemSub {
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
                bottom: 10px;
                display: flex;
                align-items: center;
                gap: 3px;
                font-size: 14px;
                color: var(--text-gray-lightest);

                & span {
                    font-size: 20px;
                    color: var(--text-gray-lightest);
                    font-variation-settings:
                        'FILL'1;
                }
            }

            & hr {
                border: none;
                width: 1px;
                height: 60px;
                background-color: var(--accent-light-gray);
                border-radius: 50px;
            }
        }
    }

    & .projectsShowcase {
        margin: 80px auto;
        align-self: center;
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 80%;

        & h2 {
            font-family: Varela;
            font-size: 32px;
            color: var(--text-gray-dark);
            margin-bottom: 20px;
        }

        & .projectsContainer {
            position: relative;
            align-self: center;
            width: 100%;
            height: 500px;
            outline: 2px solid var(--accent-gray);
            border-radius: 32px;
            padding: 20px;
            box-sizing: border-box;

            & .showcasedProject {
                display: flex;
                gap: 20px;
                position: absolute;
                padding: 30px 30px 30px 56px;
                width: 100%;
                height: 100%;
                background-color: var(--bg-card-alt);
                outline: 2px solid var(--accent-gray);
                border-radius: 32px;
                box-sizing: border-box;
                left: 0;
                top: 0;
                animation: slideOut 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;

                &::after {
                    content: '';
                    position: absolute;
                    width: 6px;
                    height: 140px;
                    left: 24px;
                    background-color: var(--bg-main);
                    outline: 2px solid var(--accent-gray);
                    border-radius: 32px;
                    top: 50%;
                    transform: translateY(-50%);
                }

                & img {
                    border-radius: 24px;
                    outline: 2px solid var(--accent-gray);
                    background-color: aquamarine;
                    flex: 1;
                    min-width: 0;
                    height: 100%;
                    object-fit: cover;
                }

                & .projectInfo {
                    display: flex;
                    flex-direction: column;
                    padding-top: 12px;
                    width: 450px;
                    flex-shrink: 0;
                    height: 100%;
                    box-sizing: border-box;
                    justify-content: space-between;

                    & h3 {
                        font-family: Varela;
                        font-size: 34px;
                        color: var(--text-main);
                        margin: 0;
                        padding: 0;
                    }

                    & .tags {
                        display: flex;
                        flex-wrap: wrap;
                        gap: 8px;
                        margin: 10px 0;
                    }

                    & .badge {
                        display: flex;
                        align-items: center;
                        gap: 6px;
                        padding: 4px 10px;
                        border-radius: 20px;
                        font-size: 12px;
                        font-family: Rubik;
                        font-weight: 500;
                        border: 1px solid;

                        & .circle {
                            width: 8px;
                            height: 8px;
                            border-radius: 50%;
                        }
                    }

                    & p {
                        font-family: Rubik;
                        font-size: 16px;
                        color: var(--text-gray-dark);
                    }

                    & .stats {
                        margin-top: auto;
                        width: 100%;
                        display: flex;
                        align-items: center;
                        gap: 24px;
                        padding: 16px 0;
                        border-top: 1px solid var(--accent-gray);

                        & .lastUpdate,
                        & .releaseDate {
                            user-select: none;
                            display: flex;
                            gap: 8px;
                            align-items: center;
                            font-family: Rubik;
                            padding: 8px 14px;
                            background-color: var(--bg-main);
                            border-radius: 12px;
                            transition: all 0.2s ease;
                            width: 100%;

                            & span {
                                font-size: 20px;
                                color: var(--accent-blue);
                                font-variation-settings: 'FILL'1;
                            }

                            & p {
                                font-size: 13px;
                                color: var(--text-gray-dark);
                                margin: 0;
                            }
                        }

                        & .lastUpdate:hover,
                        & .releaseDate:hover {
                            background-color: var(--accent-gray-light);
                            transform: translateY(-2px);
                        }
                    }

                    & .projectAction {
                        margin-top: 16px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        gap: 8px;
                        background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-gradient-start) 100%);
                        color: var(--text-light);
                        font-family: Rubik;
                        font-size: 14px;
                        font-weight: 500;
                        padding: 12px 24px;
                        border-radius: 14px;
                        border: none;
                        cursor: pointer;
                        text-decoration: none;
                        transition: all 0.3s ease;

                        & span {
                            font-size: 18px;
                            font-variation-settings: 'FILL'1;
                            transition: transform 0.3s ease;
                        }

                        &:hover {
                            box-shadow: 0 8px 20px var(--accent-shadow-medium);
                            transform: translateY(-2px);
                        }

                        &:hover span {
                            transform: translateX(4px);
                        }
                    }
                }
            }

            & .showcasedProject.active {
                animation: slideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
            }
        }

        & .carouselSlider {
            margin: auto;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: var(--accent-gray-light);
            border-radius: 24px;
            width: fit-content;
            overflow: hidden;

            & button {
                background: none;
                border: none;
                width: 32px;
                height: 14px;
                transition: all 0.3s ease;

                &:hover {
                    cursor: pointer;
                    background-color: var(--accent-gray);
                    transition: all 0.3s ease;
                    border-radius: 24px;
                }
            }

            & button.active {
                z-index: 2;
                background-color: var(--accent-blue);
                width: 40px;
                border-radius: 24px;
                transition: all 0.3s ease;
            }
        }

        & .showProjects {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background-color: var(--bg-card-alt);
            border: 1px solid var(--accent-gray);
            border-radius: 14px;
            padding: 12px 28px;
            font-family: Rubik;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-gray-dark);
            width: fit-content;
            margin: 20px auto 0 auto;
            cursor: pointer;
            transition: all 0.25s ease;

            & span {
                font-size: 18px;
                color: var(--accent-blue);
                font-variation-settings:
                    'FILL'1;
            }

            &:hover {
                background-color: var(--accent-gray-light);
            }

            &:active {
                scale: 0.98;
            }
        }
    }
}

footer {
    position: relative;
    padding: 60px 40px 30px 40px;
    background: linear-gradient(180deg, var(--bg-footer) 0%, #0a0f1a 100%);
    margin: 80px auto 0 auto;

    & .footerMain {
        display: grid;
        grid-template-columns: 1fr 1.5fr 1.5fr;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
        align-items: start;

        & .footerBrand {
            display: flex;
            flex-direction: column;
            gap: 16px;

            & .logo {
                display: flex;
                align-items: center;
                gap: 12px;

                & img {
                    width: 50px;
                    height: 50px;
                    object-fit: contain;
                    filter: invert(1);
                }

                & h3 {
                    font-family: Varela;
                    font-size: 20px;
                    color: var(--text-light-white);
                    margin: 0;
                }
            }

            & p {
                font-family: Rubik;
                font-size: 13px;
                color: var(--text-gray-light);
                line-height: 1.6;
                margin: 0;
            }
        }

        & .footerLinks {
            display: flex;
            justify-content: center;
            gap: 60px;

            & .linkGroup {
                display: flex;
                flex-direction: column;
                gap: 12px;

                & h4 {
                    font-family: Rubik;
                    font-size: 13px;
                    font-weight: 600;
                    color: var(--text-gray-light);
                    text-transform: uppercase;
                    letter-spacing: 1px;
                    margin: 0 0 8px 0;
                }

                & a {
                    display: flex;
                    align-items: center;
                    gap: 8px;
                    font-family: Rubik;
                    font-size: 14px;
                    color: var(--text-light-white);
                    text-decoration: none;
                    transition: all 0.2s ease;

                    & span {
                        font-size: 18px;
                        color: var(--accent-blue);
                        font-variation-settings: 'FILL'1;
                        transition: all 0.2s ease;
                    }

                    &:hover {
                        color: var(--accent-blue);
                        transform: translateX(4px);
                    }
                }
            }
        }

        & .githubWidget {
            display: flex;
            flex-direction: column;
            align-items: flex-end;

            & .gh-profile-card {
                position: relative;
                background-color: #0d1117;
                border: 1px solid #30363d;
                border-radius: 16px;
                padding: 16px;
                width: 280px;
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif;

                & .gh-header {
                    display: flex;
                    justify-content: flex-end;
                    position: absolute;
                    right: 16px;

                    & .gh-icon {
                        opacity: 0.7;
                    }
                }

                & .gh-profile-link {
                    display: flex;
                    align-items: center;
                    gap: 12px;
                    text-decoration: none;
                    margin-bottom: 12px;

                    & .gh-avatar {
                        width: 48px;
                        height: 48px;
                        border-radius: 50%;
                        border: 1px solid #30363d;
                        filter: none;
                        padding: 0;
                        margin: 0;
                    }

                    & .gh-user-info {
                        display: flex;
                        flex-direction: column;

                        & .gh-displayname {
                            color: #f0f6fc;
                            font-size: 16px;
                            font-weight: 600;
                            line-height: 1.25;
                        }

                        & .gh-username {
                            color: #8b949e;
                            font-size: 14px;
                            font-weight: 400;
                        }
                    }
                }

                & .gh-profile-link:hover .gh-displayname {
                    color: #58a6ff;
                }

                & .gh-bio {
                    color: #8b949e;
                    font-size: 14px;
                    line-height: 1.5;
                    margin: 0 0 12px 0;
                }

                & .gh-stats {
                    display: flex;
                    gap: 16px;
                    margin-bottom: 16px;

                    & .gh-stat {
                        display: flex;
                        align-items: center;
                        gap: 4px;
                        color: #8b949e;
                        font-size: 12px;

                        & svg {
                            flex-shrink: 0;
                        }
                    }
                }

                & .gh-follow-btn {
                    display: block;
                    width: 100%;
                    padding: 5px 16px;
                    font-size: 14px;
                    font-weight: 500;
                    line-height: 20px;
                    color: #c9d1d9;
                    background-color: #21262d;
                    border: 1px solid #30363d;
                    border-radius: 6px;
                    text-align: center;
                    text-decoration: none;
                    cursor: pointer;
                    transition: background-color 0.2s, border-color 0.2s;
                    box-sizing: border-box;
                }

                & .gh-follow-btn:hover {
                    background-color: #30363d;
                    border-color: #8b949e;
                }
            }
        }
    }

    & .copy {
        max-width: 1200px;
        margin: 40px auto 0 auto;
        padding-top: 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        justify-content: space-between;
        align-items: center;

        & p {
            font-family: Rubik;
            font-size: 13px;
            color: var(--text-gray-light);
            margin: 0;
        }

        & .backToTop {
            display: flex;
            align-items: center;
            gap: 6px;
            font-family: Rubik;
            font-size: 13px;
            color: var(--text-gray-light);
            text-decoration: none;
            transition: all 0.2s ease;
            cursor: pointer;
            background: none;
            border: none;

            & span {
                font-size: 18px;
                transition: transform 0.2s ease;
            }

            &:hover {
                color: var(--accent-blue);

                & span {
                    transform: translateY(-3px);
                }
            }
        }
    }
}

.welcomeBlock {
    & .circle {
        z-index: -1;
        pointer-events: none;
        /* subtelny radialny gradient zamiast liniowego, delikatniejsze brzegi */
        background: radial-gradient(circle at 30% 30%, rgba(60, 126, 245, 0.24) 0%, rgba(77, 74, 230, 0.14) 55%, rgba(77, 74, 230, 0.06) 100%);
        transition: transform 0.3s ease, opacity 0.3s ease;

        /* bardziej rozproszone pozycje i różne opacity */
        &:nth-of-type(1) {
            /* left-top large */
            top: 6%;
            left: 6%;
            width: 220px;
            height: 220px;
            opacity: 0.5;
            animation: float-1 14s ease-in-out infinite;
        }

        &:nth-of-type(2) {
            /* small top-right */
            top: 12%;
            right: 10%;
            width: 90px;
            height: 90px;
            opacity: 0.32;
            animation: float-2 17s ease-in-out infinite;
            animation-delay: 2s;
        }

        &:nth-of-type(3) {
            /* small left-mid */
            top: 38%;
            left: 10%;
            width: 120px;
            height: 120px;
            opacity: 0.36;
            animation: float-3 16s ease-in-out infinite;
            animation-delay: 1s;
        }

        &:nth-of-type(4) {
            /* bottom-left */
            bottom: 8%;
            left: 8%;
            width: 140px;
            height: 140px;
            opacity: 0.28;
            animation: float-4 13s ease-in-out infinite;
            animation-delay: 3s;
        }

        &:nth-of-type(5) {
            /* big right-bottom */
            bottom: 6%;
            right: 6%;
            width: 300px;
            height: 300px;
            opacity: 0.48;
            animation: float-5 15s ease-in-out infinite;
            animation-delay: 0.5s;
        }

        &:nth-of-type(6) {
            /* center-right medium */
            top: 50%;
            right: 24%;
            width: 160px;
            height: 160px;
            opacity: 0.3;
            animation: float-2 19s ease-in-out infinite;
            animation-delay: 2.5s;
        }

        &:nth-of-type(7) {
            /* newly added 7th circle positioned top-left */
            top: 0%;
            left: 0%;
            opacity: 0.36;
            animation: float-1 17s ease-in-out infinite;
            animation-delay: 1s;
            scale: 1.75;
        }
    }

    & .levitatingSquare {
        &:nth-of-type(1) {
            position: absolute;
            top: 20%;
            left: 15%;
            animation: levitate 6s ease-in-out infinite;
        }

        &:nth-of-type(2) {
            position: absolute;
            top: 15%;
            right: 18%;
            animation: levitate 5s ease-in-out infinite;
        }

        &:nth-of-type(3) {
            position: absolute;
            bottom: 15%;
            left: 25%;
            animation: levitate 7s ease-in-out reverse infinite;
        }
    }
}

@media (max-width: 1200px) {

    .goToTop {
        right: 20px;
        bottom: 20px;
    }

    .customScrollbarTrack {
        display: none !important;
    }

    header {
        flex-wrap: wrap;
        gap: 10px;
        padding: 5px;
        justify-content: space-around;
        margin-bottom: 10px;

        & .loginButton {
            font-size: 14px;
            padding: 8px 16px;
            gap: 4px;

            & span {
                font-size: 20px;
            }
        }

        & nav {
            order: 2;
            padding: 4.5px;
            gap: 14px;

            & button {
                font-size: 14px;
                padding: 6px 0px;

                &:first-child {
                    padding-left: 6px;
                }

                &:last-child {
                    padding-right: 6px;
                }

                &.active {
                    padding: 6px 12px;
                }
            }
        }
    }

    main {
        & .welcomeBlock {
            height: calc(100vh - 140px);
            padding: 80px 30px;

            & h1 {
                display: flex;
                flex-direction: column;
                font-size: 36px;
                z-index: 20;
                position: relative;
            }

            & .stats {
                flex-wrap: wrap;
                gap: 8px;
                padding: 20px 18px;
                z-index: 999;

                & hr {
                    display: none;
                }

                & .statItem {
                    position: relative;

                    & span {
                        font-size: 32px;
                    }

                    & p {
                        font-size: 13px;

                        & label {
                            font-size: 18px;
                        }
                    }
                }

                & .statItem:nth-of-type(2) {
                    order: 3;

                    & p {
                        font-size: 16px;

                        & label {
                            font-size: 22px;
                        }
                    }

                    & span {
                        font-size: 40px;
                    }

                }

                & .statItem:nth-of-type(3) {
                    order: 2;
                }

                & .statItemSub {
                    bottom: -8px;
                    font-size: 12px !important;

                    & span {
                        font-size: 16px !important;
                    }
                }
            }

            & .levitatingSquare {
                &:nth-of-type(1) {
                    top: 8%;
                    left: 10%;
                    scale: 0.75;
                }

                &:nth-of-type(2) {
                    top: 12%;
                    right: 10%;
                    scale: 0.75;
                }

                &:nth-of-type(3) {
                    bottom: 5%;
                    scale: 0.75;
                }
            }
        }

        & .projectsShowcase {
            width: 95%;
            margin: 40px auto;

            & h2 {
                font-size: 24px;
                text-align: center;
            }

            & .projectsContainer {
                height: auto;
                height: 650px;
                padding: 12px;
                border-radius: 24px;

                & .showcasedProject {
                    flex-direction: column;
                    padding: 16px;
                    border-radius: 24px;
                    height: 100%;
                    min-height: 580px;

                    &::after {
                        top: 10px;
                        left: 50%;
                        transform: translateX(-50%);
                        width: 140px;
                        height: 6px;
                    }

                    & img {
                        width: 100%;
                        height: 180px;
                        flex: none;
                        border-radius: 16px;
                        margin-top: 12px;
                    }

                    & .projectInfo {
                        width: 100%;
                        height: auto;
                        padding-top: 8px;
                        flex: 1;
                        display: flex;
                        flex-direction: column;

                        & h3 {
                            font-size: 22px;
                        }

                        & .tags {
                            margin: 8px 0;
                        }

                        & p {
                            font-size: 14px;
                            line-height: 1.5;
                        }

                        & .stats {
                            flex-direction: column;
                            gap: 8px;
                            padding: 12px 0;
                            margin-top: auto;

                            & .lastUpdate,
                            & .releaseDate {
                                padding: 10px 12px;

                                & span {
                                    font-size: 18px;
                                }

                                & p {
                                    font-size: 12px;
                                }
                            }
                        }

                        & .projectAction {
                            margin-top: 12px;
                            padding: 10px 20px;
                            font-size: 13px;
                        }
                    }
                }
            }

            & .showProjects {
                font-size: 13px;
                padding: 10px 20px;
            }
        }
    }

    footer {
        padding: 40px 20px 24px 20px;
        margin-top: 60px;

        &::before {
            top: -40px;
            height: 40px;
        }

        & .footerMain {
            grid-template-columns: 1fr;
            gap: 32px;
            text-align: center;

            & .footerBrand {
                align-items: center;

                & .logo {
                    justify-content: center;
                }

                & p {
                    max-width: 280px;
                }
            }

            & .footerLinks {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 12px;
                justify-content: center;

                & .linkGroup {
                    display: contents;

                    & h4 {
                        display: none;
                    }

                    & a {
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        justify-content: center;
                        gap: 8px;
                        font-size: 11px;
                        text-align: center;
                        background: rgba(255, 255, 255, 0.05);
                        border: 1px solid rgba(255, 255, 255, 0.08);
                        border-radius: 16px;
                        padding: 16px 12px;
                        min-width: 90px;
                        transition: all 0.2s ease;

                        & span {
                            font-size: 28px;
                        }

                        &:hover {
                            transform: none;
                        }

                        &:active {
                            scale: 0.95;
                            background: rgba(255, 255, 255, 0.1);
                        }
                    }
                }
            }

            & .githubWidget {
                align-items: center;

                & .gh-profile-card {
                    width: 100%;
                    max-width: 320px;
                }
            }
        }

        & .copy {
            flex-direction: column;
            gap: 16px;
            text-align: center;

            & p {
                font-size: 12px;
            }
        }
    }
}