/* =========================
   SoccerMod Global Styles v1
   ========================= */

:root {
    --color-bg: #f4f6f8;
    --color-surface: #ffffff;
    --color-primary: #0b5d1e;
    --color-primary-dark: #063f14;
    --color-text: #1f2933;
    --color-muted: #6b7280;
    --color-border: #d7dde3;
    --color-danger: #c62828;

    --font-main: Arial, Helvetica, sans-serif;
    --radius: 8px;
    --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-main);
    background: var(--color-bg);
    color: var(--color-text);
    padding-bottom: 64px;
    background: rgb(16, 26, 38);
}

.test-banner {
    background: var(--color-danger);
    color: #ffffff;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}

.site-header {
    background: rgb(14, 20, 28); /* matches your nav nicely */
    padding: 10px 0;
    border-bottom: 1px solid rgb(30, 42, 56);
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-header img {
    max-height: 50px;
    width: auto;
    display: block;
}

.site-header h1 {
    margin: 0;
}

.page {
    max-width: 1100px;
    margin: 30px auto;
    padding: 0 20px;
    background: rgb(16, 26, 38);
}

.card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 20px;
}

/* Bottom Navigation */

.bottom-nav {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 9999;

    width: 100%;
    height: 64px;

    background: rgb(14, 20, 28);
    border-top: 1px solid rgb(30, 42, 56);

    display: flex;
    align-items: center;
    justify-content: space-around;
}

.bottom-nav a {
    color: #ffffff;
    text-decoration: none;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-width: 64px;
    height: 100%;

    font-size: 12px;
}

.bottom-nav a i {
    font-size: 22px;
    margin-bottom: 4px;
}

.bottom-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
}

.bottom-nav a.active {
    color: #4da3ff;
}

.bottom-nav a:active {
    transform: scale(0.95);
}

.bottom-nav {
    backdrop-filter: blur(6px);
}
