﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: monospace;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    background-color: rgb(8, 8, 8);
    color: white;
    overflow-x: hidden;
}

.invert {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    backdrop-filter: invert(1);
    display: none;
}

.model-container {
    position: fixed;
    top: 0;
    left: -80px;
    width: 100%;
    height: 100%;
    z-index: -99;
    pointer-events: auto;
}

#space-station {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    filter: contrast(1.1);
    pointer-events: none;
}

#hero-model {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    filter: contrast(0.2);
    pointer-events: none;
    z-index: 99;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

header {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(11, 11, 12, 0);
    backdrop-filter: blur(3px);
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: rgba(8, 8, 8, 0.733);
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    color: #fff;
    font-family: 'BBH Sans Hegarty', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.navbar {
    width: 70%;
    max-width: 900px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    text-decoration: none;
    font-family: 'BBH Sans Hegarty', sans-serif;
    position: relative;
    transition: color 0.3s ease;
    font-weight: 500;
    padding: 5px 0;
}

.menu a:hover {
    color: #ffffff;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1002;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 95vw;
    height: 100vh;
    background: rgba(11, 11, 12, 0.7);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    padding: 80px 2rem 2rem;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    align-items: flex-start;
    justify-content: flex-start;

}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-menu:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu a {
    display: block;
    width: 100%;
    color: white;
    font-size: 1.2rem;

    text-decoration: none;
    font-family: 'BBH Sans Hegarty', sans-serif;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

    transform: none;

    opacity: 1;

    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    padding-left: 10px;

}

section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: 0.3s ease;
}


#hero-project {
    display: flex;
    flex-direction: row;
    width: 100vw;
}

.hero-sec {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100vw;
    margin: 0 auto;
    padding: 100px 0;
}

.about-sec {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 70%;
    max-width: 900px;
    margin: 0 auto;
    justify-content: space-between;
}

.intro {
    flex: 1;
    min-width: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 10;
    margin-right: -60px;
}

.intro h1,
.intro h2,
.intro p {
    margin-top: 10px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.intro h2 {
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(14px, 3vw, 24px);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation-delay: 0.2s;
}

.intro h1 {
    color: #fff;
    font-size: clamp(28px, 6vw, 85px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #fff 0%, #a5a5a5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation-delay: 0.4s;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .intro h1 {
        white-space: normal;
        font-size: 40px;
    }

    .intro {
        margin-right: 0;
    }
}

.intro .texts p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    max-width: 400px;
    line-height: 1.6;
    animation-delay: 0.6s;
}

.intro .github-button {
    align-self: flex-start;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation-delay: 0.8s;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 40px;
    color: white;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.intro .github-button:hover {
    background: white;
    color: black;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}


.hero-c {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 400px;
}

.floating-elements {
    position: relative;
    width: 300px;
    height: 300px;
    perspective: 1000px;
    display: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.6;
    animation: floatOrb 8s ease-in-out infinite;
}

.orb-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
    box-shadow: inset 0 0 50px rgba(100, 200, 255, 0.05);
}

.orb-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), transparent);
    top: 20%;
    left: 60%;
    animation-duration: 10s;
    animation-delay: -2s;
}

.orb-3 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), transparent);
    top: 70%;
    left: 20%;
    animation-duration: 12s;
    animation-delay: -5s;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.texts {
    display: flex;
    align-items: center;
    gap: 5px;
}

#im-text {
    color: white;
    font-size: clamp(14px, 1.5vw, 22px);
    font-family: 'BBH Sans Hegarty';
}

#intro-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.543);
    font-family: Inter, sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -.32px;
}

.github-button {
    display: inline-block;
    color: white;
    font-size: 1.2rem;
    background: transparent;
    border: none;
    margin-top: 10px;
    cursor: pointer;
    text-align: left;
    text-decoration: none;
}

.hero-c {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-duration: 0.5s;
    position: relative;
    left: 0px;
}

.github-stats-minimal {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.stat-item-minimal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-number-large {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.685);
    font-family: 'Inter', sans-serif;
    letter-spacing: -1px;
    line-height: 1;
}

.stat-label-small {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
}

#projects-section {
    padding: 80px 20px;
}

