.section {
    width: 100%;
    display:flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

.container {
    width: 1240px;
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
}

.header {
    height: 230px;
    justify-content: space-between;
    margin: 80px 0 30px;
}

.banner .logo, .banner .headline {
    width: 50%;
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
}

.banner {
    align-items: center;
}

.banner .logo img {
    width: 320px;
}

.banner .headline {
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-end;
}

.banner .headline .title {
    font-size: 5.5em;
    line-height: 1.2em;
    font-weight: 900;
    margin-bottom: -25px;
}

.banner .headline .head {
    font-size: 2.5em;
    line-height: 1.2em;
    font-weight: 700;
    color: var(--detalhes-3);
}

.nav .series, .nav .infos {
    font-size: 15px;
    width: 50%;
}

.nav .series ul li {
    font-weight: 600;
}

.nav .series ul li .active {
    color: var(--detalhes-3);
}

.nav .series ul li:not(:last-child)::after {
    content: "-";
    margin: 10px;
    color: var(--principal);
}

.nav .infos ul, .nav .infos ul a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

.nav .infos .update {
    color: #666;
    font-weight: 400;
}

.nav .infos .howWorks {
    color: var(--detalhes-3)!important;
    font-weight: 800;
    display: flex;
    flex-direction: row;
    margin-left: 50px;
}

.nav .infos .howWorks a {
    color: var(--detalhes-3);
}

.nav .infos .howWorks a:hover {
    opacity: .7;
}

.nav .infos .howWorks img {
    color: var(--principal);
}

.nav .infos .howWorks img {
    width: 17px;
    margin-right: 7px;
    margin-top: -3px;
}

.headerPoints {
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    font-weight: 900;
    font-size: 12px;
    background: var(--header-table);
    padding: 15px;
    margin: 1px 0;
    text-transform: uppercase;
}

.spinnerContainer {
    height: 150px;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid transparent;
    border-top: 4px solid var(--principal); /* ou qualquer cor que você quiser */
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 10px;
}

.loading-text {
    font-size: 16px;
    color: var(--text-color); /* substitua pela sua cor de texto */
    font-weight: bold;
    animation: fadeIn 1s ease-in-out infinite alternate;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0.3;
    }
    to {
        opacity: 1;
    }
}

.slsPoints {
    margin-top: 20px;
}

.slsPoints .line {
    width: 100%;
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    font-weight: 700;
    font-size: 17px;
    background: var(--slots);
    padding: 20px 15px;
    margin: 1px 0;
    transition: ease-in-out .3s;
    position: relative;
}

.slsPoints .line:hover {
    background: var(--principal-2);
    cursor: pointer;
}

.slsPoints .line:nth-child(1)::before,
.slsPoints .line:nth-child(1)::after,
.slsPoints .line:nth-child(2)::before,
.slsPoints .line:nth-child(2)::after,
.slsPoints .line:nth-child(3)::before,
.slsPoints .line:nth-child(3)::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: 0;
    transition: opacity .3s ease-in-out;
}

.slsPoints .line:nth-child(1) {
    background: linear-gradient(90deg, rgba(80, 76, 44, 0.8) 0%, rgba(18,18,18,1) 60%);
}

.slsPoints .line:nth-child(1)::before {
    background: linear-gradient(90deg, rgba(80, 76, 44, 0.8) 0%, rgba(18,18,18,1) 60%);
    opacity: 1;
}

.slsPoints .line:nth-child(1)::after {
    background: linear-gradient(90deg, rgba(80, 76, 44, 0.8) 0%, rgba(12,12,12,1) 60%);
    opacity: 0;
}

.slsPoints .line:nth-child(1):hover::before {
    opacity: 0;
}

.slsPoints .line:nth-child(1):hover::after {
    opacity: 1;
}

.slsPoints .line:nth-child(3) {
    background: linear-gradient(90deg, rgba(77,55,43,.8) 0%, rgba(18,18,18,1) 60%);
}

.slsPoints .line:nth-child(3)::before {
    background: linear-gradient(90deg, rgba(77,55,43,.8) 0%, rgba(18,18,18,1) 60%);
    opacity: 1;
}

.slsPoints .line:nth-child(3)::after {
    background: linear-gradient(90deg, rgba(77,55,43,.8) 0%, rgba(12,12,12,1) 60%);
    opacity: 0;
}

.slsPoints .line:nth-child(3):hover::before {
    opacity: 0;
}

.slsPoints .line:nth-child(3):hover::after {
    opacity: 1;
}

.slsPoints .line:nth-child(2) {
    background: linear-gradient(90deg, rgba(71,76,84,.8) 0%, rgba(18,18,18,1) 60%);
}

