* {
    box-sizing: border-box;
}

html {
    width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    width: 100%;
    overflow-x: hidden;

    font-family: "Ubuntu", sans-serif;
    color: #111;
}


/* =========================
   NAVIGATION
   ========================= */

nav {
    height: 70px;

    display: flex;
    align-items: center;

    padding: 0 5%;

    border-bottom: 1px solid #ddd;
}

.logo {
    font-size: 28px;
    text-decoration: none;
    color: inherit;
    font-weight: bold;
    white-space: nowrap;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

.nav-links {
    display: flex;
    gap: 40px;
    margin-left: 60px;
}

.nav-links a,
.nav-right a {
    color: #111;
    text-decoration: none;
}

.nav-right {
    margin-left: auto;

    display: flex;
    align-items: center;
    gap: 30px;

    font-weight: 500;
}


/* =========================
   HERO
   ========================= */

#hero {
    width: 90%;
    max-width: 1100px;
    min-height: 550px;

    border-bottom: 5px solid #ddd;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 80px;
}

#hero-text {
    flex: 1;
}

.small-title {
    font-size: 13px;
    letter-spacing: 2px;
    color: #777;
    font-weight: 500;
}

h1 {
    font-size: 42px;
    margin: 15px 0;
}

.description {
    font-size: 17px;
    line-height: 1.6;
    color: #666;

    max-width: 500px;
}

button {
    background: #111;
    color: white;

    border: none;

    padding: 16px 25px;

    font-size: 15px;
    font-weight: bold;

    cursor: pointer;

    margin-top: 15px;
}

button:hover {
    background: #333;
}

#hero-image {
    flex: 1;

    display: flex;
    justify-content: center;
}

#hero-image img {
    width: 100%;
    max-width: 1250px;
    height: auto;
}


/* =========================
   FEATURES
   ========================= */

.features {
    display: flex;
    gap: 15px;

    margin-top: 30px;

    flex-wrap: wrap;
}

.features span {
    border: 1px solid #ddd;
    border-radius: 20px;

    padding: 8px 14px;

    font-size: 13px;
}


/* =========================
   OUR BUILDS
   ========================= */

#our-builds {
    border-bottom: 5px solid #ddd;

    width: 90%;
    max-width: 1100px;

    margin: auto;

    padding: 70px 0 120px;
}

#our-builds h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.section-description {
    color: #777;
    margin-bottom: 40px;
}

.pc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.pc-card {
    border: 1px solid #ddd;
    padding: 15px;
}

.pc-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.pc-card h3 {
    margin-bottom: 5px;
}

.pc-card p {
    color: #777;
}


/* =========================
   SHOP PAGE
   ========================= */

.shop-header {
    text-align: center;
    padding: 90px 20px 45px;
}

.shop-header h1 {
    font-size: 52px;
    margin-bottom: 10px;
}

.shop-header p {
    font-size: 18px;
    color: #666;
}

.shop-container {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;

    padding: 20px 30px 100px;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.shop-card {
    background: white;

    border-radius: 14px;
    overflow: hidden;

    border: 1px solid #e8e8e8;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.shop-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
}

.shop-image {
    width: 100%;
    height: 270px;

    overflow: hidden;

    background: #f5f5f5;
}

.shop-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.3s ease;
}

.shop-card:hover .shop-image img {
    transform: scale(1.04);
}

.shop-info {
    padding: 22px;
}

.shop-info h2 {
    margin: 0 0 8px;

    font-size: 22px;
    font-weight: 700;
}

.pc-description {
    margin: 0 0 12px;

    color: #666;

    font-size: 15px;
    line-height: 1.5;
}

.pc-specs {
    margin: 0;

    color: #333;

    font-size: 14px;
    font-weight: 500;
}

.shop-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-top: 22px;
}

.price {
    font-size: 23px;
    font-weight: 700;
}

