/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Orbitron', sans-serif;
}

/* Text Styling (Glowing Effect) */
nav,
nav ul li a,
.hero {
    font-size: 20px;
    color: #ffffff;
    -webkit-text-stroke: 0.3px #0286BD;
    text-shadow: 0 0 10px #0286BD,
        0 0 20px #0286BD,
        0 0 40px #00aaff,
        0 0 80px #00aaff,
        0 0 120px #00e6ff;
}

/* Navbar Styles */
nav {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10;
}

/* Navbar Links */
.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    display: inline-block;
    margin-left: 40px;
}

.nav-links a {
    text-decoration: none;
}

/* Hamburger Menu (Hidden on large screens) */
.menu-toggle {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* Hero Section */
.hero {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Background Video */
.back-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Responsive Navigation */
@media screen and (max-width: 1024px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        position: absolute;
        top: 60px;
        left: 0;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        display: block;
        margin: 15px 0;
    }
}

/* ==== PC BUILD LAYOUT ==== */

/* Grid Layout for Multiple Builds */
.pc-builds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 20px;
    max-width: 1600px;
    margin: 50px auto;
    padding: 20px;
}

/* Each PC Build */
.pc-builder-container {
    display: flex;
    flex-direction: column;
    /* Ensures text is on top */
    justify-content: center;
    align-items: center;
    background: #000B2A;
    padding: 15px;
    border-radius: 10px;
    color: white;
}

/* PC Build Information (Now on Top) */
.pc-info1 {
    text-align: center;
    padding: 10px;
    width: 100%;
    background: #043556;
    border-radius: 10px;
    margin-bottom: 10px;
    /* Adds spacing between text and table */
}

.pc-info2 {
    text-align: center;
    padding: 10px;
    width: 100%;
    background: #043556;
    border-radius: 10px;
    margin-top: 10px;
    /* Adds spacing between text and table */
}

/* PCPartPicker Table Styling */
.pcpartpicker {
    width: 100%;
    font-size: 14px;
    padding: 10px;
    background: #06748F;
    border-radius: 8px;
}

.pcpartpicker table {
    width: 100%;
    border-collapse: collapse;
}

.pcpartpicker th,
.pcpartpicker td {
    border: 1px solid white;
    padding: 6px;
    font-size: 12px;
}

/* Links */
.pcpartpicker a {
    color: white;
    text-decoration: none;
}

.pcpartpicker a:hover {
    text-decoration: underline;
}

/* Responsive Grid */
@media screen and (max-width: 1200px) {
    .pc-builds-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .pc-builds-grid {
        grid-template-columns: 1fr;
    }

    .pc-builder-container {
        flex-direction: column;
    }
}

/* Banner Names */
.welcome {
    font-size: 100px;
}

.guides {
    font-size: 100px;
}

.builds {
    font-size: 100px;
}

.faq {
    font-size: 100px;
}

.resources {
    font-size: 100px;
}

.contact {
    font-size: 100px;
}
