[data-bs-theme=dark] {
    --bs-body-bg: #0b0e16;
    --bs-body-bg-rgb: 11, 14, 22;
    --bs-tertiary-bg: #0c0f18;
    --bs-tertiary-bg-rgb: 12, 15, 24;
}

html,
body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    background: #141928;
}

#app {
    flex-shrink: 0;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
}

a {
    text-decoration: none;
}

h1 {
    text-align: center;
}

.content {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.navbar .nav-item {
    margin-left: 0.7rem;
    margin-right: 0.7rem;
}

.navbar .navbar-nav .nav-link {
    color: #fff;
    font-weight: 600;
}

.home-background {
    position: relative;
    min-height: 100vh;
}

.home-background::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0, var(--bs-body-bg), rgba(0, 0, 0, 0.15) 80%);
}

.home-background .container {
    min-height: calc(100vh - 100px);
}

.home-links .home-link {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    display: inline-block;
    font-size: 12px;
    transition: .3s;
}

.home-links .home-link:hover {
    transform: scale(1.15);
    border: 1px solid rgba(255, 255, 255, .8);
}

.home-section-information .element {
    height: 100%;
    padding: 3rem;
    text-align: center;
    background: rgba(0, 0, 0, .2);
    border-radius: 25px 0 25px 0;
}

.home-section-information .element i {
    font-size: 3rem;
}

.home-section-information .element h3 {
    font-size: 2rem;
    margin-top: .8rem;
    font-weight: 400;
}

.home-section-information .element p {
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 200;
    color: #9fa1a5;
}

.color-inherit {
    color: inherit !important;
}
/* ================================
   SHINODA - GLOBAL VISUAL UPGRADE
================================ */

body {
    background:
        radial-gradient(circle at top left, rgba(0, 221, 255, .08), transparent 28%),
        radial-gradient(circle at top right, rgba(255, 183, 43, .06), transparent 25%),
        #111827 !important;
}

/* Liens / boutons navbar */
.navbar .nav-link {
    border-radius: 12px;
    transition: .25s ease;
}

.navbar .nav-link:hover {
    background: rgba(0, 221, 255, .08);
    color: #8defff !important;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 221, 255, .12);
}

/* Bouton rejoindre */
.navbar .nav-link[href*="join"],
.navbar .nav-link:last-child {
    transition: .25s ease;
}

.navbar .nav-link:last-child:hover {
    color: #ffd47d !important;
}

/* Cartes globales */
.card {
    border-radius: 24px !important;
    background:
        radial-gradient(circle at top left, rgba(0, 221, 255, .08), transparent 32%),
        linear-gradient(145deg, #08111f, #0d1b33) !important;
    border: 1px solid rgba(255, 255, 255, .08) !important;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .25) !important;
    transition: .25s ease;
}

.card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 221, 255, .25) !important;
    box-shadow:
        0 0 30px rgba(0, 221, 255, .10),
        0 24px 55px rgba(0, 0, 0, .35) !important;
}

.card-header {
    background: rgba(0, 221, 255, .06) !important;
    border-bottom: 1px solid rgba(255, 255, 255, .08) !important;
}

/* Boutons */
.btn-primary {
    border: none !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, #ffb72b, #d69200) !important;
    color: #080808 !important;
    font-weight: 900 !important;
    box-shadow: 0 10px 24px rgba(214, 146, 0, .25);
    transition: .25s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    filter: brightness(1.08);
    box-shadow: 0 16px 34px rgba(214, 146, 0, .38);
}

.btn-secondary,
.btn-danger,
.btn-success {
    border-radius: 14px !important;
    font-weight: 800 !important;
    transition: .25s ease;
}

.btn-secondary:hover,
.btn-danger:hover,
.btn-success:hover {
    transform: translateY(-2px);
}

/* Inputs */
.form-control,
.form-select {
    background: rgba(255, 255, 255, .06) !important;
    border: 1px solid rgba(255, 255, 255, .10) !important;
    color: white !important;
    border-radius: 14px !important;
    transition: .25s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(0, 221, 255, .55) !important;
    box-shadow: 0 0 24px rgba(0, 221, 255, .20) !important;
}

/* Tables */
.table {
    color: white !important;
}

.table thead {
    background: rgba(0, 221, 255, .08) !important;
}

.table th {
    color: #8defff !important;
    border-color: rgba(255, 255, 255, .06) !important;
}

.table td {
    border-color: rgba(255, 255, 255, .06) !important;
}

.table tbody tr {
    transition: .22s ease;
}

.table tbody tr:hover {
    background: rgba(255, 255, 255, .035) !important;
}

/* Dropdowns */
.dropdown-menu {
    border-radius: 18px !important;
    background: rgba(7, 13, 26, .96) !important;
    border: 1px solid rgba(255, 255, 255, .10) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35) !important;
}

.dropdown-item {
    border-radius: 12px;
    transition: .2s ease;
}

.dropdown-item:hover {
    background: rgba(0, 221, 255, .09) !important;
    color: #8defff !important;
}

/* Alerts */
.alert {
    border-radius: 20px !important;
    border: 1px solid rgba(255, 255, 255, .10) !important;
    backdrop-filter: blur(10px);
}

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, .08);
}

/* Images */
img {
    transition: .25s ease;
}

.card:hover img {
    filter: brightness(1.05);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #08111f;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(#00ddff, #d69200);
    border-radius: 999px;
}