.shop-bottom button {
    border: none;

    background: #111;
    color: white;

    padding: 11px 17px;

    border-radius: 8px;

    font-family: "Ubuntu", sans-serif;
    font-size: 14px;
    font-weight: 500;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.shop-bottom button:hover {
    background: #333;
    transform: translateX(2px);
}


/* =========================
   TABLET
   ========================= */

@media (max-width: 900px) {

    .nav-links {
        gap: 20px;
        margin-left: 30px;
    }

    #hero {
        gap: 40px;
    }

    .pc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================
   IPHONE / MOBILE
   ========================= */

@media (max-width: 600px) {

    /* ---------- NAVIGATION ---------- */

    nav {
        height: 60px;

        padding: 0 20px;

        justify-content: center;
    }

    .logo {
        font-size: 25px;
    }

    /* Hide desktop navigation on phones */
    .nav-links,
    .nav-right {
        display: none;
    }


    /* ---------- HERO ---------- */

    #hero {
        width: 90%;

        min-height: auto;

        padding: 55px 0 50px;

        display: block;

        border-bottom: 3px solid #ddd;
    }

    #hero-text {
        width: 100%;
        text-align: center;
    }

    .small-title {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    #hero h1 {
        font-size: 34px;
        line-height: 1.15;

        margin: 12px 0 18px;
    }

    .description {
        max-width: 100%;

        font-size: 15px;
        line-height: 1.5;

        margin: 0 auto;
    }

    #hero button {
        padding: 14px 22px;

        font-size: 14px;
    }


    /* Hide the large hero PC image on phones */
    #hero-image {
        display: none;
    }


    /* ---------- FEATURES ---------- */

    .features {
        justify-content: center;

        gap: 8px;

        margin-top: 25px;
    }

    .features span {
        padding: 7px 11px;

        font-size: 11px;
    }


    /* ---------- OUR BUILDS ---------- */

    /*
       Hide the large "Our Builds" section on phones.
       This keeps the homepage from becoming extremely long.
    */
    #our-builds {
        display: none;
    }


    /* ---------- SHOP HEADER ---------- */

    .shop-header {
        padding: 55px 20px 30px;
    }

    .shop-header h1 {
        font-size: 38px;

        line-height: 1.1;

        margin-bottom: 12px;
    }

    .shop-header p {
        font-size: 15px;

        line-height: 1.5;

        margin: 0;
    }


    /* ---------- SHOP ---------- */

    .shop-container {
        width: 100%;

        padding: 15px 15px 60px;
    }

    .shop-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    /* ---------- SHOP CARDS ---------- */

    .shop-card:hover {
        /*
           Phones don't really have hover,
           so don't move the card around.
        */
        transform: none;

        box-shadow: none;
    }

    .shop-image {
        height: 220px;
    }

    .shop-info {
        padding: 18px;
    }

    .shop-info h2 {
        font-size: 20px;
    }

    .pc-description {
        font-size: 14px;
    }

    .pc-specs {
        font-size: 13px;
    }

    .shop-bottom {
        margin-top: 18px;
    }

    .price {
        font-size: 21px;
    }

    .shop-bottom button {
        padding: 10px 14px;

        font-size: 13px;
    }
}


/* =========================
   VERY SMALL PHONES
   ========================= */

@media (max-width: 380px) {

    .logo {
        font-size: 22px;
    }

    #hero h1 {
        font-size: 30px;
    }

    .description {
        font-size: 14px;
    }

    .shop-header h1 {
        font-size: 34px;
    }

    .shop-image {
        height: 190px;
    }
}

.build-button {
    display: inline-block;
    padding: 14px 28px;

    background: #111;
    color: white;

    text-decoration: none;

    border-radius: 6px;

    font-size: 16px;
    font-weight: 500;

    transition: 0.2s;
}

.build-button:hover {
    background: #333;
}
/* =========================
   ABOUT PAGE
   ========================= */

.about-hero {
    max-width: 1100px;
    min-height: 450px;

    margin: auto;

    display: flex;
    align-items: center;

    padding: 80px 5%;

    border-bottom: 5px solid #ddd;
}

.about-content {
    max-width: 750px;
}

.about-content h1 {
    font-size: 56px;
    margin: 0 0 25px;
}

.about-content p {
    font-size: 20px;
    line-height: 1.7;
    color: #444;

    margin-bottom: 20px;
}


/* =========================
   WHAT WE DO
   ========================= */

