@import url('https://fonts.cdnfonts.com/css/minecraft-4');

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    overflow-x: clip;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    position: relative;
    min-height: 100vh;
    background-color: #f3f3f3;
    animation: page-enter 260ms ease-out both;
}

html.cart-open,
body.cart-open {
    overflow: hidden;
}

.page-loader {
    position: fixed;
    z-index: 10000;
    inset: 0;
    display: grid;
    place-content: center;
    justify-items: center;
    gap: 22px;
    background: #11151b;
    opacity: 0;
    visibility: hidden;
    transition: opacity 180ms ease, visibility 180ms ease;
}

body.page-loading .page-loader {
    opacity: 1;
    visibility: visible;
}

body.page-loading-slide .page-loader {
    opacity: 1;
    visibility: visible;
    animation: loader-fade-in 420ms ease-out both;
    transition: none;
}

body.page-loading-slide-reverse .page-loader {
    opacity: 1;
    visibility: visible;
    animation: loader-fade-in 420ms ease-out both;
    transition: none;
}

body.page-loading-slide > :not(.page-loader) {
    animation: page-slide-out-right 420ms cubic-bezier(0.65, 0, 0.35, 1) both;
}

body.page-loading-slide-reverse > :not(.page-loader) {
    animation: page-slide-out-left 420ms cubic-bezier(0.65, 0, 0.35, 1) both;
}

.page-loader img {
    width: min(160px, 45vw);
    max-height: 140px;
    object-fit: contain;
    animation: loader-pulse 1.4s ease-in-out infinite;
}

.page-loader-spinner {
    width: 28px;
    aspect-ratio: 1;
    border: 3px solid rgba(255, 255, 255, 0.25);
    border-top-color: #82b7ff;
    border-radius: 50%;
    animation: loader-spin 0.8s linear infinite;
}

@keyframes loader-pulse {
    50% {
        transform: scale(1.06);
        opacity: 0.72;
    }
}

