/* Base styles */
body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #f0f0f0;
    background-color: #000;
    /* Faster background: responsive compressed assets + image-set fallback */
    background-image:
        linear-gradient(rgba(0,0,0,0.68), rgba(0,0,0,0.68)),
        image-set(
            url('images/bg-960.webp') type('image/webp') 1x,
            url('images/bg-960.jpg') type('image/jpeg') 1x
        );
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1, h2 {
    margin: 0;
}

h1 {
    font-size: 2rem;
}

nav a {
    color: #f0f0f0;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ffd700;
}

header {
    background: rgba(0,0,0,0.7);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60vh;
    text-align: center;
    padding: 0 20px;
}

.hero-inner h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-inner p {
    font-size: 1.3rem;
    margin-top: 0;
}

.content-section {
    padding: 60px 0;
    background-color: rgba(0,0,0,0.5);
    margin: 0;
}

.content-section.alt {
    background-color: rgba(0,0,0,0.3);
}

.content-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #ffd700;
    margin: 10px 0;
}

#paypal-button-container {
    margin-top: 20px;
}

footer {
    background: rgba(0,0,0,0.7);
    padding: 20px 0;
    text-align: center;
}

footer a {
    color: #ffd700;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.fine-print {
    font-size: 0.9rem;
    color: #bbbbbb;
    margin-top: 10px;
}


/* Higher-res background on larger screens */
@media (min-width: 900px) {
    body {
        background-image:
            linear-gradient(rgba(0,0,0,0.68), rgba(0,0,0,0.68)),
            image-set(
                url('images/bg-1600.webp') type('image/webp') 1x,
                url('images/bg-1600.jpg') type('image/jpeg') 1x
            );
    }
}

@media (min-width: 1400px) {
    body {
        background-image:
            linear-gradient(rgba(0,0,0,0.68), rgba(0,0,0,0.68)),
            image-set(
                url('images/bg-2048.webp') type('image/webp') 1x,
                url('images/bg-2048.jpg') type('image/jpeg') 1x
            );
    }
}
