/*html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}*/


:root {
    --bg: #0b0b0d;
    --bg2: #111114;
    --card: #17171c;
    --border: #2a2a31;
    --red: #c1121f;
    --red-dark: #7f0812;
    --red-glow: rgba(193, 18, 31, 0.35);
    --text: #f5f5f5;
    --muted: #9b9ba1;
}

html {
    font-size: 14px;
    height: 100%;
}

/*body {
    background: radial-gradient(circle at top right, rgba(193,18,31,0.15), transparent 25%), radial-gradient(circle at bottom left, rgba(255,255,255,0.03), transparent 20%), linear-gradient(to bottom, #090909, #111114);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
}*/

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: radial-gradient(circle at top right, rgba(193,18,31,0.15), transparent 25%), radial-gradient(circle at bottom left, rgba(255,255,255,0.03), transparent 20%), linear-gradient(to bottom, #090909, #111114);
    color: var(--text);
    font-family: 'Inter', sans-serif;
}


/* NAVBAR */

.fight-navbar {
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(193,18,31,0.25);
    box-shadow: 0 0 25px rgba(0,0,0,0.6), 0 0 12px rgba(193,18,31,0.15);
}

.navbar-brand {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: white !important;
    text-transform: uppercase;
}

.brand-accent {
    color: var(--red);
    text-shadow: 0 0 10px var(--red-glow);
}

.nav-link {
    color: #d7d7d7 !important;
    font-weight: 500;
    letter-spacing: .5px;
    transition: 0.2s ease;
    margin-left: 8px;
    margin-right: 8px;
}

    .nav-link:hover {
        color: white !important;
        text-shadow: 0 0 8px var(--red-glow);
    }

    .nav-link.active {
        color: white !important;
        border-bottom: 2px solid var(--red);
    }

/* NAV SUPPORT LINK (Ko-fi / chocolate milk) */

.nav-support-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px !important;
    border-radius: 999px;
    background: rgba(193,18,31,0.12);
    border: 1px solid rgba(193,18,31,0.4);
    transition: all 0.2s ease;
}

    .nav-support-link:hover {
        background: rgba(193,18,31,0.22);
        border-color: rgba(193,18,31,0.6);
        color: white !important;
        text-shadow: 0 0 8px var(--red-glow);
    }

.nav-support-icon {
    flex-shrink: 0;
    color: #ff8f97;
}

/* MAIN */

.main-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
    flex: 1;
}

.content-card {
    background: linear-gradient(180deg, #17171c, #131317);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.45), 0 0 18px rgba(193,18,31,0.08);
}

/* FOOTER */

footer {
    margin-top: 60px;
    border-top: 1px solid rgba(193,18,31,0.15);
    color: var(--muted);
    background: rgba(0,0,0,0.35);
    padding-top: 18px;
    padding-bottom: 18px;
}

    footer a {
        color: #d8d8d8;
        text-decoration: none;
    }

        footer a:hover {
            color: white;
        }

/* BUTTON STYLE */

.btn-fight {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border: none;
    color: white;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 12px;
    transition: 0.2s ease;
    box-shadow: 0 0 15px rgba(193,18,31,0.25);
}

    .btn-fight:hover {
        transform: translateY(-1px);
        box-shadow: 0 0 20px rgba(193,18,31,0.45);
        color: white;
    }

/* SCROLLBAR */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: #3a3a3f;
    border-radius: 20px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #5b0d15;
    }
