:root {
    --bg: #050a14;
    --bg-soft: #0b1220;
    --card: rgba(255, 255, 255, 0.04);
    --border: rgba(96, 165, 250, 0.18);
    --text: #ffffff;
    --muted: #cbd5e1;
    --blue: #175ddc;
    --blue-light: #60a5fa;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Work Sans", Arial, Helvetica, sans-serif;
}

img {
    max-width: 100%;
}

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

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

/* NAVBAR */

.jin-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;

    background: rgba(5, 10, 20, 0.72);
    backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand img {
    width: 104px;
    height: 104px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-links a {
    font-weight: 700;
    color: #e5e7eb;
    transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--blue-light);
    text-shadow: 0 0 18px rgba(96, 165, 250, 0.6);
}

/* HERO */

.gallery-hero {
    min-height: 65vh;
    display: flex;
    align-items: center;
    padding-top: 120px;

    background:
        radial-gradient(circle at 70% 40%, rgba(23, 93, 220, 0.35), transparent 34%),
        linear-gradient(
            180deg,
            rgba(4, 10, 20, 0.72) 0%,
            rgba(4, 10, 20, 0.96) 100%
        ),
        url("/assets/img/PCs-gallery/IMG_2465.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gallery-hero h1 {
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: -0.05em;

    margin-bottom: 20px;

    text-shadow: 0 0 40px rgba(23, 93, 220, 0.4);
}

.gallery-hero p {
    max-width: 700px;

    color: var(--muted);

    font-size: 1.25rem;
    line-height: 1.8;
}

.hero-badge,
.build-tag {
    display: inline-block;

    padding: 9px 16px;
    margin-bottom: 20px;

    border: 1px solid rgba(96, 165, 250, 0.7);
    border-radius: 999px;

    background: rgba(23, 93, 220, 0.16);
    color: #9cc7ff;

    font-weight: 700;

    box-shadow: 0 0 25px rgba(23, 93, 220, 0.32);
    backdrop-filter: blur(10px);
}

/* BUILDS */

.build-section {
    padding: 90px 0;

    background:
        radial-gradient(circle at 15% 20%, rgba(23, 93, 220, 0.14), transparent 30%),
        var(--bg);
}

.build-card {
    margin-bottom: 70px;
    padding: 34px;

    background: var(--card);

    border: 1px solid var(--border);
    border-radius: 26px;

    box-shadow: 0 0 45px rgba(23, 93, 220, 0.14);
    backdrop-filter: blur(12px);
}

.build-card:last-child {
    margin-bottom: 0;
}

.build-info {
    max-width: 950px;
    margin-bottom: 30px;
}

.build-info h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 850;

    letter-spacing: -0.035em;

    margin-bottom: 22px;
}

.build-info ul {
    list-style: none;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 12px 18px;
}

.build-info li {
    padding: 12px 14px;

    border-radius: 12px;

    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.06);

    color: var(--muted);
}

.build-info li::before {
    content: "✓ ";
    color: var(--blue-light);
    font-weight: 800;
}

/* GALLERY */

.gallery-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 16px;
}

.gallery-grid a {
    display: block;
    overflow: hidden;

    border-radius: 18px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);

    transition: 0.25s ease;
}

.gallery-grid img {
    display: block;

    width: 100%;

    aspect-ratio: 4 / 5;

    object-fit: cover;
    object-position: center;

    transition: 0.28s ease;
}

.gallery-grid a:hover {
    box-shadow: 0 0 35px rgba(23, 93, 220, 0.35);
}

.gallery-grid a:hover img {
    transform: scale(1.045);
}

/* FOOTER */

.footer {
    background: #030712;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    padding: 60px 0 25px;
}

.footer-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 40px;
}

.footer h3 {
    font-size: 1rem;

    color: white;

    margin-bottom: 14px;
}

.footer p,
.footer a {
    color: var(--muted);
}

.footer a:hover {
    color: var(--blue-light);
}

.copyright {
    text-align: center;

    color: #94a3b8;

    margin-top: 40px;

    font-size: 0.95rem;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .navbar-brand img {
        width: 82px;
        height: 82px;
    }

    .nav-links {
        gap: 18px;
        font-size: 0.95rem;
    }

    .gallery-hero {
        min-height: 55vh;
        padding-top: 125px;
        text-align: center;
    }

    .build-card {
        padding: 24px;
    }

    .build-info ul {
        grid-template-columns: 1fr;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .nav-container {
        flex-direction: column;
        gap: 8px;
        padding-bottom: 12px;
    }

    .navbar-brand img {
        width: 72px;
        height: 72px;
    }

    .nav-links {
        gap: 16px;
    }

    .gallery-hero {
        padding-top: 155px;
    }

    .gallery-hero p {
        font-size: 1.05rem;
    }

    .build-section {
        padding: 60px 0;
    }

    .build-card {
        padding: 18px;
        margin-bottom: 45px;
        border-radius: 20px;
    }

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

    .gallery-grid img {
        aspect-ratio: auto;
        height: auto;
        object-fit: contain;
    }
}

.footer,
.footer * {
    font-weight: 400 !important;
}

.footer h3 {
    font-weight: 700 !important;
}

.footer p,
.footer a {
    font-size: 1rem !important;
    line-height: 1.6 !important;
}

.footer,
.footer * {
    font-weight: 400 !important;
}

.footer h3 {
    font-weight: 700 !important;
}

.footer p,
.footer a {
    font-size: 1rem !important;
    line-height: 1.6 !important;
}

.footer p {
    line-height: 1.8;
}

.footer a {
    display: inline-block;
    margin-bottom: 6px;
}