.about-section {
    max-width: 1100px;

    margin: auto;

    padding: 80px 5%;
}

.about-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.about-cards {
    display: flex;
    gap: 25px;
}

.about-card {
    flex: 1;

    padding: 30px;

    border: 1px solid #ddd;
    border-radius: 8px;

    background: #fff;
}

.about-card h3 {
    font-size: 24px;
    margin-top: 0;
}

.about-card p {
    color: #555;
    line-height: 1.6;
}


/* =========================
   PHILOSOPHY
   ========================= */

.about-philosophy {
    background: #f7f7f7;

    padding: 80px 5%;
}

.about-philosophy > div {
    max-width: 1100px;
    margin: auto;
}

.about-philosophy h2 {
    font-size: 38px;
    margin-top: 0;
}

.about-philosophy p {
    max-width: 750px;

    font-size: 18px;
    line-height: 1.7;

    color: #444;
}

.about-philosophy h3{
    font-size: 38px;
    margin-top: 40px
}


/* =========================
   CALL TO ACTION
   ========================= */

.about-cta {
    text-align: center;

    padding: 90px 5%;
}

.about-cta h2 {
    font-size: 36px;
    margin-bottom: 30px;
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 700px) {

    .about-hero {
        min-height: auto;
        padding: 70px 7%;
    }

    .about-content h1 {
        font-size: 40px;
    }

    .about-content p {
        font-size: 17px;
    }

    .about-cards {
        flex-direction: column;
    }

    .about-section {
        padding: 60px 7%;
    }

    .about-philosophy {
        padding: 60px 7%;
    }

    .about-philosophy h2 {
        font-size: 30px;
    }

    .about-cta h2 {
        font-size: 28px;
    }

}
.no-highlight {
    user-select: none;
    text-decoration: none;
}

/* =========================
   CONTACT US
   ========================= */

#contact-us {
    max-width: 1100px;

    margin: 0 auto;

    padding: 90px 5%;

    text-align: center;

    border-bottom: 5px solid #ddd;
}


/* Main heading */

#contact-us h1 {
    font-size: 42px;

    margin: 0 0 20px;

    font-weight: 500;

    white-space: nowrap;
}


/* Email */

#contact-us .contact-email {
    font-size: 20px;

    color: #555;

    margin: 0 auto 60px;
}


/* Commitment heading */

#contact-us h2 {
    font-size: 28px;

    margin: 0 0 20px;

    font-weight: 500;
}


/* Commitment text */

#contact-us .commitment {
    max-width: 800px;

    margin: 0 auto;

    font-size: 18px;

    line-height: 1.7;

    color: #444;
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 700px) {

    #contact-us {
        padding: 65px 7%;
    }

    #contact-us h1 {
        font-size: 30px;

        white-space: normal;
    }

    #contact-us .contact-email {
        font-size: 17px;

        margin-bottom: 45px;

        overflow-wrap: anywhere;
    }

    #contact-us h2 {
        font-size: 24px;
    }

    #contact-us .commitment {
        font-size: 16px;

        line-height: 1.6;
    }

}
/* =========================
   HELP PAGE
   ========================= */


/* =========================
   HELP HERO
   ========================= */

#help-hero {
    max-width: 1100px;

    margin: auto;

    padding: 110px 5% 100px;

    text-align: center;

    border-bottom: 5px solid #ddd;
}

.help-small-title {
    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #777;

    margin-bottom: 20px;
}

#help-hero h1 {
    font-size: 58px;

    font-weight: 500;

    margin: 0 0 25px;
}

#help-hero > p:not(.help-small-title) {
    max-width: 650px;

    margin: 0 auto 35px;

    font-size: 19px;

    line-height: 1.7;

    color: #555;
}


/* =========================
   CONTACT FORM
   ========================= */

#contact-form {
    max-width: 850px;

    margin: auto;

    padding: 90px 5%;
}

.help-section-title {
    text-align: center;

    margin-bottom: 45px;
}

.help-section-title h2 {
    font-size: 38px;

    font-weight: 500;

    margin: 0 0 15px;
}