.projects-container {
    width: 70%;
    max-width: 900px;
    margin: 0 auto;
}

.projects-header {
    text-align: center;
    margin-bottom: 70px;
    opacity: 0;
    animation: fadeInUp 0.7s ease-out forwards;
}

.projects-header h1 {
    color: rgba(255, 255, 255, 0.788);
    font-size: clamp(38px, 6vw, 54px);
    margin-bottom: 12px;
    letter-spacing: -0.8px;
}

.projects-header p {
    color: rgba(255, 255, 255, 0.543);
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: -.32px;
    line-height: 150%;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.projects-grid a{
   text-decoration: none;
}


.project-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.005) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(10px);
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.project-image {
    width: 100%;
    height: 180px;
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 1;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.02) 10px,
            rgba(255, 255, 255, 0.02) 20px);
    opacity: 0.3;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s ease;
    z-index: 2;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay i {
    font-size: 36px;
    color: rgba(255, 255, 255, 0.9);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.project-card:hover .project-overlay i {
    transform: scale(1);
}

.project-content {
    padding: 20px;
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-content h3 {
    color: rgba(255, 255, 255, 0.788);
    font-size: 20px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.project-card:hover .project-content h3 {
    color: rgba(255, 255, 255, 1);
}

.project-content p {
    color: rgba(255, 255, 255, 0.543);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 150%;
    margin-bottom: 14px;
    font-weight: 400;
    letter-spacing: -.32px;
    transition: color 0.3s ease;
}

.project-card:hover .project-content p {
    color: rgba(255, 255, 255, 0.65);
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 6px 12px;
    font-size: 11px;
    font-family: monospace;
    text-transform: uppercase;
    letter-spacing: 0.5px;

    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.project-card:hover .tag {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
}

[data-category="web"] .project-image {
    background: linear-gradient(135deg, rgba(97, 218, 251, 0.08) 0%, rgba(97, 218, 251, 0.02) 100%);
}

[data-category="game"] .project-image {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
}

[data-category="tool"] .project-image {
    background: linear-gradient(135deg, rgba(253, 181, 46, 0.08) 0%, rgba(253, 181, 46, 0.02) 100%);
}

#service-sec {
    width: 100%;
}

.service-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 0.7s ease-out forwards;
}

.service-header h1 {
    color: rgba(255, 255, 255, 0.788);
    font-size: clamp(38px, 6vw, 54px);
    margin-bottom: 12px;
    letter-spacing: -0.8px;
}

.service-header p {
    color: rgba(255, 255, 255, 0.543);
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: -.32px;
    line-height: 150%;
}

.ser-comtainer {
    width: 70%;
    max-width: 900px;
    margin: 20px auto;
}

.s-sec {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1),
        transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.s-sec.appear {
    opacity: 1;
    transform: translateY(0);
}

.s-sec-1.appear {
    transition-delay: 0.1s;
}

.s-sec-2.appear {
    transition-delay: 0.2s;
}

.s-sec-3.appear {
    transition-delay: 0.3s;
}

.services-sq {
    width: 180px;
    height: 180px;
    margin: 5px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.services-sq::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
    border-radius: 50%;
}

.services-sq:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(255, 255, 255, 0.05);
}

.services-re {
    flex: 1;
    height: 180px;
    margin: 5px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.services-re::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
    border-radius: 50%;
    z-index: 0;
}

.services-re:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(255, 255, 255, 0.05);
}

#frontend-logo-n {
    color: rgba(255, 255, 255, 0.412);
    font-size: 20px;
}

#frontend-logo,
#backend-logo,
#gamedev-logo {
    color: rgba(255, 255, 255, 0.412);
    font-size: 70px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.services-sq:hover #frontend-logo {
    color: rgba(253, 181, 46, 0.89);
    text-shadow: 0 0 70px rgba(253, 181, 46, 0.89);
}

.services-sq:hover #backend-logo {
    color: rgba(126, 255, 141, 0.89);
    text-shadow: 0 0 70px rgba(126, 255, 141, 0.89);
}

.services-sq:hover #gamedev-logo {
    color: rgba(255, 255, 255, 0.734);
    text-shadow: 0 0 70px rgba(255, 255, 255, 0.761);
}

.card-p {
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    perspective: 1000px;
    z-index: 1;
}

