* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: "Segoe UI", Arial, sans-serif;
    background: #080808;
    color: #f5f5f5;
    overflow-x: hidden;
}

button,
a {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-shell {
    min-height: 100vh;
    position: relative;
}

.minimal-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    padding: 22px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    mix-blend-mode: difference;
}

.brand {
    font-size: 18px;
    letter-spacing: -0.04em;
}

.brand span {
    opacity: 0.7;
}

.brand strong {
    font-weight: 800;
}

.quick-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-nav button,
.quick-nav a {
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    padding: 8px 13px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 13px;
    transition: 0.25s ease;
    backdrop-filter: blur(14px);
}

.quick-nav button:hover,
.quick-nav a:hover {
    background: #ffffff;
    color: #080808;
}

.split-landing {
    min-height: 100vh;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    transition: 0.6s ease;
}

.world-panel {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding: 120px 34px 80px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    isolation: isolate;
    transition:
            flex 0.5s ease,
            transform 0.5s ease,
            filter 0.5s ease;
}

.world-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    transition: 0.5s ease;
}

.world-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
            linear-gradient(to top, rgba(0, 0, 0, 0.92), transparent 60%),
            radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 35%);
    opacity: 0.95;
}

/*.game-panel::before {*/
/*    background:*/
/*            radial-gradient(circle at 20% 25%, rgba(255, 80, 80, 0.5), transparent 30%),*/
/*            linear-gradient(145deg, #2b0909, #100406 65%, #070707);*/
/*}*/

/*.xr-panel::before {*/
/*    background:*/
/*            radial-gradient(circle at 50% 25%, rgba(94, 234, 212, 0.5), transparent 30%),*/
/*            linear-gradient(145deg, #062c2a, #061014 65%, #070707);*/
/*}*/

.web-panel::before {
    background:
            radial-gradient(circle at 80% 25%, rgba(96, 165, 250, 0.55), transparent 30%),
            linear-gradient(145deg, #071a3c, #070b18 65%, #070707);
}

.world-panel:hover {
    transform: scale(1.015);
}

.split-landing:hover .world-panel:not(:hover) {
    filter: grayscale(0.8) brightness(0.55);
}

.panel-bg-code {
    position: absolute;
    top: 82px;
    right: 24px;
    font-size: clamp(80px, 13vw, 180px);
    font-weight: 900;
    letter-spacing: -0.12em;
    color: rgba(255, 255, 255, 0.07);
    z-index: -1;
}

.panel-content {
    max-width: 420px;
}

.panel-kicker {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    opacity: 0.72;
    margin-bottom: 12px;
}

.panel-content h1 {
    font-size: clamp(54px, 9vw, 130px);
    line-height: 0.82;
    letter-spacing: -0.1em;
    margin-bottom: 22px;
}

.panel-content p:last-child {
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    max-width: 340px;
}

.panel-open {
    width: fit-content;
    margin-top: 28px;
    border: none;
    background: #ffffff;
    color: #080808;
    padding: 11px 16px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    transition: 0.25s ease;
}

.panel-open:hover {
    transform: translateY(-3px);
}

.detail-view {
    display: none;
    min-height: 100vh;
    padding: 120px 34px 90px;
    opacity: 0;
    transform: translateY(26px);
}

body.detail-active .split-landing {
    display: none;
}

body.detail-active .detail-view {
    display: block;
    animation: detailEnter 0.65s ease forwards;
}

@keyframes detailEnter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.back-button {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 999px;
    cursor: pointer;
    margin-bottom: 38px;
    backdrop-filter: blur(12px);
}

.back-button:hover {
    background: #ffffff;
    color: #080808;
}

.detail-layout {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 70px;
    max-width: 1180px;
    margin: 0 auto;
}

.detail-identity {
    position: sticky;
    top: 120px;
    align-self: start;
}

.detail-number {
    font-size: 120px;
    line-height: 0.8;
    font-weight: 900;
    letter-spacing: -0.12em;
    opacity: 0.12;
    margin-bottom: 24px;
}

.detail-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    opacity: 0.62;
    margin-bottom: 14px;
}

.detail-identity h2 {
    font-size: clamp(64px, 10vw, 150px);
    line-height: 0.82;
    letter-spacing: -0.1em;
    margin-bottom: 30px;
}

.detail-identity > p:last-child {
    color: rgba(255, 255, 255, 0.72);
    font-size: 20px;
    max-width: 470px;
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.detail-block {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.055);
    border-radius: 32px;
    padding: 30px;
    backdrop-filter: blur(18px);
}

.detail-block h3 {
    font-size: 24px;
    margin-bottom: 18px;
    letter-spacing: -0.04em;
}

