@font-face {
    font-family: 'Material Design Icons';
    src: url('materialdesignicons-webfont.8ec60c9.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8420e8;
    --secondary-color: #681bf8;
    --font-color: white;
    --background-color: rgb(4, 4, 4);
    --background2: rgb(8, 8, 8);

    --linear: linear-gradient(265deg, #a12fff, #0e9ad2);
    --span-texte: rgb(212, 244, 98);
}


body {
    font-family: "Material Design Icons";
    background: var(--background-color);
    color: var(--font-color);
}

.hero {
    min-height: 720px;
    background: linear-gradient(rgba(0, 0, 0, 0.38) 45%, var(--background-color)), url('../images/home_logout_bg_3.ad143dc.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-link:hover,
.nav-link {
    color: var(--font-color) !important;
}

header {
    position: fixed;
    left: 0;
    right: 0;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.032);
    z-index: 1000;
}

.navbar-brand{
    color: var(--font-color) !important;
    font-weight: bolder;
}

.btn-custom {
    background: var(--linear);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: opacity 0.3s;
    min-width: 150px;
    padding: 20px;
}

.btn-custom:hover {
    opacity: 0.8;
    color: white;
}

h1 {
    max-width: 980px;
    margin: 0 auto 18px auto;
    font-size: 64px;
    line-height: 62px;
}

.lead {
    max-width: 720px;
    margin: 0 auto 28px auto;
}

.classement {
    max-width: 1050px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    text-align: left;
}

.choix {
    min-height: 220px;
    background: rgba(8, 8, 8, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    padding: 18px;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr auto;
    gap: 12px;
    align-items: start;
}

.choix.premier {
    border-color: rgba(212, 244, 98, 0.75);
}

.rang {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--span-texte);
    color: #101010;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.choix h2 {
    margin: 0;
    font-size: 24px;
    line-height: 29px;
}

.choix p {
    margin: 8px 0 0 0;
    color: rgba(255, 255, 255, 0.78);
}

.badge {
    grid-column: 1 / 3;
    justify-self: start;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 14px;
}

.choix .btn-custom {
    grid-column: 1 / 3;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 13px 16px;
    text-align: center;
}

.video-container {
    width: 450px;
    overflow: hidden;
    height: auto;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 550px;
}

.video-container video {
    position: relative;
    top: 70px;
}

.hero-bottom {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    grid-gap: 20px;
    align-items: flex-end;
}

.hero-bottom img {
    width: 350px;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
}

.bg-content {
    background: var(--background2);
    border-radius: 10px;
    padding: 20px;
    margin: 40px 0;
}

.table-responsive {
    width: 80%;
    margin: 0 auto;
}

.table-responsive div {
    background: var(--background2);
    border-radius: 10px;
    padding: 20px;
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.table-responsive div p {
    margin: 0;
}

.table-responsive div:hover {
    border: 2px solid var(--primary-color);
}

.images-containers {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 70px 10px;
}

.images-containers img {
    width: 30%;
    height: 400px;
    border-radius: 10px;
    object-fit: cover;
}

.bg-content ul {
    padding: 0;
    list-style: none;
}

.table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--font-color);
    border-radius: 10px;
    padding: 10px;
    width: 85%;
    margin: 0 auto 40px auto;
}

.table>div:not(:last-child) {
    border-right: 1px solid var(--font-color);

}

.table>div {
    padding: 20px;
    background: var(--background2);
}
