/* Star Vie BeNeLux — minimal styling, mimicking the original 2016 layout */
:root {
    color-scheme: dark;
}
* { box-sizing: border-box; }
html, body {
    margin: 0;
    padding: 0;
    background: #000;
    color: #ddd;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    min-height: 100vh;
}
body {
    display: flex;
    flex-direction: column;
    align-items: center;
}
img { max-width: 100%; height: auto; display: block; border: 0; }
a   { color: #f3c623; text-decoration: none; }
a:hover { text-decoration: underline; }

.stack {
    flex: 1;
    width: 100%;
    max-width: 900px;
    padding: 24px 12px;
    text-align: center;
}

/* top banner row: Star Vie wordmark left, World Padel Tour right */
.banner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.banner__top { max-height: 48px; width: auto; }
.banner__wpt img { max-height: 48px; width: auto; }

.logo-link { display: inline-block; }
.logo {
    margin: 0 auto 24px;
    max-width: 100%;
}

.bottom {
    margin: 24px auto 0;
}

.site-footer {
    width: 100%;
    padding: 24px 12px;
    color: #777;
    font-size: 0.85rem;
    text-align: center;
}
.site-footer a { color: #aaa; }

h1 { margin-top: 2rem; }
