@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

/* Set full-height flex layout */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* Body takes full height */
body {
    flex: 1;
    font-family: 'Arial', sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
}

/* Main fills remaining vertical space */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Hero fills entire main area */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: linear-gradient(to bottom right, #1e1e2f, #2a2a40);
}

/* Logo and text */
.logo {
    max-width: 300px;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 2rem;
    font-family: 'Press Start 2P', cursive;
    color: #00ffe5;
}

.hero p {
    color: #f09;
    margin-bottom: 2rem;
}

/* eBay Button */
.ebay-link {
    display: inline-block;
    margin-top: 1rem;
    color: #fff;
    background: #e53238;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}

    .ebay-link:hover {
        background: #b32126;
    }

/* Footer sticks to bottom */
footer {
    padding: 1rem;
    background: #111;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
}

    footer p {
        margin: 0.5rem 0;
    }

    footer a.ebay-link {
        display: inline-block;
        margin-top: 0.5rem;
        background: #e53238;
        color: #fff;
        padding: 0.4rem 1rem;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background 0.3s;
    }

        footer a.ebay-link:hover {
            background: #b32126;
        }