.frontend-text,
.frontend-text-2,
.frontend-text-3 {
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 20px;
    z-index: 1;
}

.frontend-text h1,
.frontend-text-2 h1,
.frontend-text-3 h1 {
    color: rgba(255, 255, 255, 0.788);
    font-size: 22px;
    transition: color 0.3s ease;
}

.services-re:hover .frontend-text h1,
.services-re:hover .frontend-text-2 h1,
.services-re:hover .frontend-text-3 h1 {
    color: rgba(255, 255, 255, 0.95);
}

.frontend-text p,
.frontend-text-2 p,
.frontend-text-3 p {
    color: rgba(255, 255, 255, 0.543);
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -.32px;
    text-wrap: balance;
    transition: color 0.3s ease;
}

.services-re:hover .frontend-text p,
.services-re:hover .frontend-text-2 p,
.services-re:hover .frontend-text-3 p {
    color: rgba(255, 255, 255, 0.7);
}

.frontend-text-2 {
    text-align: center;
}

.card-con {
    width: 110px;
    height: 110px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    transform: rotateX(50deg) rotateY(0deg) rotateZ(45deg);

    box-shadow: 35px 35px 30px -25px rgb(0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    margin: 15px;
    position: relative;
    transform-style: preserve-3d;
}

.card-con::before {
    content: "";
    width: 220px;
    height: 2px;
    background-color: #ffffff21;
    position: absolute;
    top: 218px;
    transform: rotate(90deg);
    z-index: -1;
    transition: all 0.4s ease;
}

#frontend-logo-in {
    color: rgba(255, 255, 255, 0.412);
    font-size: 70px;
    margin: 0;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translate(-5px, 0px);
}

.services-re:hover #frontend-logo-in {
    transform: translate(-35px, -35px);
    color: rgba(253, 181, 46, 0.89);
    text-shadow: 0 0 70px rgba(253, 181, 46, 0.89);
}

.services-re:hover .card-con::before {
    background-color: rgba(253, 181, 46, 0.285);
}

.services-re:hover .card-con {
    border: 1px solid rgba(253, 181, 46, 0.285);
    transform: rotateX(50deg) rotateY(0deg) rotateZ(45deg) translateZ(45px);
    box-shadow: 35px 35px 40px -20px rgba(0, 0, 0, 0.5);
}

#gamedev-logo-in {
    color: rgba(255, 255, 255, 0.412);
    font-size: 70px;
    margin: 0;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translate(-5px, 0px);
}

.services-re:hover #gamedev-logo-in {
    transform: translate(-50px, -50px);
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 70px rgba(255, 255, 255, 0.9);
}

.services-re:hover .webgame-card::before {
    background-color: rgba(255, 255, 255, 0.285);
}

.services-re:hover .webgame-card {
    border: 1px solid rgba(255, 255, 255, 0.285);
}

.ser-comtainer-p {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.ser-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    padding-bottom: 0;
}

.c-container {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.services-re:hover .c-container {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
}

.c-container i {
    font-size: 35px;
    color: rgba(255, 255, 255, 0.412);
    transition: all 0.3s ease;
}

.services-re:hover .c-container i {
    color: rgba(255, 255, 255, 0.7);
}

.c-line {
    flex: 1;
    height: 2px;
    background-color: rgba(255, 255, 255, 0);
    display: flex;
    align-items: center;
}


.skill-level {
    height: 1px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.753));
    width: 0%;
    animation: barincre 2s ease-in-out;
    animation-fill-mode: forwards;
}


.little-l {
    width: 4px;
    height: 4px;
    background-color: white;
    box-shadow: 0px 0px 5px white;
    border-radius: 50%;
}

@keyframes barincre {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.container-file {
    flex: 1;
    width: 100%;
    max-width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    padding: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.005) 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}

.container-file pre {
    margin: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
    word-break: break-word;
    font-family: 'Fira Code', monospace;
    font-size: clamp(9px, 1.2vw, 13px);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    width: 100%;
    max-width: 100%;
    opacity: 0;
    animation: codeReveal 1.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation-delay: 0.5s;
    overflow-wrap: break-word;
}

.container-file code {
    display: block;
    width: 100%;
}

