.unique-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 0;
}
.unique-footer-content {
    background: #C6FF00;
    color: #000;
    border-radius: 8px;
    padding: 0.6rem 1.2rem;
    width: 90vw;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.unique-footer .ebay-link {
    background: transparent;
    color: #000;
    font-weight: bold;
    font-size: 2rem;
    padding: 0;
    border-radius: 0;
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
}
.unique-footer p {
    color: #000;
    margin: 0.5rem 0 0 0;
    font-size: 1.1rem;
}
html, body {
    height: 100%;
}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
main {
    flex: 1;
}
.unique-heading {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.unique-heading h1 {
    background: #C6FF00;
    color: #000;
    font-weight: bold;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    margin: 0;
    text-align: center;
    font-size: 2.2rem;
    font-family: 'Montserrat', Arial, sans-serif;
}
main h1 {
    text-align: center;
}
/* Center main text for unique build page */
.main-text {
    text-align: center;
    margin: 0 auto;
}
/* Empty image boxes for layout balance */
.image-box {
    width: 220px;
    height: 160px;
    background: #222;
    border-radius: 8px;
    margin: 0 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Example Set Titles */
.example-set {
    margin-bottom: 2.5rem;
}
.example-set h3 {
    color: #C6FF00;
    font-family: 'Montserrat', Arial, sans-serif;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.3rem;
    letter-spacing: 1px;
}
/* Built Examples Section */
.built-examples {
    background: #181a1b;
    border-radius: 10px;
    max-width: 900px;
    margin: 2.5rem auto;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.built-examples h2 {
    color: #C6FF00;
    font-family: 'Montserrat', Arial, sans-serif;
    margin-bottom: 1.5rem;
    text-align: center;
}
.examples-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.example {
    background: #111;
    border: 2px solid #BDBDBD;
    border-radius: 10px;
    padding: 1rem;
    max-width: 260px;
    min-width: 180px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.example img {
    width: 100%;
    max-width: 200px;
    border-radius: 8px;
    margin-bottom: 0.8rem;
    background: #222;
}
.example p {
    color: #BDBDBD;
    font-size: 1rem;
    text-align: center;
}
@media (max-width: 900px) {
    .examples-gallery {
        flex-direction: column;
        align-items: center;
    }
}
body {
    font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
    background: #1A1A1A;
    color: #f3f3f3;
    margin: 0;
    padding: 0;
}

header {
    background: #000;
    padding: 0.5rem 0 0.5rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.logo-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}
.logo {
    height: 48px;
    width: 48px;
    margin-right: 1.5rem;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}
nav a {
    color: #C6FF00;
    text-decoration: none;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.2s;
}
nav a.active, nav a:hover {
    color: #BDBDBD;
}

.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: #222;
    padding: 2.5rem 1rem 2rem 1rem;
    border-radius: 12px;
    margin: 2rem auto 1.5rem auto;
    max-width: 1100px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.hero-img {
    width: 340px;
    height: auto;
    border-radius: 10px;
    margin-right: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    background: #111;
}
.hero-text {
    max-width: 500px;
}
.hero-text h1 {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #C6FF00;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.cta {
    display: inline-block;
    margin-top: 1.2rem;
    background: #C6FF00;
    color: #000;
    font-weight: bold;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background 0.2s, color 0.2s;
}
.cta:hover {
    background: #BDBDBD;
    color: #000;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 2rem auto;
    max-width: 1100px;
}
.feature-box {
    background: #111;
    border: 2px solid #C6FF00;
    border-radius: 10px;
    padding: 1.5rem;
    flex: 1 1 320px;
    max-width: 400px;
    min-width: 280px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.feature-box img {
    width: 100%;
    max-width: 220px;
    border-radius: 8px;
    margin-bottom: 1rem;
    background: #222;
}
.feature-box h2 {
    color: #C6FF00;
    font-family: 'Montserrat', Arial, sans-serif;
    margin-bottom: 0.5rem;
}
.feature-link {
    margin-top: 1rem;
    color: #C6FF00;
    font-weight: bold;
    text-decoration: underline;
    transition: color 0.2s;
}
.feature-link:hover {
    color: #BDBDBD;
}

.process {
    background: #222;
    border-radius: 10px;
    max-width: 900px;
    margin: 2.5rem auto;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.process h2 {
    color: #C6FF00;
    font-family: 'Montserrat', Arial, sans-serif;
    margin-bottom: 1rem;
}
.process ol {
    color: #BDBDBD;
    font-size: 1.1rem;
    padding-left: 1.2rem;
}
.process li {
    margin-bottom: 0.8rem;
}

footer {
    text-align: center;
    padding: 2rem 0 1rem 0;
    background: #000;
    color: #BDBDBD;
    margin-top: 2rem;
    width: 100%;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
}
.ebay-link {
 .ebay-link {
    display: inline-block;
    background: #C6FF00;
    color: #000;
    font-weight: bold;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: background 0.2s, color 0.2s;
}
.ebay-link:hover {
    background: #BDBDBD;
    color: #000;
}

/* Child page styles */
.top-images, .bottom-images {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 1.5rem 0;
}
.top-images img, .bottom-images img {
    width: 220px;
    height: auto;
    border-radius: 8px;
    background: #222;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.main-text {
    max-width: 700px;
    margin: 0 auto 2rem auto;
    background: #181a1b;
    border-radius: 10px;
    padding: 2rem;
    color: #BDBDBD;
    font-size: 1.1rem;
}
.component-list, .perf-list {
    list-style: disc inside;
    margin-bottom: 1.5rem;
}
.component-list li, .perf-list li {
    margin-bottom: 0.7rem;
}
@media (max-width: 900px) {
    .hero, .features {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-img {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
}
@media (max-width: 600px) {
    .logo-nav {
        flex-direction: column;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    .hero, .features, .process {
        padding: 1rem;
        margin: 1rem auto;
    }
    .main-text {
        padding: 1rem;
    }
    .top-images img, .bottom-images img {
        width: 100px;
    }
}