@keyframes loader-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes page-enter {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

body.page-slide-enter > :not(.page-loader) {
    animation: page-slide-in 420ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

body.page-slide-enter-reverse > :not(.page-loader) {
    animation: page-slide-in-reverse 420ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

@keyframes page-slide-in {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes loader-slide-in {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes loader-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes page-slide-in-reverse {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes loader-slide-in-reverse {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes page-slide-out-right {
    to {
        transform: translateX(100vw);
    }
}

@keyframes page-slide-out-left {
    to {
        transform: translateX(-100vw);
    }
}

@media (prefers-reduced-motion: reduce) {
    body,
    body.page-slide-enter,
    body.page-slide-enter-reverse,
    body.page-loading-slide .page-loader {
        animation: none;
    }

    body.page-slide-enter > :not(.page-loader),
    body.page-slide-enter-reverse > :not(.page-loader),
    body.page-loading-slide > :not(.page-loader),
    body.page-loading-slide-reverse > :not(.page-loader) {
        animation: none;
    }

    .page-loader,
    .page-loader img,
    .page-loader-spinner {
        transition: none;
        animation: none;
    }

    body.page-loading-slide .page-loader {
        animation: none;
    }

    body.page-loading-slide-reverse .page-loader {
        animation: none;
    }

    .hero-image,
    .hero-title,
    .hero-subtitle,
    .about-page .about-eyebrow,
    .about-page .about-title,
    .about-page .about-description,
    .about-page .about-team-heading,
    .about-page .team-grid > .team-card,
    .about-page .about-back-link {
        animation: none;
    }
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: var(--page-background-image, url('Cyberpang.png'));
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.7;
    z-index: -2;
    transition: opacity 320ms ease;
}

body.background-fading::before {
    opacity: 0;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.05), rgba(255,255,255,0.85) 70%, rgba(255,255,255,0.95));
    z-index: -1;
}

.container-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #333;
    padding: 8px 30px;
    height: 55px;
    transition: background-color 220ms ease, backdrop-filter 220ms ease, box-shadow 220ms ease;
}

.container-navbar.is-scrolled {
    background: rgba(24, 28, 35, 0.28);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.navbar-brand {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo-img {
    width: 120px;
    height: auto;
    display: block;
}

.ul-navbar {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.navbar-cart {
    position: absolute;
    top: 50%;
    right: 30px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid transparent;
    border-radius: 8px;
    background: transparent;
    color: white;
    font-size: 21px;
    text-decoration: none;
    transform: translateY(-50%);
    transition: background-color 260ms ease, border-color 260ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.navbar-cart:active {
    transform: translateY(-50%) scale(0.9);
}

.cart-count {
    position: absolute;
    top: -3px;
    right: -3px;
    display: grid;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    place-items: center;
    border-radius: 999px;
    background: #9ee6c1;
    color: #10231c;
    font-size: 10px;
    font-weight: 800;
}

.cart-panel {
    position: relative;
    z-index: 1;
    width: min(520px, 100%);
    max-height: min(620px, calc(100vh - 40px));
    overflow-y: auto;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(13, 19, 28, 0.94);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
    color: #f5f7fb;
    animation: cart-pop-in 360ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cart-backdrop {
    position: fixed;
    z-index: 1100;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(5, 8, 12, 0.58);
    backdrop-filter: blur(8px) saturate(115%);
    cursor: default;
    animation: cart-backdrop-in 260ms ease-out both;
}

.cart-backdrop[hidden],
.cart-panel[hidden] {
    display: none;
}

.cart-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.cart-panel h2 {
    margin: 0;
    font-size: 15px;
}

.cart-close {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border: 1px solid transparent;
    border-radius: 6px;
    background: transparent;
    color: #b8c6d8;
    cursor: pointer;
    font-size: 13px;
}

.cart-close:hover,
.cart-close:focus-visible {
    border-color: rgba(255, 255, 255, 0.3);
    color: #f5f7fb;
}

@keyframes cart-pop-in {
    from {
        opacity: 0;
        filter: blur(8px);
        transform: scale(0.88);
    }

    to {
        opacity: 1;
        filter: blur(0);
        transform: scale(1);
    }
}

@keyframes cart-backdrop-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.cart-items {
    display: grid;
    gap: 10px;
}

.cart-line {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.06);
}

.cart-line img {
    width: 64px;
    height: 54px;
    flex: 0 0 64px;
    border-radius: 6px;
    object-fit: cover;
}

.cart-line-details {
    display: grid;
    flex: 1;
    gap: 4px;
    min-width: 0;
}

.cart-line-details strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cart-line-details span {
    color: #b8c6d8;
    font-size: 11px;
}

.cart-line-details b {
    color: #9ee6c1;
    font-size: 12px;
}

.cart-remove {
    padding: 7px 9px;
    border: 1px solid rgba(255, 158, 158, 0.5);
    border-radius: 6px;
    background: transparent;
    color: #ffb2b2;
    cursor: pointer;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.cart-remove:hover {
    background: rgba(255, 158, 158, 0.14);
    color: #ffd0d0;
}

.cart-checkout {
    padding: 8px 11px;
    border: 1px solid rgba(158, 230, 193, 0.65);
    border-radius: 6px;
    background: #9ee6c1;
    color: #10231c;
    cursor: pointer;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
}

.cart-checkout:hover:not(:disabled) {
    background: #c2f5d9;
}

.cart-checkout:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
}

.cart-line strong,
.cart-total strong {
    color: #9ee6c1;
}

.cart-empty {
    margin: 0;
    color: #b8c6d8;
    font-size: 12px;
}

.cart-total {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    font-weight: 700;
}

.navbar-cart:hover {
    border-color: rgba(255, 255, 255, 0.7);
    background-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-50%) scale(1.08);
}

.navbar-cart:hover:active {
    transform: translateY(-50%) scale(0.9);
}

.lu-navbar {
    list-style: none;
}

.lu-navbar a {
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    border: 1px solid transparent;
    border-radius: 5px;
    display: inline-block;
}

.lu-navbar a:hover {
    border-color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 220px;
    padding: 30px 20px;
}

.hero-scene {
    position: relative;
    width: min(1100px, 90%);
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin: 0 auto;
    padding-bottom: 10px;
}

.hero-image {
    position: absolute;
    right: -17%;
    bottom: -50%;
    width: 340px;
    height: auto;
    display: block;
    opacity: 0.9;
    z-index: 0;
    pointer-events: none;
    animation: content-pop-up 760ms cubic-bezier(0.16, 1, 0.3, 1) 100ms both;
}

.hero-text {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-text h1 {
    animation: content-pop-up 680ms cubic-bezier(0.16, 1, 0.3, 1) 220ms both;
}

.hero-text h2 {
    animation: content-pop-up 680ms cubic-bezier(0.16, 1, 0.3, 1) 400ms both;
}

.hero-subtitle {
    animation: content-pop-up 680ms cubic-bezier(0.16, 1, 0.3, 1) 580ms both;
}

@keyframes content-pop-up {
    from {
        opacity: 0;
        transform: translateY(42px) scale(0.94);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-title {
    font-family: 'Minecraft', 'Minecraftia', monospace;
    font-size: 100px;
    font-weight: 400;
    letter-spacing: 1px;
    margin:0 ;
    color:#333;
    text-transform: uppercase;
    line-height: 1.1;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    text-shadow:
        1px 1px 0 #b7c2d3,
        2px 2px 0 #a1a9b6,
        3px 3px 0 #8a919d,
        4px 4px 0 #727b87,
        5px 5px 0 #5f6670,
        6px 6px 12px rgba(0, 0, 0, 0.51);
}

.hero-subtitle {
    margin-top: 18px;
    font-size: 18px;
    color: rgba(35, 35, 35, 0.82);
    max-width: 720px;
    line-height: 1.5;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(16px) saturate(130%);
    -webkit-backdrop-filter: blur(16px) saturate(130%);
    border-radius: 18px;
    padding: 16px 24px;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.12), inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 15px 28px rgba(15, 23, 42, 0.08), 0 4px 12px rgba(80, 80, 80, 0.05);
    margin-left: auto;
    margin-right: auto;
}


.showcase-section {
    width: 100%;
    overflow: hidden;
    padding: 30px 20px 40px;
    position: relative;
    background-color: rgba(128, 128, 128, 0.45);
}

.showcase-track {
    display: flex;
    width: max-content;
    animation: marquee 20s linear infinite;
}

.showcase-group {
    display: flex;
    flex: 0 0 auto;
    gap: 22px;
    padding-right: 22px;
}

.showcase-item {
    width: 220px;
    height: 140px;
    overflow: hidden;
    flex: 0 0 220px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(16px) saturate(130%);
    -webkit-backdrop-filter: blur(16px) saturate(130%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 10px 20px rgba(15, 23, 42, 0.08);
}

.showcase-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.product-area {
    overflow: hidden;
    margin-top: 28px;
    padding: 1px 0 40px;
    background: aliceblue;
}

.product-title {
    width: min(1060px, calc(100% - 40px));
    margin: 28px auto 0;
    color: #1c2b39;
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 22px;
    letter-spacing: 2px;
    text-align: center;
}

.build-catalog {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    width: min(1060px, calc(100% - 40px));
    margin: 34px auto 0;
}

.build-card {
    position: relative;
    z-index: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 16px;
    background: rgba(8, 13, 20, 0.72);
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.12);
    color: #f5f7fb;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

@media (hover: hover) and (pointer: fine) {
    .build-card:hover {
        z-index: 1;
        border-color: rgba(255, 255, 255, 0.72);
        box-shadow: 0 20px 34px rgba(15, 23, 42, 0.24);
        transform: translateY(-10px) scale(1.03);
    }
}

.build-card img {
    display: block;
    width: 100%;
    height: 145px;
    object-fit: cover;
}

.build-card-info {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 7px 10px;
    padding: 13px 14px 12px;
}

.build-card-info h3 {
    grid-column: 1 / -1;
    margin: 0;
    font-size: 15px;
}

.build-card-info span {
    color: #b8c6d8;
    font-size: 11px;
}

.build-card-info strong {
    color: #9ee6c1;
    font-size: 13px;
}

.build-card-info p {
    grid-column: 1 / -1;
    margin: 0;
    color: #ffd166;
    font-size: 12px;
    font-weight: 700;
}

.buy-button {
    display: inline-flex;
    grid-column: 1 / -1;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    margin-top: 3px;
    padding: 9px 12px;
    border: 1px solid rgba(158, 230, 193, 0.65);
    border-radius: 8px;
    background: #9ee6c1;
    color: #10231c;
    cursor: pointer;
    font-family: inherit;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    transition: background-color 180ms ease, transform 180ms ease;
}

.buy-button:hover {
    background: #c2f5d9;
    transform: translateY(-2px);
}

.buy-button.is-added {
    background: #c2f5d9;
    transform: scale(0.98);
}

.buy-button.cart-added,
.buy-button.cart-added:hover {
    border-color: #aeb5ba;
    background: #aeb5ba;
    color: #3e454a;
    cursor: not-allowed;
    transform: none;
}

.buy-button:focus-visible {
    outline: 2px solid #f5f7fb;
    outline-offset: 3px;
}

.build-card-info small {
    color: #aebdce;
    font-weight: 400;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.site-footer {
    background-color: #0b0c0f;
    color: #f5f7fb;
}

.footer-inner {
    width: min(1350px, calc(100% - 64px));
    margin: 0 auto;
    padding: 64px 0 48px;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(320px, 2.2fr) repeat(3, minmax(130px, 1fr));
    gap: 48px;
    align-items: start;
}

.footer-brand-name {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #f5f7fb;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.footer-logo {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.footer-description {
    max-width: 410px;
    margin: 16px 0 20px;
    color: #c1ccdc;
    font-size: 14px;
    line-height: 1.7;
}

.footer-newsletter {
    display: flex;
    gap: 8px;
    max-width: 390px;
}

.footer-newsletter input {
    min-width: 0;
    flex: 1;
    padding: 0 13px;
    border: 1px solid #39414d;
    border-radius: 10px;
    background: #191e26;
    color: #f5f7fb;
    font: inherit;
}

.footer-newsletter input::placeholder {
    color: #8190a6;
}

.footer-newsletter button {
    min-height: 42px;
    padding: 0 18px;
    border: 0;
    border-radius: 10px;
    background: #82b7ff;
    color: #0b0c0f;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.footer-socials span {
    padding: 7px 11px;
    border: 1px solid #303945;
    border-radius: 20px;
    color: #d6deea;
    font-size: 11px;
}

.navbar-discord-link {
    position: absolute;
    top: 50%;
    right: 76px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid #303945;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-50%);
    transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.navbar-discord-link:hover,
.navbar-discord-link:focus-visible {
    border-color: #5865f2;
    background: rgba(88, 101, 242, 0.14);
    transform: translateY(calc(-50% - 2px));
}

.navbar-discord-link:focus-visible {
    outline: 2px solid #aab0ff;
    outline-offset: 3px;
}

.navbar-discord-link img {
    display: block;
    width: 18px;
    height: 18px;
}

.footer-link-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding-top: 8px;
}

.footer-link-group h2 {
    margin: 0 0 4px;
    color: #d6deea;
    font-size: 11px;
    letter-spacing: 1.5px;
}

.footer-link-group a,
.footer-legal-links a {
    color: #f0f3f8;
    font-size: 13px;
    text-decoration: none;
}

.footer-link-group a:hover,
.footer-legal-links a:hover {
    color: #82b7ff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-top: 70px;
}

.footer-legal-copy p {
    margin: 0 0 7px;
    color: #aab6c7;
    font-size: 11px;
    line-height: 1.5;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
}

.footer-legal-links a,
.footer-legal-links span {
    font-size: 11px;
}

.footer-legal-links span {
    padding: 8px 11px;
    border: 1px solid #184c3d;
    border-radius: 9px;
    color: #74e0b1;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.about-page {
    width: min(1000px, calc(100% - 48px));
    min-height: 55vh;
    margin: 0 auto;
    padding: 90px 0;
    color: #242a32;
}

.about-intro {
    padding: 28px clamp(20px, 4vw, 36px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-left: 4px solid #527da8;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 16px 40px rgba(26, 39, 54, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.about-eyebrow {
    margin: 0 0 14px;
    color: #527da8;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 3px;
    animation: content-pop-up 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.about-title {
    margin: 0;
    font-family: 'Minecraft', 'Minecraftia', monospace;
    font-size: clamp(38px, 7vw, 72px);
    font-weight: 400;
    line-height: 1.15;
    text-shadow: 3px 3px 0 rgba(80, 94, 110, 0.35);
    animation: content-pop-up 620ms cubic-bezier(0.16, 1, 0.3, 1) 120ms both;
}

.about-description {
    max-width: 680px;
    margin: 24px 0 0;
    font-size: 18px;
    line-height: 1.8;
    animation: content-pop-up 620ms cubic-bezier(0.16, 1, 0.3, 1) 240ms both;
}

.about-team {
    margin-top: 42px;
}

.about-team-label {
    margin: 0 0 7px;
    color: #527da8;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-team-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 18px;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.38);
    box-shadow: 0 12px 32px rgba(26, 39, 54, 0.1);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    animation: content-pop-up 620ms cubic-bezier(0.16, 1, 0.3, 1) 360ms both;
}

.about-team-heading h2 {
    margin: 0;
    color: #242a32;
    font-size: 26px;
}

.team-total {
    padding: 7px 10px;
    border: 1px solid rgba(82, 125, 168, 0.35);
    border-radius: 6px;
    color: #416b94;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.team-card {
    min-width: 0;
    min-height: 190px;
    padding: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(37, 82, 82, 0.96), rgba(13, 19, 28, 0.96));
    color: #f5f7fb;
    box-shadow: 0 8px 18px rgb(135, 136, 138);
}

.team-grid > .team-card {
    flex: 0 1 calc((100% - 56px) / 5);
    animation: content-pop-up 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.team-grid > .team-card:nth-child(1) { animation-delay: 440ms; }
.team-grid > .team-card:nth-child(2) { animation-delay: 520ms; }
.team-grid > .team-card:nth-child(3) { animation-delay: 600ms; }
.team-grid > .team-card:nth-child(4) { animation-delay: 680ms; }
.team-grid > .team-card:nth-child(5) { animation-delay: 760ms; }
.team-grid > .team-card:nth-child(6) { animation-delay: 840ms; }
.team-grid > .team-card:nth-child(7) { animation-delay: 920ms; }
.team-grid > .team-card:nth-child(8) { animation-delay: 1000ms; }
.team-grid > .team-card:nth-child(9) { animation-delay: 1080ms; }
.team-grid > .team-card:nth-child(10) { animation-delay: 1160ms; }

.team-card-top {
    display: flex;
    justify-content: space-between;
    gap: 6px;
    color: #9eb9d5;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
}

.team-avatar {
    display: grid;
    width: 52px;
    aspect-ratio: 1;
    place-items: center;
    margin: 16px auto 12px;
    object-fit: cover;
    border: 1px solid rgba(130, 183, 255, 0.65);
    border-radius: 50%;
    background: rgba(130, 183, 255, 0.12);
    color: #b8d7ff;
    font-size: 13px;
    font-weight: 700;
}

.team-card-with-photo {
    position: relative;
    isolation: isolate;
    padding: 0;
}

.team-card-with-photo::after {
    position: absolute;
    z-index: -1;
    inset: -1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: inherit;
    background: linear-gradient(to bottom, rgba(8, 13, 20, 0.16) 20%, rgba(8, 13, 20, 0.55) 100%);
    content: "";
}

.team-card-image {
    --avatar-size: 1;
    --avatar-position: 50% 50%;
    position: absolute;
    z-index: -2;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--avatar-position);
    transform: scale(var(--avatar-size));
    transform-origin: center;
}

.team-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 190px;
    flex-direction: column;
    padding: 14px;
}

.team-card-spacer {
    flex: 1;
}

.team-card h3 {
    margin: 0;
    text-align: center;
    font-size: 15px;
}

.team-card > p,
.team-card-content > p {
    margin: 6px 0 12px;
    color: #aebdce;
    text-align: center;
    font-size: 9px;
    letter-spacing: 1px;
}

.team-id {
    display: block;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    color: #82b7ff;
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.about-back-link {
    display: inline-block;
    margin-top: 32px;
    padding: 12px 18px;
    border-radius: 8px;
    background: #333;
    color: white;
    text-decoration: none;
    animation: content-pop-up 620ms cubic-bezier(0.16, 1, 0.3, 1) 1280ms both;
}

.about-back-link:hover {
    background: #4b4b4b;
}

@media (max-width: 900px) {
    .footer-main {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 36px 24px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 48px;
    }

    .team-grid > .team-card {
        flex-basis: calc((100% - 28px) / 3);
    }
}

@media (max-width: 600px) {
    .footer-inner {
        width: min(100% - 40px, 480px);
        padding: 48px 0 32px;
    }

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 20px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-link-group:last-child {
        grid-column: 1 / -1;
    }

    .footer-newsletter {
        width: 100%;
    }

    .footer-newsletter button {
        padding: 0 13px;
    }

    .footer-legal-links {
        gap: 12px;
    }

    .about-page {
        width: calc(100% - 40px);
        padding: 64px 0;
    }

    .team-grid {
        gap: 10px;
    }

    .team-grid > .team-card {
        flex-basis: calc((100% - 10px) / 2);
    }

    .team-card {
        padding: 12px;
    }
}

@media (max-width: 900px) {
    .container-navbar {
        padding-right: 20px;
        padding-left: 20px;
    }

    .navbar-cart {
        right: 20px;
    }

    .navbar-discord-link {
        right: 66px;
    }

    .hero-scene {
        width: 100%;
    }

    .hero-title {
        font-size: 68px;
    }

    .hero-image {
        right: -6%;
        bottom: -32%;
        width: 280px;
    }

    .footer-inner {
        width: calc(100% - 40px);
    }
}

@media (max-width: 600px) {
    .container-navbar {
        height: auto;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        padding: 8px 12px 10px;
    }

    .logo-img {
        width: 100px;
    }

    .navbar-cart {
        top: 19px;
        right: 12px;
        transform: none;
    }

    .navbar-discord-link {
        top: 19px;
        right: 58px;
        transform: none;
    }

    .navbar-discord-link:hover,
    .navbar-discord-link:focus-visible {
        transform: scale(1.08);
    }

    .navbar-cart:hover {
        transform: scale(1.08);
    }

    .navbar-cart:hover:active {
        transform: scale(0.9);
    }

    .ul-navbar {
        position: static;
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
        transform: none;
    }

    .lu-navbar a {
        padding: 7px 10px;
        font-size: 13px;
    }

    .hero {
        min-height: 0;
        padding: 20px 16px 10px;
    }

    .hero-scene {
        min-height: 270px;
        align-items: center;
        padding-bottom: 0;
    }

    .hero-title {
        font-size: 38px;
        line-height: 1.2;
    }

    .hero-image {
        right: -12px;
        bottom: -36px;
        width: 180px;
        opacity: 0.62;
    }

    .hero-subtitle {
        width: 100%;
        max-width: 500px;
        margin-top: 14px;
        padding: 12px 14px;
        border-radius: 12px;
        font-size: 15px;
    }

    .showcase-section {
        padding: 22px 20px 28px;
    }

    .showcase-group {
        gap: 14px;
        padding-right: 14px;
    }

    .showcase-item {
        width: 190px;
        height: 120px;
        flex-basis: 190px;
        border-radius: 12px;
    }

    .build-catalog {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .build-card img {
        height: 120px;
    }

    .footer-main {
        gap: 28px 16px;
    }

    .footer-bottom {
        gap: 16px;
        margin-top: 40px;
    }

    .about-page {
        min-height: 0;
        padding: 56px 0;
    }

    .about-title {
        font-size: 36px;
    }

    .about-description {
        margin-top: 18px;
        font-size: 16px;
        line-height: 1.65;
    }

    .about-team {
        margin-top: 32px;
    }

    .about-team-heading h2 {
        font-size: 22px;
    }

    .team-card,
    .team-card-content {
        min-height: 176px;
    }

    .team-card h3 {
        font-size: 14px;
        overflow-wrap: anywhere;
    }

    .about-back-link {
        margin-top: 24px;
    }
}

@media (max-width: 380px) {
    .hero-title {
        font-size: 30px;
    }

    .hero-image {
        right: -16px;
        width: 155px;
        opacity: 0.52;
    }

    .footer-inner {
        width: calc(100% - 32px);
    }

    .footer-newsletter button {
        padding: 0 10px;
        font-size: 13px;
    }

    .footer-link-group h2 {
        font-size: 10px;
    }

    .team-grid {
        gap: 8px;
    }

    .team-grid > .team-card {
        flex-basis: calc((100% - 8px) / 2);
    }

    .team-card {
        padding: 10px;
    }

    .team-card-top {
        font-size: 7px;
        letter-spacing: 0.5px;
    }
}