.detail-block p {
    color: rgba(255, 255, 255, 0.72);
}

.skill-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-cloud span {
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.11);
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    font-weight: 700;
}

.project-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.project-card {
    padding: 20px;
    border-radius: 22px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.project-card h4 {
    font-size: 20px;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.project-card p {
    color: rgba(255, 255, 255, 0.66);
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 14px;
}

.project-tags span {
    font-size: 12px;
    opacity: 0.82;
}

.floating-footer {
    position: fixed;
    left: 34px;
    right: 34px;
    bottom: 22px;
    z-index: 40;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    mix-blend-mode: difference;
}

body.theme-game {
    background:
            radial-gradient(circle at top left, rgba(255, 80, 80, 0.22), transparent 35%),
            #080808;
}

body.theme-xr {
    background:
            radial-gradient(circle at top left, rgba(94, 234, 212, 0.2), transparent 35%),
            #080808;
}

body.theme-web {
    background:
            radial-gradient(circle at top left, rgba(96, 165, 250, 0.22), transparent 35%),
            #080808;
}

@media (max-width: 900px) {
    .minimal-header {
        padding: 18px;
        align-items: flex-start;
        gap: 16px;
        flex-direction: column;
        mix-blend-mode: normal;
        background: rgba(8, 8, 8, 0.76);
        backdrop-filter: blur(16px);
    }

    .quick-nav {
        flex-wrap: wrap;
    }

    .split-landing {
        grid-template-columns: 1fr;
    }

    .world-panel {
        min-height: 58vh;
        padding: 120px 22px 54px;
    }

    .detail-view {
        padding: 150px 20px 80px;
    }

    .detail-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .detail-identity {
        position: relative;
        top: auto;
    }

    .detail-number {
        font-size: 80px;
    }

    .floating-footer {
        display: none;
    }
}

@media (max-width: 560px) {
    .panel-content h1 {
        font-size: 64px;
    }

    .detail-identity h2 {
        font-size: 68px;
    }

    .detail-block {
        border-radius: 24px;
        padding: 22px;
    }

    .quick-nav button,
    .quick-nav a {
        font-size: 12px;
        padding: 7px 10px;
    }
    .project-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .project-tags {
        justify-content: flex-start;
        margin-left: 0;
    }
}

.scene-header {
    max-width: 1180px;
    margin: 0 auto 42px;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 40px;
    align-items: end;
}

.scene-number {
    font-size: clamp(90px, 13vw, 180px);
    line-height: 0.75;
    font-weight: 900;
    letter-spacing: -0.14em;
    color: rgba(255, 255, 255, 0.12);
}

.scene-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.58);
    margin-bottom: 14px;
}

.scene-header h2 {
    font-size: clamp(72px, 13vw, 190px);
    line-height: 0.78;
    letter-spacing: -0.12em;
    margin-bottom: 28px;
}

.scene-header p:last-child {
    max-width: 720px;
    font-size: 21px;
    color: rgba(255, 255, 255, 0.72);
}

.scene-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 22px;
}

.scene-main-card,
.scene-stack-card,
.scene-projects,
.scene-process {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
}