@keyframes codeReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(5px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.c-keyword {
    color: rgba(255, 255, 255, 0.4);
}

.c-func {
    color: rgba(255, 255, 255, 0.623);
}

.c-operator {
    color: rgba(255, 255, 255, 0.3);
}

.c-comment {
    color: rgba(255, 255, 255, 0.2);
    font-style: italic;
}

.c-paren {
    color: rgba(255, 255, 255, 0.4);
}

.c-arg {
    color: rgba(255, 255, 255, 0.7);
}

.c-semi {
    color: rgba(255, 255, 255, 0.2);
}

#all-skills {
    padding: 80px 20px;
}

.skills-container {
    width: 70%;
    max-width: 900px;
    margin: 0 auto;
}

.skills-header {
    text-align: center;
    margin-bottom: 70px;
    opacity: 0;
    animation: fadeInUp 0.7s ease-out forwards;
}

.skills-header h1 {
    color: rgba(255, 255, 255, 0.788);
    font-size: clamp(38px, 6vw, 54px);
    margin-bottom: 12px;
    letter-spacing: -0.8px;
}

.skills-header p {
    color: rgba(255, 255, 255, 0.543);
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: -.32px;
    line-height: 150%;
}

.skills-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px;
    margin-top: 40px;
}

.skill-card {
    background: rgba(245, 245, 245, 0);
    border: 1px solid rgba(255, 255, 255, 0.08);

    padding: 20px 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(10px);
}

.skill-card:nth-child(1) {
    animation-delay: 0.05s;
}

.skill-card:nth-child(2) {
    animation-delay: 0.1s;
}

.skill-card:nth-child(3) {
    animation-delay: 0.15s;
}

.skill-card:nth-child(4) {
    animation-delay: 0.2s;
}

.skill-card:nth-child(5) {
    animation-delay: 0.25s;
}

.skill-card:nth-child(6) {
    animation-delay: 0.3s;
}

.skill-card:nth-child(7) {
    animation-delay: 0.35s;
}

.skill-card:nth-child(8) {
    animation-delay: 0.4s;
}

.skill-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease;
    border-radius: 50%;
}

.skill-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);

    position: relative;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.skill-icon::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);

    opacity: 0;
    transition: opacity 0.4s ease;
}

.skill-card:hover .skill-icon::before {
    opacity: 1;
}

.skill-icon i {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.4s ease;
    z-index: 1;
}

.skill-card:hover .skill-icon {
    background: rgba(255, 255, 255, 0.05);
}

.skill-card:hover .skill-icon i {
    color: #fff;
}

.skill-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.skill-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.skill-info h3 {
    color: rgba(255, 255, 255, 0.788);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0px;
    margin: 0;
    transition: color 0.3s ease;
}

.skill-percent {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.skill-card:hover .skill-info h3 {
    color: rgba(255, 255, 255, 1);
}

.skill-card:hover .skill-percent {
    color: rgba(255, 255, 255, 0.8);
}

[data-skill="html"] {
    --skill-color: #e34f26de;
}

[data-skill="css"] {
    --skill-color: #1573b6d5;
}

[data-skill="javascript"] {
    --skill-color: #f7de1ed5;
}

[data-skill="react"] {
    --skill-color: #61dafbd3;
}

[data-skill="node"] {
    --skill-color: #339933de;
}

[data-skill="python"] {
    --skill-color: #3777abda;
}

[data-skill="mongodb"] {
    --skill-color: #47a248dc;
}

[data-skill="git"] {
    --skill-color: #f04e32da;
}

.skill-bar {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);

    position: relative;
    display: flex;
    align-items: center;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), var(--skill-color));

    width: 0;
    position: relative;
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.skill-card.visible .skill-progress {
    width: var(--progress);
}

.skill-progress .little-l {
    width: 4px;
    height: 4px;
    background-color: white;
    box-shadow: 0px 0px 5px var(--skill-color);
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
}

