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

body {
    font-family: 'Georgia', serif;
    color: #fff;
    min-height: 100vh;
    padding: 2rem;
    background: linear-gradient(160deg, #000000, #001f3f, #003366, #004080);
    margin-top: 50px;
    padding-top: 50px;
}

header {
    text-align: center;
    margin-bottom: 2rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.3);
}

    header h1 {
        font-size: 2.5rem;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        font-family: Verdana, serif;
    }

.items-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap; /* stack on small screens */
    max-width: 1200px;
    margin: 0 auto;
}

.item-section {
    flex: 1 1 45%;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    min-width: 300px;
    min-height: 300px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

    .item-section.fade-in {
        opacity: 1;
        transform: translateY(0);
    }

.item-cover figure {
    float: left;
    margin: 0 1rem 0 0;
    text-align: center;
}

.item-cover img {
    max-width: 150px;
    border-radius: 0px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.image-credit {
    font-size: 0.6rem;
    color: #fff000;
    font-style: italic;
    margin-top: 0.1rem;
}

.item-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.item-content h3 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.purchase-row {
    float: right;
    align-items: center;
    gap: 1rem; /* space between price and button */
    margin-top: 1rem;
}

.price-tag {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 1rem 0 0;
    color: #ffeb3b;
    color: rgba(255,255,255,0.6);
}

.fixedBox {
    min-height: 300px;
}

.cta-button {
    padding: 0.6rem 1.2rem;
    background: #228B22;
    color: #fff;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
}

    .cta-button:hover {
        background: #32CD32;
        transform: scale(1.1);
    }

#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* behind content */
}

footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

    footer h3 {
        font-size: 1rem;
        color: rgba(255,255,255,0.6);
        margin-bottom: 0.5rem;
        font-weight: normal;
    }

.site-map {
    list-style: none;
    padding: 0;
}

    .site-map li {
        display: inline-block;
        margin: 0 0.5rem;
    }

    .site-map a {
        color: rgba(255,255,255,0.5); /* softer color */
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: normal;
    }

        .site-map a:hover {
            text-decoration: underline;
            color: rgba(255,255,255,0.7); /* slightly brighter on hover */
        }