.scene-main-card {
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.scene-main-card::before,
.scene-stack-card::before,
.scene-projects::before,
.scene-process::before {
    content: "";
    position: absolute;
    inset: -40%;
    opacity: 0.22;
    pointer-events: none;
    background: radial-gradient(circle, currentColor, transparent 58%);
}

body.theme-game .scene-main-card,
body.theme-game .scene-stack-card,
body.theme-game .scene-projects,
body.theme-game .scene-process {
    color: #ff6b6b;
}

body.theme-xr .scene-main-card,
body.theme-xr .scene-stack-card,
body.theme-xr .scene-projects,
body.theme-xr .scene-process {
    color: #5eead4;
}

body.theme-web .scene-main-card,
body.theme-web .scene-stack-card,
body.theme-web .scene-projects,
body.theme-web .scene-process {
    color: #60a5fa;
}

.card-index {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: fit-content;
    margin-bottom: 18px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.scene-main-card h3,
.scene-stack-card h3,
.section-mini-title h3 {
    position: relative;
    z-index: 1;
    font-size: 30px;
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: 18px;
    color: #ffffff;
}

.scene-main-card p {
    position: relative;
    z-index: 1;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
}

.skill-orbit {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.skill-orbit span {
    padding: 10px 13px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    font-weight: 700;
    transition: 0.25s ease;
}

.skill-orbit span:hover {
    transform: translateY(-4px) rotate(-1deg);
    background: rgba(255, 255, 255, 0.16);
}

.scene-projects {
    grid-column: 1 / -1;
}

.section-mini-title {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}

.section-mini-title span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.54);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.project-showcase {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.showcase-card {
    min-height: 260px;
    border-radius: 26px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
            linear-gradient(to bottom, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
            rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.25s ease;
}

.showcase-card:hover {
    transform: translateY(-6px);
    background:
            linear-gradient(to bottom, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
            rgba(0, 0, 0, 0.28);
}

.showcase-card .project-num {
    font-size: 13px;
    color: currentColor;
    font-weight: 900;
}

.showcase-card h4 {
    font-size: 24px;
    line-height: 1.05;
    letter-spacing: -0.05em;
    color: #ffffff;
    margin: 24px 0 12px;
}

.showcase-card p {
    color: rgba(255, 255, 255, 0.66);
    font-size: 15px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 18px;
}

.project-tags span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.66);
}

.scene-process {
    grid-column: 1 / -1;
}

.process-line {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.process-step {
    min-height: 170px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.process-step span {
    display: block;
    margin-bottom: 20px;
    color: currentColor;
    font-weight: 900;
}

.process-step h4 {
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: -0.03em;
}

.process-step p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
}

@media (max-width: 980px) {
    .scene-header {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .scene-grid {
        grid-template-columns: 1fr;
    }

    .project-showcase {
        grid-template-columns: 1fr;
    }

    .process-line {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .scene-header h2 {
        font-size: 76px;
    }

    .scene-number {
        font-size: 90px;
    }

    .scene-main-card,
    .scene-stack-card,
    .scene-projects,
    .scene-process {
        border-radius: 24px;
        padding: 22px;
    }

    .process-line {
        grid-template-columns: 1fr;
    }

    .showcase-card {
        min-height: auto;
    }
}

.project-meta {
    display: block;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 12px;
}

.scene-certificates {
    grid-column: 1 / -1;
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
}

.scene-certificates::before {
    content: "";
    position: absolute;
    inset: -40%;
    opacity: 0.18;
    pointer-events: none;
    background: radial-gradient(circle, currentColor, transparent 58%);
}

body.theme-game .scene-certificates {
    color: #ff6b6b;
}

body.theme-xr .scene-certificates {
    color: #5eead4;
}

body.theme-web .scene-certificates {
    color: #60a5fa;
}

.certificate-list {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.certificate-card {
    padding: 22px;
    border-radius: 24px;
    background: rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.09);
    transition: 0.25s ease;
}

.certificate-card:hover {
    transform: translateY(-4px);
    background: rgba(0, 0, 0, 0.34);
}

.cert-date {
    display: inline-flex;
    margin-bottom: 14px;
    color: currentColor;
    font-size: 13px;
    font-weight: 900;
}

.certificate-card h4 {
    color: #ffffff;
    font-size: 21px;
    line-height: 1.15;
    letter-spacing: -0.04em;
    margin-bottom: 8px;
}

.cert-issuer,
.cert-credential,
.cert-empty p {
    color: rgba(255, 255, 255, 0.64);
    font-size: 14px;
}

.cert-link,
.cert-empty a {
    display: inline-flex;
    width: fit-content;
    margin-top: 16px;
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    transition: 0.25s ease;
}

.cert-link:hover,
.cert-empty a:hover {
    transform: translateY(-2px);
    background: #ffffff;
    color: #080808;
}

.cert-empty {
    grid-column: 1 / -1;
    padding: 22px;
    border-radius: 24px;
    background: rgba(0, 0, 0, 0.24);
    border: 1px dashed rgba(255, 255, 255, 0.18);
}

@media (max-width: 760px) {
    .certificate-list {
        grid-template-columns: 1fr;
    }

    .scene-certificates {
        border-radius: 24px;
        padding: 22px;
    }
}

.about-view {
    display: none;
    min-height: 100vh;
    padding: 120px 34px 90px;
    opacity: 0;
    transform: translateY(26px);
}

body.about-active .split-landing {
    display: none;
}

body.about-active .detail-view {
    display: none;
}

body.about-active .about-view {
    display: block;
    animation: detailEnter 0.65s ease forwards;
}

.about-wrapper {
    max-width: 1180px;
    margin: 0 auto;
}

.about-hero {
    margin-bottom: 42px;
}

.about-kicker {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.58);
    margin-bottom: 16px;
}

.about-hero h2 {
    max-width: 900px;
    font-size: clamp(56px, 10vw, 130px);
    line-height: 0.88;
    letter-spacing: -0.09em;
    margin-bottom: 28px;
}

.about-hero p {
    max-width: 720px;
    font-size: 21px;
    color: rgba(255, 255, 255, 0.72);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 22px;
}

.about-card {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
}

.about-main {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.about-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    opacity: 0.18;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.45), transparent 58%);
}

.about-card span,
.about-card h3,
.about-card p,
.about-card ul,
.about-tags,
.about-links {
    position: relative;
    z-index: 1;
}

.about-card > span {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 18px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.about-card h3 {
    color: #ffffff;
    font-size: 30px;
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: 18px;
}

.about-card p,
.about-card li {
    color: rgba(255, 255, 255, 0.68);
    font-size: 16px;
    line-height: 1.65;
}

.about-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.about-card li::before {
    content: "→";
    margin-right: 8px;
    color: #ffffff;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-tags span {
    padding: 10px 13px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    font-weight: 700;
}

.about-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-links a {
    display: inline-flex;
    width: fit-content;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    transition: 0.25s ease;
}

.about-links a:hover {
    transform: translateY(-2px);
    background: #ffffff;
    color: #080808;
}

@media (max-width: 900px) {
    .about-view {
        padding: 150px 20px 80px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-card {
        border-radius: 24px;
        padding: 22px;
    }
}

@media (max-width: 560px) {
    .about-hero h2 {
        font-size: 58px;
    }

    .about-hero p {
        font-size: 17px;
    }
}
.about-project-list,
.experience-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 16px;
}

.about-project-item,
.experience-item {
    padding: 18px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.about-project-item strong,
.experience-item strong {
    display: block;
    color: #ffffff;
    font-size: 17px;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.experience-item small {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.46);
    font-size: 12px;
    font-weight: 700;
}

.about-project-item p,
.experience-item p {
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
    line-height: 1.55;
}
.about-project-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 18px;
}

.about-project-item {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 18px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(0, 0, 0, 0.26);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.25s ease;
}

.about-project-item:hover {
    transform: translateY(-4px);
    background: rgba(0, 0, 0, 0.36);
    border-color: rgba(255, 255, 255, 0.22);
}

.project-image {
    width: 100%;
    min-height: 130px;
    border-radius: 18px;
    overflow: hidden;
    background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
            rgba(255, 255, 255, 0.04);
}

.project-image img {
    width: 100%;
    height: 100%;
    min-height: 130px;
    object-fit: cover;
    display: block;
    transition: 0.35s ease;
}

.about-project-item:hover .project-image img {
    transform: scale(1.06);
}

.project-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.project-content strong {
    display: block;
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 10px;
    letter-spacing: -0.04em;
}

.project-content p {
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 14px;
    flex: 1;
}

.project-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 9px 13px;
    border-radius: 999px;
    background: #ffffff;
    color: #080808;
    font-size: 12px;
    font-weight: 900;
    transition: 0.25s ease;
}

.project-actions a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.82);
}

.project-actions a:nth-child(2) {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.project-actions a:nth-child(2):hover {
    background: #ffffff;
    color: #080808;
}

@media (max-width: 760px) {
    .about-project-item {
        grid-template-columns: 1fr;
    }

    .project-image,
    .project-image img {
        min-height: 190px;
    }
}
.about-projects-card {
    grid-column: 1 / -1;
}

.about-projects-card .about-project-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.about-projects-card .about-project-item {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.about-projects-card .project-image {
    width: 75%;
    height: 210px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 16px;
    align-self: center;
}

.about-projects-card .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-projects-card .project-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.about-projects-card .project-content p {
    flex: 1;
}

.about-projects-card .project-actions {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 900px) {
    .about-projects-card .about-project-list {
        grid-template-columns: 1fr;
    }

    .about-projects-card .project-image {
        height: 220px;
    }
}
.project-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.project-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-tags {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 7px;
    margin-left: auto;
}

.project-tags span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.project-tags .tag-xr {
    color: #5eead4;
    border-color: rgba(94, 234, 212, 0.35);
    background: rgba(94, 234, 212, 0.08);
}

.project-tags .tag-game {
    color: #ff6b6b;
    border-color: rgba(255, 107, 107, 0.35);
    background: rgba(255, 107, 107, 0.08);
}

.project-tags .tag-web {
    color: #60a5fa;
    border-color: rgba(96, 165, 250, 0.35);
    background: rgba(96, 165, 250, 0.08);
}

.panel-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -4;

    opacity: 0.48;
    filter: grayscale(0.12) brightness(1.05) contrast(1.08) saturate(1.12);

    transform: scale(1.04);
    transition:
            opacity 0.45s ease,
            filter 0.45s ease,
            transform 0.6s ease;
}

.world-panel:hover .panel-video {
    opacity: 0.75;
    filter: grayscale(0) brightness(1.18) contrast(1.12) saturate(1.25);
    transform: scale(1.08);
}

.world-panel::before {
    opacity: 0.72;
}

.world-panel:hover::before {
    opacity: 0.34;
}

@media (max-width: 760px) {
    .panel-video {
        opacity: 0.18;
    }
}