/* IMPORT FONT�W */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Orbitron:wght@600;700;800&display=swap');

/* RESET */
* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

    /* ?? GLOBAL FONT FORCE */
    font-family: 'Rajdhani', sans-serif !important;

}

html,
body {

    overflow-x: hidden;

    min-height: 100vh;

    position: relative;

    /* ?? EXTRA FIX */
    font-family: 'Rajdhani', sans-serif !important;

}

body {

    background: #050505;
    color: white;

}

/* ?? FORM ELEMENTS FIX (TO NAJCZʌCIEJ PSUJE FONTY) */
input,
button,
textarea,
select,
option {

    font-family: 'Rajdhani', sans-serif !important;

}

/* BACKGROUND */

.bg-grid {

    position: fixed;
    inset: 0;

    background:
        linear-gradient(rgba(0, 255, 100, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 100, 0.06) 1px, transparent 1px);

    background-size: 60px 60px;

    opacity: 0.15;

    z-index: -3;

}

.overlay {

    position: fixed;
    inset: 0;

    background:
        radial-gradient(circle at center,
            rgba(0, 255, 100, 0.08),
            transparent 60%);

    z-index: -2;

}

/* NAVBAR */

.navbar {

    width: 100%;

    padding: 30px 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid rgba(0, 255, 100, 0.15);

    position: relative;

}

/* LOGO */

.logo-box {

    display: flex;
    align-items: center;

    gap: 14px;

}

.logo-img {

    width: 48px;
    height: 48px;

    object-fit: contain;

    filter: drop-shadow(0 0 10px rgba(0, 255, 100, 0.7));

}

/* ?? LOGO FONT FIX */
.logo {

    font-size: 32px;

    font-weight: 800;

    font-family: 'Orbitron', sans-serif !important;

    color: #00ff66;

}

.logo span {

    color: white;

    font-family: 'Orbitron', sans-serif !important;

}

/* NAV */

nav {

    display: flex;

    gap: 40px;

}

nav a {

    text-decoration: none;

    color: #b5b5b5;

    font-size: 14px;

    letter-spacing: 2px;

    transition: 0.3s;

    position: relative;

}

nav a:hover,
nav a.active {

    color: #00ff66;

}

nav a.active::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -12px;

    width: 100%;
    height: 2px;

    background: #00ff66;

    box-shadow: 0 0 10px #00ff66;

}

/* LOGIN */

.login-btn {

    background: transparent;

    border: 1px solid #00ff66;

    color: #00ff66;

    padding: 10px 30px;

    border-radius: 6px;

    cursor: pointer;

    font-weight: 600;

    transition: 0.3s;

}

.login-btn:hover {

    background: #00ff66;

    color: black;

    box-shadow: 0 0 20px #00ff66;

}

/* HAMBURGER */

.hamburger {

    display: none;

    flex-direction: column;

    gap: 6px;

    cursor: pointer;

    z-index: 2000;

}

.hamburger span {

    width: 30px;
    height: 3px;

    background: #00ff66;

    border-radius: 10px;

    transition: 0.3s;

}

/* CONFIGURATOR */

.configurator {

    width: 100%;

    min-height: calc(100vh - 100px);

    display: grid;

    grid-template-columns: 280px 1fr 320px;

    gap: 40px;

    padding: 50px 70px;

    align-items: center;

}

/* LEFT */

.config-left {

    display: flex;

    flex-direction: column;

    gap: 18px;

}

.config-box {

    border: 1px solid rgba(0, 255, 100, 0.18);

    background: rgba(255, 255, 255, 0.02);

    padding: 18px;

    transition: 0.3s;

}

.config-box:hover {

    border-color: #00ff66;

    box-shadow: 0 0 20px rgba(0, 255, 100, 0.12);

}

.config-box label {

    display: block;

    color: #00ff66;

    margin-bottom: 10px;

    font-size: 14px;

    letter-spacing: 2px;

}

.config-box select {

    width: 100%;

    background: #0c0c0c;

    border: 1px solid rgba(0, 255, 100, 0.15);

    padding: 12px;

    color: white;

    outline: none;

}

/* CENTER */

.config-center {

    display: flex;

    align-items: center;
    justify-content: center;

}

.pc-showcase {

    width: 100%;

    max-width: 620px;

    aspect-ratio: 1/1;

    border: 1px solid rgba(0, 255, 100, 0.25);

    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    box-shadow:
        0 0 40px rgba(0, 255, 100, 0.12),
        inset 0 0 30px rgba(0, 255, 100, 0.06);

}

.pc-showcase::before {

    content: "";

    position: absolute;

    inset: 25px;

    border: 1px solid rgba(0, 255, 100, 0.15);

}