.help-section-title p {
    font-size: 18px;

    color: #555;

    line-height: 1.6;

    margin: 0 auto;

    max-width: 650px;
}


/* =========================
   FORM
   ========================= */

form {
    width: 100%;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;

    font-size: 16px;

    font-weight: 500;

    margin-bottom: 9px;
}

.form-group label span {
    color: #888;

    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    padding: 15px 16px;

    border: 1px solid #ccc;

    border-radius: 5px;

    background: #fff;

    color: #111;

    font-family: "Ubuntu", sans-serif;

    font-size: 16px;

    outline: none;

    transition: border 0.2s;
}

.form-group textarea {
    resize: vertical;

    min-height: 160px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #111;
}


/* Submit button */

form button {
    width: 100%;

    padding: 16px;

    border: none;

    border-radius: 5px;

    background: #111;

    color: white;

    font-family: "Ubuntu", sans-serif;

    font-size: 16px;

    font-weight: 500;

    cursor: pointer;

    transition: 0.2s;
}

form button:hover {
    background: #333;
}


/* =========================
   FAQ
   ========================= */

#faq {
    background: #f7f7f7;

    padding: 90px 5%;
}

.faq-list {
    max-width: 850px;

    margin: auto;
}

.faq-list details {
    background: white;

    border-bottom: 1px solid #ddd;
}

.faq-list details:first-child {
    border-top: 1px solid #ddd;
}

.faq-list summary {
    padding: 24px 20px;

    font-size: 18px;

    font-weight: 500;

    cursor: pointer;

    list-style: none;

    position: relative;

    padding-right: 50px;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";

    position: absolute;

    right: 20px;

    font-size: 24px;

    font-weight: 300;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    margin: 0;

    padding: 0 55px 25px 20px;

    color: #555;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 700px) {

    #help-hero {
        padding: 75px 7% 70px;
    }

    #help-hero h1 {
        font-size: 42px;
    }

    #help-hero > p:not(.help-small-title) {
        font-size: 17px;
    }


    #contact-form {
        padding: 65px 7%;
    }

    .help-section-title h2 {
        font-size: 30px;
    }

    .help-section-title p {
        font-size: 16px;
    }


    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;

        padding: 14px;
    }


    #faq {
        padding: 65px 7%;
    }

    .faq-list summary {
        font-size: 16px;

        padding: 21px 45px 21px 15px;
    }

    .faq-list details p {
        padding: 0 40px 22px 15px;

        font-size: 15px;
    }

}

.no-highlight {
    text-decoration: none;
    color: inherit;
}

.no-highlight h2,
.no-highlight .price {
    color: #111;
    text-decoration: none;
}
/* =========================
   PRODUCT PAGE
   ========================= */

.product-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 5%;
}


/* =========================
   MAIN PRODUCT
   ========================= */

.product-main {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 70px;
    align-items: start;
}


/* =========================
   PRODUCT IMAGE
   ========================= */

.product-image {
    width: 100%;
    background: #f7f7f7;
    border-radius: 12px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
}


/* =========================
   PRODUCT INFO
   ========================= */

.product-category {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #777;
    margin: 0 0 10px;
}

.product-info h1 {
    font-size: 42px;
    margin: 0 0 15px;
    font-weight: 700;
}