.slsPoints .line:nth-child(2)::before {
    background: linear-gradient(90deg, rgba(71,76,84,.8) 0%, rgba(18,18,18,1) 60%);
    opacity: 1;
}

.slsPoints .line:nth-child(2)::after {
    background: linear-gradient(90deg, rgba(71,76,84,.8) 0%, rgba(12,12,12,1) 60%);
    opacity: 0;
}

.slsPoints .line:nth-child(2):hover::before {
    opacity: 0;
}

.slsPoints .line:nth-child(2):hover::after {
    opacity: 1;
}

.headerPoints .rank, .tablePoints .line .rank {
    width: 5%;
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-left: 15px;
}

.headerPoints .tier, .tablePoints .line .tier {
    width: 5%;
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.headerPoints .team, .tablePoints .line .team {
    width: 25%;
    padding-left: 5px;
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.headerPoints .week, .tablePoints .line .week {
    width: calc(45% / 4);
    text-align: center;
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    position: relative;
}

.tablePoints .line .rank,
.tablePoints .line .tier {
    color: rgba(255, 255, 255, .5);
    font-weight: 900!important;
    z-index: 10;
}

.tablePoints .line .rankWeek,
.tablePoints .line .noPoints {
    color: rgba(255, 255, 255, .5);
    font-weight: 500!important;
    z-index: 10;
}

.tablePoints div {
    z-index: 99;
}

.headerPoints .rankWeek, .tablePoints .line .rankWeek,
.headerPoints .pointsWeek, .tablePoints .line .pointsWeek {
    width: 50%;
    position: relative;
}

.tablePoints .line .rank {
    color: var(--principal);
}

.tablePoints .line .rank,
.tablePoints .line .tier,
.tablePoints .line .pointsWeek,
.tablePoints .line .pointsOverall {
    font-weight: 900;
    text-transform: uppercase;
}

.headerPoints .pointsOverall, .tablePoints .line .pointsOverall {
    width: 9%;
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.line .card-red .pointsWeek::after, .line .card-yellow .pointsWeek::after {
    content: "";
    width: 7px;
    height: 9px;
    margin-top: 12px;
    margin-left: 5px;
    position: absolute;
    border-radius: 1px;
}

.line .card-red .pointsWeek::after {
    background: rgb(223, 8, 8);
}

.line .card-yellow .pointsWeek::after {
    background: rgb(255, 230, 0);
}

.line .team img {
    width: 35px;
    height: 35px;
    margin-right: 15px;
}

.error {
    display: none; 
    text-align: center; 
    padding: 20px; 
    font-weight: 999; 
    color: #555555;
    height: 150px;
}

.footer {
    padding: 80px 0 80px;
    position: relative;
}

.footer .cta {
    height: 250px;
    background-image: url('../images/bgCta.jpg');
    background-position: center -280px;
    background-size: cover;
    background-repeat: no-repeat;
    border: 2px solid rgba(210, 183, 68, .4);
    align-items: center;
}

.footer .cta .watch,
.footer .cta .play {
    width: 35%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    text-transform: uppercase;
}

.footer .cta .watch {
    padding-left: 40px;
}

.footer .cta .watch h2,
.footer .cta .play h2 {
    font-size: 2.5em;
    line-height: 1.1em;
    font-weight: 900;
    margin-right: 20px;
}

.footer .cta .watch a,
.footer .cta .play a {
    margin: 0 10px;
    transition: ease-in-out .3 all;
}

.footer .cta .watch a:hover,
.footer .cta .play a:hover {
    opacity: .8;
}

.footer .cta .watch .twitch {
    height: 50px;
    margin-top: 10px;
}

.footer .cta .watch .loco {
    height: 50px;
}

.footer .cta .watch .youtube {
    height: 35px;
}

.footer .cta .player {
    width: 30%;
    height: 250px;
    position: relative;
}

.footer .cta .player img {
    bottom: 2px;
    position: absolute;
}

.footer .cta .play .discord {
    height: 45px;
}

.footer .disclaimer {
    margin: 40px 0;
}

.footer .disclaimer p {
    font-size: .9em;
    line-height: 1.6em;
    font-weight: 500;
    color: #777;
    margin-bottom: 10px;
}

.footer .disclaimer strong {
    font-weight: 800;
    color: #999;
}

.footer .smirzera {
    margin: 20px 0;
    padding-top: 60px;
    border-top: 1px solid rgba(255,255,255, .1);
    align-items: center;
}

.footer .slsLogo {
    height: 80px;
}

.footer .smirzeraLogo {
    height: 35px;
}

.slsPoints .status-flag::before,
.slsPoints .status-flag::after,
.slsPoints .status-coringa::before,
.slsPoints .status-coringa::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: 0;
    transition: opacity .3s ease-in-out;
}

.slsPoints .status-flag {
    background: linear-gradient(90deg, rgba(62,14,14,1) 0%, rgba(18,18,18,1) 60%)!important;
}

.slsPoints .status-flag::before {
    background: linear-gradient(90deg, rgba(62,14,14,1) 0%, rgba(18,18,18,1) 60%);
    opacity: 1;
}

.slsPoints .status-flag::after {
    background: linear-gradient(90deg, rgba(62,14,14,1) 0%, rgba(12,12,12,1) 60%);
    opacity: 0;
}

.slsPoints .status-flag:hover::before {
    opacity: 0;
}

.slsPoints .status-flag:hover::after {
    opacity: 1;
}

.slsPoints .status-coringa {
    background: linear-gradient(90deg, rgb(105, 42, 15) 0%, rgba(18,18,18,1) 60%)!important;
}

.slsPoints .status-coringa::before {
    background: linear-gradient(90deg, rgb(105, 42, 15) 0%, rgba(18,18,18,1) 60%);
    opacity: 1;
}

.slsPoints .status-coringa::after {
    background: linear-gradient(90deg, rgb(105, 42, 15) 0%, rgba(12,12,12,1) 60%);
    opacity: 0;
}

.slsPoints .status-coringa:hover::before {
    opacity: 0;
}

.slsPoints .status-coringa:hover::after {
    opacity: 1;
}

.modalOpen {
    overflow: hidden;
}

.modalOverlay {
    inset: 0;
    position: absolute;
    z-index: 999999;
    background: rgba(0,0,0,.99);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    top: 0;
    left: 0;
    overflow-y: auto;
    display: none;
}

.modalOverlay .close {
    position: absolute;
    top: 30px;
    right: 30px;
}

.modalOverlay .modalContent {
    width: 900px;
    padding: 50px 0;
    font-size: .9em;
    line-height: 1.6em;
    font-weight: 500;
    color: #777;
}

.pointMatrix {
    padding: 10px 0 30px;
}

.pointsMatrixHeader, .pointsMatrixHeader .rank {
    font-weight: 800;
    color: #999;
}

.pointsMatrixData .line, .pointsMatrixHeader {
    display: flex;
    flex-direction: row;
    width: 100%;
    border-bottom: 1px solid #222;
    padding: 4px 0;
}

.pointsMatrixData .line:last-child {
    border-bottom: 0;
}

.pointsMatrixData .line .rank, .pointsMatrixHeader .rank {
    width: 15%;
    font-weight: 800;
    color: #999;
}

.pointsMatrixData .line .point, .pointsMatrixHeader .point {
    width: calc(85% / 4);
    text-align: center;
}

.modalContent .disclaimer {
    margin: 40px 0;
}

.modalContent .disclaimer .title {
    font-size: 3.5em;
    line-height: 1.2em;
    font-weight: 900;
    margin-bottom: 15px;
    color: #fff;
}

.modalContent .disclaimer p {
    margin-bottom: 10px;
}

.modalContent .disclaimer strong {
    font-weight: 800;
    color: #999;
}

.notes {
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.notes .container {
    justify-content: space-between;
    align-items: center;
}

.notes .container:nth-child(1) {
    width: 52%;
}

.notes .container:nth-child(2) {
    width: 40%;
}

.notes h2 {
    font-size: 18px;
    margin-bottom: 10px;
    width: 100%;
}

.notes p {
    font-size: 12px;
    line-height: 1.3em;
    width: 45%;
    padding-left: 30px;
    position: relative;
    word-spacing: 1px;
}

.notes p:before {
    content: "";
    position: absolute;
    width: 18px;
    height: 25px;
    z-index: 999;
    left: 0;
    border-radius: 1px;
}

.notes .flag:before {
    background: rgba(62,14,14,1);
}

.notes .coringa:before {
    background: rgb(105, 42, 15);
}   

.notes .redCard:before {
    background: rgb(223, 8, 8);
}

.notes .yellowCard:before {
    background: rgb(255, 230, 0);
}

.division-1 .rankWeek:after,
.division-2 .rankWeek:after,
.division-3 .rankWeek:after,
.division-4 .rankWeek:after,
.division-5 .rankWeek:after {
    content: attr(data-division);
    text-align: center;
    top: -2px;
    right: 5px;
    position: absolute;
    background: #555555;
    padding: 9.5px 7px 8.5px 6px;
    font-size: 9px;
    color: #fff;
    border-radius: 100%;
    line-height: 0;
}