body {
    background-color: #000000;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'League Gothic', sans-serif;
}

.top-navbar {
    background: linear-gradient(to bottom, #202020, #000000);
    height: 12vh;
    width: 100%;
    /* position: fixed; */
    border-bottom: white solid 1px;
    display: flex;
    padding: 0;
}

.top-navbar .advisor {
    background-color: #1eff00;
    width: 80%;
    height: 60%;
    margin: auto;
    border-radius: 10px;
}

.top-navbar .advisor p {
    color: rgb(0, 0, 0);
    font-size: 2rem;
    margin: auto;
    width: auto;
    text-align: center;
    animation: fadeInOut 2s infinite;
}

.first-screen {
    width: 100%;
    min-height: 88vh;
    position: relative;
}

.first-screen .img-wrapper {
    height: 60%;
    width: 100%;
}

.first-screen .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.first-screen .info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            /* Transparente no topo */
            rgb(0, 0, 0) 40%,
            /* Transparente até 20% */
            rgb(0, 0, 0) 100%
            /* Escurece até a base */
        );
    z-index: 1;
}

.first-screen .info h1 {
    font-family: 'Oswald', sans-serif;
    color: #fff;
    font-size: 2rem;
    text-align: center;
    width: 95%;
    margin: 0 auto;
    line-height: 1.1;
    margin-top: 25vh;
}

.first-screen .info h1 span {
    color: #ffd900;
    font-size: 2.5rem;
}

.first-screen .info .buttons {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-top: 20px;
}

.first-screen .info .buttons button {
    letter-spacing: 1px;
}

.second-screen {
    width: 100%;
    min-height: 100vh;
    position: relative;
}

.second-screen .video-wrapper {
    height: 100%;
    width: 100%;
}

.second-screen .video-wrapper div {
    width: 90%;
    height: 6vh;
    margin: auto;
    background-color: #ff0000;
    display: flex;
}

.second-screen .video-wrapper div p {
    color: white;
    font-size: 1.5rem;
    text-align: center;
    margin: auto;
    height: auto;
}

.second-screen .video-wrapper iframe {
    width: 100%;
    height: 94vh;
    margin-top: 2rem;
}

.third-screen {
    width: 100%;
    height: 100vh;
    position: relative;
}

.third-screen .img-wrapper {
    height: 100%;
    width: 100%;
}

.third-screen .img-wrapper img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
}

.third-screen .info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60vh;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            /* Transparente no topo */
            rgb(0, 0, 0) 30%,
            /* Transparente até 20% */
            rgb(0, 0, 0) 100%
            /* Escurece até a base */
        );
    z-index: 1;
    padding-top: 25vh;
    display: flex;
    flex-direction: column;
}

.third-screen .info p {
    font-family: 'League Gothic', sans-serif;
    text-align: center;
    margin: 0 auto;
    line-height: 1.1;
}

.third-screen .info .p1 {
    color: #fff;
    font-size: 1.8rem;
}
.third-screen .info .p2 {
    color: #00ff00;
    font-size: 4.2rem;
    letter-spacing: -2px;
}
.third-screen .info .p3 {
    color: #fff;
    font-size: 1.5rem;
}
.third-screen .info button {
    width: 90%;
    height: 3.5rem;
    background-color: #ffc524;
    font-size: 30px;
    margin: 0 auto;
    margin-top: 1rem;
}
.fourth-screen {
    width: 100%;
    height: auto;
    position: relative;
}
.fourth-screen .img-wrapper {
    height: auto;
    width: 100%;
}

.fourth-screen .img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.fourth-screen .first-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-color: rgba(0, 0, 0, 0.836);
    z-index: 1;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
}
.fourth-screen .first-info h1 {
    font-family: 'League Gothic', sans-serif;
    margin: auto;
    color: #ffffff;
    font-size: 70px;
}
.fourth-screen .first-info p {
    margin: 0 auto;
    font-family: 'League Gothic', sans-serif;
    font-size: 40px;
    line-height: 1;
}
.fourth-screen .first-info p.loteria {
    color: #1eff00;
}
.fourth-screen .first-info p.casino {
    color: #eeff00;
}
.fourth-screen .first-info p.bingo {
    color: #d400ff;
}
.fourth-screen .first-info button {
    width: 90%;
    height: 3.5rem;
    background-color: #1eff00;
    font-size: 30px;
    margin: 0 auto;
    margin-top: 1rem;
}
.fourth-screen .second-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-color: rgba(0, 0, 0, 0.836);
    z-index: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
}
.fourth-screen .second-info p {
    font-family: 'Courier New', Courier, monospace;
    color: #fff;
    font-weight: bold;
    text-align: center;
    margin: auto;

}

@keyframes fadeInOut {
    0% {
        color: #000;
    }

    /* Preto */
    50% {
        color: #464646;
    }

    /* Cinza mais claro */
    100% {
        color: #000;
    }

    /* 50% {
        color: #777;
    } */
}