/* RESET / BOX-SIZING */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY & HTML SETUP */
html, body {
    height: 100%;
    font-family: 'Cinzel', serif;
    background: #0f0f1f;
    color: #ffffff;
    line-height: 1.5;
}



/* MAIN SECTION */
.sell-cards-main {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px; /* Adds padding to push content down */
    background: url("../images/fantasyBackground2.png") no-repeat center center;
    background-size: cover;
    width: 100%;
}

.sell-cards-section {
    background: rgba(0, 0, 0, 0.8);
    color: #ffd700;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    width: 100%;
}

.sell-cards-section h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding: 10px;
}

.sell-cards-section p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.7rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #ffffff;
}

.sell-cards-section .email a {
    color: #ffd700;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sell-cards-section .email a:hover {
    color: #ffffff;
}

.sell-cards-section .donation-note {
    font-style: italic;
    margin-top: 1rem;
    color: #e8c547;
}

/* FOOTER */
.site-footer {
    background: #1a1a2e;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
    border-radius: 5px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .sell-cards-main {
        padding-top: 2rem; /* Increased top padding for small screens */
    }

    .sell-cards-section h1 {
        font-size: 2rem;
    }

    .sell-cards-section p {
        font-size: 1rem;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}