.hireme-sec {
    width: 70%;
    height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 900px;
    margin-top: 5vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hire-content {
    text-align: center;
    z-index: 2;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hire-content h1 {
    font-size: clamp(32px, 5vw, 48px);
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    letter-spacing: -1px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.hire-content p {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    max-width: 500px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.hireme-button {
    padding: 16px 48px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffffd2;
    background: linear-gradient(135deg, #ffffff00 0%, #e0e0e000 100%);
    border: 1px solid rgba(255, 255, 255, 0.205);

    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.hireme-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.562), transparent);
    transition: 0.5s;
}

.hireme-button:hover::after {
    left: 100%;
}

.hireme-button:active {
    transform: translateY(1px);
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
    padding-bottom: 40px;
}

.social-icon-link {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid transparent;
    text-decoration: none;
}

.social-icon-link:hover {
    color: #ffffff;
}

footer {
    width: 100%;
    padding: 20px 0 0 0;
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

footer p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    width: 70%;
    height: auto;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1270px) {
    .ser-comtainer {
        width: 85%;
    }

    .services-re {
        min-height: 160px;
    }

    #frontend-logo,
    #backend-logo,
    #gamedev-logo {
        font-size: 60px;
    }

    #frontend-logo-n {
        font-size: 18px;
    }

    .frontend-text h1,
    .frontend-text-2 h1,
    .frontend-text-3 h1 {
        font-size: 20px;
    }

    .frontend-text p,
    .frontend-text-2 p,
    .frontend-text-3 p {
        font-size: 12px;
    }

    .card-con {
        width: 100px;
        height: 100px;
        transform: rotateX(45deg) rotateY(0deg) rotateZ(45deg);
    }

    .card-con::before {
        width: 180px;
        top: 188px;
    }

    #frontend-logo-in {
        font-size: 60px;
        transform: translate(-3px, 0px);
    }

    .services-re:hover #frontend-logo-in {
        transform: translate(-25px, -25px);
    }

    .services-re:hover .card-con {
        transform: rotateX(45deg) rotateY(0deg) rotateZ(45deg) translateZ(35px);
    }

    .c-container {
        width: 55px;
        height: 55px;
    }

    .c-container i {
        font-size: 32px;
    }

    .container-file pre {
        font-size: 11px;
    }
}

@media (max-width: 1024px) {
    .about-sec {
        width: 80%;
    }

    .ser-comtainer,
    .projects-container,
    .skills-container {
        width: 80%;
    }

    .hireme-sec {
        width: 80%;
    }

    footer p {
        width: 80%;
    }
}