.product-intro {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.product-price {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 30px;
}


/* =========================
   SPECS
   ========================= */

.spec-box {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
}

.spec-box h2 {
    font-size: 20px;
    margin: 0 0 15px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    padding: 10px 0;

    border-bottom: 1px solid #eee;

    font-size: 15px;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row span {
    color: #777;
}

.spec-row strong {
    text-align: right;
}


/* =========================
   PURCHASE
   ========================= */

.purchase-box {
    margin-top: 25px;
}

.stock {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
}

.purchase-box p {
    color: #666;
    margin-bottom: 20px;
}

.buy-button {
    display: block;

    width: 100%;

    padding: 17px;

    background: #111;
    color: white;

    text-align: center;

    font-size: 17px;
    font-weight: 700;

    text-decoration: none;

    border-radius: 6px;

    transition: 0.2s;
}

.buy-button:hover {
    background: #333;
}


/* =========================
   PERFORMANCE
   ========================= */

.performance-section {
    margin-top: 100px;
    padding-top: 70px;

    border-top: 1px solid #ddd;

    text-align: center;
}

.performance-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #666;
    margin-bottom: 40px;
}


.performance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.performance-card {
    padding: 30px;

    border: 1px solid #ddd;
    border-radius: 8px;

    background: #fafafa;
}

.performance-card h3 {
    margin-top: 0;
    font-size: 18px;
}

.performance-card strong {
    display: block;
    font-size: 25px;
    margin: 10px 0;
}

.performance-card p {
    color: #777;
}


/* =========================
   DESCRIPTION
   ========================= */

.product-description {
    margin-top: 100px;

    display: grid;
    grid-template-columns: 1.5fr 1fr;

    gap: 80px;

    padding-top: 70px;

    border-top: 1px solid #ddd;

    align-items: start;
}

.product-description h2 {
    font-size: 28px;
}

.product-description p {
    color: #555;
    line-height: 1.8;
}


/* =========================
   INCLUDED
   ========================= */

.included-box {
    background: #f7f7f7;

    padding: 30px;

    border-radius: 8px;
}

.included-box ul {
    padding-left: 20px;
}

.included-box li {
    margin-bottom: 12px;
}


/* =========================
   SHIPPING
   ========================= */

.shipping-section {
    margin-top: 100px;

    padding: 70px 0;

    border-top: 1px solid #ddd;

    text-align: center;
}

.shipping-section h2 {
    font-size: 30px;
    margin-bottom: 45px;
}

.shipping-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.shipping-grid h3 {
    font-size: 18px;
}

.shipping-grid p {
    color: #666;
    line-height: 1.6;
}


/* =========================
   FOOTER
   ========================= */

footer {
    margin-top: 50px;

    padding: 40px 5%;

    border-top: 1px solid #ddd;

    text-align: center;

    color: #777;
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 800px) {

    .product-page {
        padding: 40px 5%;
    }

    .product-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-info h1 {
        font-size: 32px;
    }

    .product-price {
        font-size: 30px;
    }

    .performance-grid {
        grid-template-columns: 1fr;
    }

    .product-description {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .shipping-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

}
/* =========================
   FPS PERFORMANCE
   ========================= */

.fps-section {
    margin-top: 30px;

    width: 100%;

    border: 1px solid #ddd;
    border-radius: 8px;

    overflow: hidden;

    background: #fafafa;
}


/* =========================
   TABS
   ========================= */

.fps-tabs {
    display: flex;
    gap: 8px;

    padding: 10px;

    border-bottom: 1px solid #ddd;

    background: #f7f7f7;
}

.fps-tab {
    flex: 1;

    padding: 13px 10px;

    border: 1px solid #d5d5d5;
    border-radius: 6px;

    background: #fff;

    color: #555;

    font-family: "Ubuntu", sans-serif;

    font-size: 15px;
    font-weight: 500;

    cursor: pointer;

    transition: 0.2s;
}

.fps-tab:hover {
    background: #f0f0f0;
    color: #111;
}

.fps-tab.active {
    background: #111;

    border-color: #111;

    color: white;

    font-weight: 700;
}


/* =========================
   FPS CONTENT
   ========================= */

.fps-content {
    padding: 25px;
}

.fps-label {
    margin: 0 0 15px;

    font-size: 13px;

    text-transform: uppercase;

    letter-spacing: 1px;

    color: #777;
}


/* =========================
   FPS PANELS
   ========================= */

.fps-panel {
    display: none;
}

.fps-panel.active {
    display: block;
}


/* =========================
   GAME FPS
   ========================= */

.fps-game {
    display: flex;

    justify-content: space-between;
    align-items: center;

    padding: 14px 0;

    border-bottom: 1px solid #e5e5e5;
}

.fps-game:last-child {
    border-bottom: none;
}

.fps-game span {
    font-size: 15px;
}

.fps-game strong {
    font-size: 16px;
}


/* =========================
   FPS DISCLAIMER
   ========================= */

.fps-note {
    margin: 20px 0 0;

    font-size: 12px;

    line-height: 1.5;

    color: #888;
}