.pc-showcase img {

    width: 90%;

    z-index: 2;

    filter:
        brightness(1.1)
        drop-shadow(0 0 25px #00ff66);

}

/* RIGHT */

.config-right {

    border: 1px solid rgba(0, 255, 100, 0.15);

    background: rgba(255, 255, 255, 0.02);

    padding: 30px;

}

.config-right h3 {

    color: #00ff66;

    font-size: 22px;

    margin-bottom: 30px;

}

.summary-list {

    display: flex;

    flex-direction: column;

    gap: 18px;

}

.summary-item {

    display: flex;

    justify-content: space-between;

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

    padding-bottom: 12px;

    color: #d8d8d8;

}

.summary-item strong {

    color: #00ff66;

}

.price-box {

    margin-top: 35px;

    padding: 25px;

    border: 1px solid rgba(0, 255, 100, 0.2);

    text-align: center;

}

.price-box span {

    color: #8e8e8e;

    letter-spacing: 2px;

    font-size: 13px;

}

.price-box h2 {

    color: #00ff66;

    font-size: 48px;

    margin-top: 10px;

}

.buy-btn {

    width: 100%;

    margin-top: 30px;

    padding: 18px;

    background: #00ff66;

    color: black;

    border: none;

    font-weight: 700;

    font-size: 16px;

    cursor: pointer;

    transition: 0.3s;

    box-shadow: 0 0 20px rgba(0, 255, 100, 0.35);

}

.buy-btn:hover {

    transform: translateY(-3px);

    box-shadow: 0 0 35px rgba(0, 255, 100, 0.8);

}

.price-note {

    margin-top: 18px;

    color: #8b8b8b;

    font-size: 13px;

    line-height: 1.5;

    text-align: center;

    opacity: 0.8;

}

/* RESPONSIVE */

@media(max-width:1200px) {

    .configurator {

        grid-template-columns: 1fr;

    }

}

@media(max-width:900px) {

    .hamburger {

        display: flex;

    }

    nav {

        position: absolute;

        top: 100%;

        left: 50%;

        transform:
            translateX(-50%)
            translateY(-20px);

        width: 240px;

        background: rgba(5, 5, 5, 0.98);

        border: 1px solid rgba(0, 255, 100, 0.2);

        backdrop-filter: blur(10px);

        display: flex;

        flex-direction: column;

        padding: 25px;

        gap: 20px;

        opacity: 0;

        pointer-events: none;

        transition: 0.3s;

        z-index: 1500;

    }

    nav.active {

        opacity: 1;

        pointer-events: auto;

        transform:
            translateX(-50%)
            translateY(0);

    }
}

@media(min-width:901px) {

    nav {

        display: flex !important;

        opacity: 1 !important;

        pointer-events: auto !important;

        transform: none !important;

        position: static;

    }

}

@media(max-width:700px) {

    .navbar,
    .configurator {

        padding-left: 25px;
        padding-right: 25px;

    }

    .price-box h2 {

        font-size: 36px;

    }

}

.no-underline {
    text-decoration: none;
    color: inherit;
}
/* =========================
   EXTRA TOOLS
========================= */

.extra-tools {

    width: 100%;

    display: flex;

    justify-content: center;

    align-items: stretch;

    gap: 22px;

    padding:
        0px
        70px
        40px;

    margin-top: -40px;

    flex-wrap: nowrap;

}

/* BOX */

.tool-box {

    width: 300px;

    min-height: 190px;

    border: 1px solid rgba(0, 255, 100, 0.18);

    background: rgba(255, 255, 255, 0.02);

    padding: 22px;

    position: relative;

    overflow: hidden;

    transition: 0.35s;

    backdrop-filter: blur(12px);

}

/* HOVER */

.tool-box::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(circle at top,
            rgba(0,255,100,0.12),
            transparent 70%);

    opacity: 0;

    transition: 0.35s;

}

.tool-box:hover::before {

    opacity: 1;

}

.tool-box:hover {

    transform: translateY(-8px);

    border-color: #00ff66;

    box-shadow:
        0 0 30px rgba(0,255,100,0.18),
        inset 0 0 20px rgba(0,255,100,0.06);

}

/* TITLE */

.tool-box h3 {

    color: #00ff66;

    font-size: 18px;

    margin-bottom: 18px;

    letter-spacing: 2px;

    font-family: 'Orbitron', sans-serif !important;

}

/* TEXT */

.tool-box p {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 14px;

    color: #cfcfcf;

    font-size: 15px;

}

.tool-box strong {

    color: #00ff66;

    font-size: 22px;

}

/* FPS */

.fps-item {

    margin-bottom: 14px;

}

.fps-item span {

    display: block;

    color: #8d8d8d;

    font-size: 13px;

    margin-bottom: 4px;

    letter-spacing: 1px;

}

.fps-item strong {

    font-size: 24px;

}

/* BOTTLENECK BAR */

.bottleneck-bar {

    width: 100%;

    height: 10px;

    background: rgba(255,255,255,0.08);

    border-radius: 999px;

    overflow: hidden;

    margin-top: 18px;

}

.bottleneck-fill {

    width: 0%;

    height: 100%;

    background: #00ff66;

    box-shadow: 0 0 20px #00ff66;

    transition: 0.4s;

}

/* MOBILE */

@media(max-width:1200px) {

    .extra-tools {

        flex-wrap: wrap;

        margin-top: 20px;

    }

}

@media(max-width:700px) {

    .extra-tools {

        padding:
            20px
            25px
            50px;

    }

    .tool-box {

        width: 100%;

    }

}