@media (max-width: 800px) {
    .about-sec {
        width: 90%;
        flex-direction: column;
        gap: 30px;
    }

    .intro {
        align-items: center;
        text-align: center;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .intro h1 {
        font-size: clamp(32px, 8vw, 60px);
    }

    .intro h2 {
        font-size: clamp(12px, 2.5vw, 20px);
    }

    #im-text {
        font-size: clamp(14px, 2vw, 20px);
    }

    .texts {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-c {
        max-width: 350px;
        height: 280px;
        margin: 0 auto;
    }

    .github-stats-minimal {
        gap: 18px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .stat-number-large {
        font-size: clamp(20px, 4vw, 32px);
    }

    .stat-divider {
        height: 28px;
    }

    .intro .github-button {
        align-self: center;
    }
}

@media (max-width: 768px) {
    .navbar {
        width: 90%;
    }

    .menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    #hero-project {
        height: auto;
        min-height: 100vh;
    }

    .about-sec {
        width: 90%;
        margin-top: 80px;
        flex-direction: column;
    }

    .intro {
        align-items: center;
        text-align: center;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .texts {
        justify-content: center;
    }

    .intro .github-button {
        align-self: center;
        margin-top: 30px;
    }

    .hero-c {
        max-width: 400px;
        height: 300px;
        margin: 0 auto;
    }

    .github-stats-minimal {
        gap: 20px;
        justify-content: center;
    }

    .stat-number-large {
        font-size: 28px;
    }

    .stat-divider {
        height: 30px;
    }

    #projects-section {
        padding: 60px 20px;
    }

    .projects-container {
        width: 90%;
    }

    .projects-header {
        margin-bottom: 40px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-image {
        height: 200px;
    }

    #service-sec {
        padding: 60px 20px;
    }

    .ser-comtainer {
        width: 90%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .s-sec {
        flex-direction: column;
        width: 100%;
        height: auto;
        min-height: auto;
    }

    .s-sec-1 {
        flex-direction: column;
    }

    .s-sec-2 {
        flex-direction: column-reverse;
    }

    .s-sec-3 {
        flex-direction: column;
    }

    .services-sq {
        width: 100%;
        height: 120px;
        margin: 0;
    }

    .services-re {
        width: 100%;
        height: auto;
        min-height: 180px;
        margin: 0;
        flex-direction: column;
        padding: 20px;
    }

    .frontend-text,
    .frontend-text-2,
    .frontend-text-3 {
        width: 100%;
        padding: 0;
        text-align: center;
        justify-content: center;
        margin-bottom: 20px;
    }

    .card-p {
        width: 100%;
        padding: 0;
    }

    .card-con {
        width: 80px;
        height: 80px;
        transform: rotateX(40deg) rotateY(0deg) rotateZ(45deg);
    }

    .card-con::before {
        width: 150px;
        top: 153px;
    }

    #frontend-logo-in {
        font-size: 50px;
        transform: translate(-2px, 0px);
    }

    .services-re:hover #frontend-logo-in {
        transform: translate(-20px, -20px);
    }

    .services-re:hover .card-con {
        transform: rotateX(40deg) rotateY(0deg) rotateZ(45deg) translateZ(25px);
    }

    .ser-comtainer-p {
        gap: 15px;
    }

    .ser-container {
        padding: 20px 0;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .c-container {
        width: 50px;
        height: 50px;
    }

    .c-container i {
        font-size: 28px;
    }

    .c-line {
        display: none;
    }

    .container-file {
        width: 100%;
        margin-top: 20px;
        padding: 15px;
    }

    .container-file pre {
        font-size: 10px;
        line-height: 1.4;
    }

    #all-skills {
        padding: 60px 20px;
    }

    .skills-container {
        width: 90%;
    }

    .skills-header {
        margin-bottom: 40px;
    }

    .skills-grid-new {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .skill-card {
        padding: 20px 16px;
    }

    .hireme-sec {
        width: 90%;
        height: auto;
        min-height: 300px;
        padding: 50px 20px;
    }

    footer p {
        width: 90%;
    }

    #github-section {
        padding: 30px 0;
    }

    .github-stats-compact {
        width: 90%;
        gap: 12px;
    }

    .stat-item {
        padding: 14px 18px;
    }

    .stat-number {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    header {
        height: 70px;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .hero-sec {
        padding: 80px 0 60px;
    }

    .about-sec {
        width: 90%;
        margin-top: 60px;
    }

    .intro h1 {
        font-size: 36px;
    }

    .intro h2 {
        font-size: 14px;
    }

    #im-text {
        font-size: 16px;
    }

    .hero-c {
        max-width: 300px;
        height: 250px;
        margin: 0 auto;
    }

    .github-stats-minimal {
        gap: 15px;
        flex-wrap: wrap;
    }

    .stat-number-large {
        font-size: 24px;
    }

    .stat-divider {
        height: 25px;
    }

    #projects-section {
        padding: 50px 15px;
    }

    .projects-header h1,
    .skills-header h1,
    .service-header h1 {
        font-size: 32px;
    }

    .projects-header p,
    .skills-header p,
    .service-header p {
        font-size: 12px;
    }

    .project-content {
        padding: 16px;
    }

    .project-content h3 {
        font-size: 18px;
    }

    .project-content p {
        font-size: 12px;
    }

    .tag {
        font-size: 10px;
        padding: 5px 10px;
    }

    #service-sec {
        padding: 50px 15px;
    }

    .ser-comtainer {
        gap: 15px;
    }

    .services-sq {
        height: 100px;
    }

    #frontend-logo,
    #backend-logo,
    #gamedev-logo {
        font-size: 50px;
    }

    #frontend-logo-n {
        font-size: 16px;
    }

    .services-re {
        min-height: 150px;
        padding: 15px;
    }

    .frontend-text h1,
    .frontend-text-2 h1,
    .frontend-text-3 h1 {
        font-size: 18px;
    }

    .frontend-text p,
    .frontend-text-2 p,
    .frontend-text-3 p {
        font-size: 12px;
    }

    .card-con {
        width: 70px;
        height: 70px;
        transform: rotateX(35deg) rotateY(0deg) rotateZ(45deg);
    }

    .card-con::before {
        width: 120px;
        top: 128px;
    }

    #frontend-logo-in {
        font-size: 40px;
        transform: translate(-2px, 0px);
    }

    .services-re:hover #frontend-logo-in {
        transform: translate(-15px, -15px);
    }

    .services-re:hover .card-con {
        transform: rotateX(35deg) rotateY(0deg) rotateZ(45deg) translateZ(20px);
    }

    .c-container {
        width: 45px;
        height: 45px;
    }

    .c-container i {
        font-size: 24px;
    }

    .container-file {
        padding: 12px;
    }

    .container-file pre {
        font-size: 8px;
        line-height: 1.4;
    }

    #all-skills {
        padding: 50px 15px;
    }

    .skills-grid-new {
        gap: 14px;
    }

    .skill-card {
        padding: 18px 14px;
        gap: 12px;
    }

    .skill-icon {
        width: 45px;
        height: 45px;
    }

    .skill-icon i {
        font-size: 22px;
    }

    .skill-info h3 {
        font-size: 15px;
    }

    .skill-percent {
        font-size: 12px;
    }

    .hireme-sec {
        width: 90%;
        padding: 40px 20px;
    }

    .hire-content h1 {
        font-size: 28px;
    }

    .hire-content p {
        font-size: 14px;
    }

    .hireme-button {
        padding: 14px 36px;
        font-size: 16px;
    }

    .footer-socials {
        gap: 20px;
        margin-top: 30px;
        padding-bottom: 30px;
    }

    .social-icon-link {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    footer {
        margin-top: 30px;
    }

    footer p {
        font-size: 11px;
        height: auto;
        padding: 15px;
    }

    #github-section {
        padding: 25px 0;
    }

    .github-stats-compact {
        gap: 10px;
    }

    .stat-item {
        padding: 12px 16px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .stat-item i {
        font-size: 18px;
    }

    .stat-number {
        font-size: 18px;
    }

    .stat-label {
        font-size: 10px;
    }
}

@media (max-width: 375px) {
    .intro h1 {
        font-size: 32px;
    }

    .projects-header h1,
    .skills-header h1,
    .service-header h1 {
        font-size: 28px;
    }

    .services-sq {
        height: 90px;
    }

    #frontend-logo,
    #backend-logo,
    #gamedev-logo {
        font-size: 45px;
    }

    .card-con {
        width: 60px;
        height: 60px;
    }

    .card-con::before {
        top: 118px;
    }


    #frontend-logo-in {
        font-size: 35px;
    }

    .github-stats-minimal {
        gap: 12px;
    }

    .stat-number-large {
        font-size: 20px;
    }
}

.project-card,
.skill-card,
.services-re,
.services-sq,
.hireme-sec,
.footer-text,
.stat-item {
    position: relative;
    overflow: hidden;
}

.project-card::after,
.skill-card::after,
.services-re::after,
.services-sq::after,
.hireme-sec::after,
.footer-text::after,
.stat-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.15), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 3;
}

.project-card:hover::after,
.skill-card:hover::after,
.services-re:hover::after,
.services-sq:hover::after,
.hireme-sec:hover::after,
.footer-text:hover::after,
.stat-item:hover::after {
    opacity: 1;
}

#github-section {
    width: 100%;
    padding: 40px 0;
    background: rgb(8, 8, 8);
}

.github-stats-compact {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    background: rgba(18, 18, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.stat-item i {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.stat-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-number {
    color: rgba(255, 255, 255, 0.95);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-item[data-stat="repos"]:hover i {
    color: rgba(100, 149, 237, 0.9);
}

.stat-item[data-stat="followers"]:hover i {
    color: rgba(138, 43, 226, 0.9);
}

.stat-item[data-stat="following"]:hover i {
    color: rgba(50, 205, 50, 0.9);
}

.stat-item[data-stat="stars"]:hover i {
    color: rgba(255, 215, 0, 0.9);
}

@media (max-width: 768px) {
    #github-section {
        padding: 30px 0;
    }

    .github-stats-compact {
        width: 85%;
        gap: 12px;
    }

    .stat-item {
        padding: 14px 20px;
    }

    .stat-number {
        font-size: 20px;
    }
}