html,
body {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    font-family: 'League Spartan', sans-serif;
}

.desktop-container {
    height: 100%;
    width: 100%;
    max-height: 1000px;
    max-width: 500px;
}

@media (max-width:600px) {

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

}

:root {
    --swiper-navigation-color: #f3c408;
    --swiper-pagination-color: #f3c408;
}

.swiper {
    width: 100%;
    height: 100%;
}

.divider {
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    color: white;
    background: black;
    font-size: 80px;
    text-transform: uppercase;
    line-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider p {
    transform: scale(0.0) rotateZ(-30deg);
}

@keyframes animate-in-divider-title {
    0% {
        transform: scale(0.0) rotateZ(-30deg);
    }

    100% {
        transform: scale(1.0) rotateZ(0deg);
    }
}

.divider.swiper-slide-fully-visible-or-transitioning-out p {
    animation: 1s 0.2s animate-in-divider-title forwards cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Welcome Slide Styles */

.welcome {
    background-color: black;
    overflow: hidden;
}

.welcome-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-fish {
    position: relative;
    top: 0;
    width: 80%;
}

@keyframes animate-in-welcome-fish {
    0% {}

    100% {
        width: 86px;
        top: 59px;
    }
}

body.page-loaded .swiper-slide-fully-visible-or-transitioning-out .welcome-fish {
    animation: 1s 1s animate-in-welcome-fish forwards cubic-bezier(0.85, 0, 0.15, 1);
}

.welcome-flame {
    width: 1px;
}

@keyframes animate-in-welcome-flame {
    0% {}

    100% {
        width: 320px;
    }
}

body.page-loaded .swiper-slide-fully-visible-or-transitioning-out .welcome-flame {
    animation: 1s 1s animate-in-welcome-flame forwards cubic-bezier(0.85, 0, 0.15, 1);
}

/* Game Slide Styles */

.game {
    background-color: #0b8500;
    perspective: 30em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-category {
    height: 100%;
    width: 100%;
    font-size: 40px;
    line-height: 40px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.game-card {
    transform-style: preserve-3d;
    height: 400px;
    width: 281px;
    transform: rotateZ(-10deg);
    position: absolute;
    top: -100%;
    box-shadow: 1px 10px 25px rgba(0, 0, 0, 0.5);
}

@keyframes animate-in-game-card {
    0% {}

    30% {
        top: 50%;
        transform: translateY(-50%) rotateZ(10deg) rotateY(0deg);
    }

    40% {
        top: 50%;
        transform: translateY(-50%) rotateZ(10deg) rotateY(0deg);
    }

    100% {
        top: 50%;
        transform: translateY(-50%) rotateZ(-10deg) rotateY(180deg);
    }
}

.swiper-slide-fully-visible-or-transitioning-out .game-card {
    animation: 5s 1s animate-in-game-card forwards;
}

.game-card-face {
    border-radius: 10px;
    background-color: white;
    height: 100%;
    width: 100%;
    position: absolute;
    backface-visibility: hidden;
    display: flex;
}

.game-card-front {
    background: url(/card.png) white;
    background-repeat: no-repeat;
    background-size: 90%;
    background-position: center;
}

.game-card-back {
    transform: rotateY(180deg);
    justify-content: center;
    align-items: center;
}

.game-card-face p {
    text-align: center;
    font-size: 40px;
    line-height: 35px;
    color: black;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
}

.game-card-face p.game-card-detail {
    font-size: 30px;
    line-height: 25px;
    margin-top: 10px;
}

/* Team Slide Styles */

.divider-team {
    background-color: #0000ac;
}

.team {
    background-color: #0000ac;
    color: white;
}

.name-roll {
    height: 50%;
    width: 100%;
    overflow: hidden;
    position: relative;
    font-weight: 900;
}

.name-roll ol {
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: relative;
    top: 0;
    opacity: 0;
}

.swiper-slide-fully-visible-or-transitioning-out .name-roll ol {
    opacity: 1;
}

.name-roll:nth-child(1) ol {
    transition: top 5s cubic-bezier(.34, .99, .86, 1.04), opacity 500ms linear;
}

.name-roll:nth-child(2) ol {
    transition: top 7s cubic-bezier(.34, .99, .86, 1.04), opacity 500ms linear;
}

.name-roll-overlay {
    height: 100%;
    width: 100%;
    display: flex;
    position: absolute;
    top: 0;
    justify-content: center;
    align-items: center;
    background: linear-gradient(0deg, rgba(0, 0, 172, 1) 0%,
            rgba(0, 0, 172, 1) 10%,
            rgba(0, 0, 172, 0) 50%,
            rgba(0, 0, 172, 1) 90%,
            rgba(0, 0, 172, 1) 100%);
    z-index: 11;
}

.name-roll-overlay p {
    font-size: 30px;
    line-height: 60px;
    text-align: center;
    color: white;
}

.name-roll-overlay .icon-arrow-left,
.name-roll-overlay .icon-arrow-right {
    height: 30px;
    position: relative;
    top: -7px;
    padding: 0 140px;
}

@keyframes loop-name-roll-overlay-icon-left {
    0% {
        left: 0;
    }

    100% {
        left: -40px;
    }
}

@keyframes loop-name-roll-overlay-icon-right {
    0% {
        left: 0;
    }

    100% {
        left: 40px;
    }
}

.name-roll-overlay .icon-arrow-left {
    animation: 1s ease loop-name-roll-overlay-icon-left infinite alternate-reverse;
}

.name-roll-overlay .icon-arrow-right {
    transform: scaleX(-1);
    animation: 1s ease loop-name-roll-overlay-icon-right infinite alternate-reverse;
}

.name-roll li {
    font-size: 40px;
    line-height: 60px;
    text-align: center;
}

.swiper-slide-fully-visible-or-transitioning-out .name-roll-revealed {
    font-size: 60px;
}

.swiper-slide-fully-visible-or-transitioning-out .name-roll-revealed,
.swiper-slide-fully-visible-or-transitioning-out .name-roll-overlay p {
    color: yellow;
}

.name-roll:nth-child(1) .name-roll-revealed,
.name-roll:nth-child(1) .name-roll-overlay p {
    transition: all 0.5s 5s cubic-bezier(0.85, 0, 0.15, 1);
}

.name-roll:nth-child(2) .name-roll-revealed,
.name-roll:nth-child(2) .name-roll-overlay p {
    transition: all 0.5s 7s cubic-bezier(0.85, 0, 0.15, 1);
}

.team-recap {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.team-recap ol {
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: absolute;
}

.recap-names-left {
    right: calc(50% + 30px);
    text-align: right;
    color: yellow;
}

.recap-names-right {
    left: calc(50% + 30px);
    text-align: left;
    color: yellow;
}

.team-recap li {
    font-weight: 900;
    font-size: 40px;
    line-height: 60px;
    position: relative;
}

.recap-names-left li {
    right: 300px;
}

.recap-names-right li {
    left: 300px;
}

.recap-names-plus li {
    opacity: 0;
    transform: scale(0.1);
}

@keyframes recap-name-left-fly-in {
    0% {}

    100% {
        right: 0;
    }
}

@keyframes recap-name-right-fly-in {
    0% {}

    100% {
        left: 0;
    }
}

@keyframes recap-plus-fade-in {
    0% {}

    100% {
        opacity: 1;
        transform: scale(1);
    }
}


/* Hall of Winners Styles */

.winners {
    background: url(/wood-texture.jpg) rgb(66, 0, 0);
    position: relative;
    background-size: cover;
}

.winners-plaque-set {
    width: 100%;
    position: absolute;
    top: 100%;
}

@keyframes winners-plaque-set-scroll {
    0% {
        top: 100%;
    }

    100% {
        top: -2500px;
    }
}

.swiper-slide-fully-visible-or-transitioning-out .winners-plaque-set {
    animation: 30s winners-plaque-set-scroll linear forwards;
}

.winners-plaque-wrapper {
    display: block;
    background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
        radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
    padding: 10px;
    width: 80%;
    margin: 30px auto;
}

.winners-plaque {
    background: black;
    color: rgba(254, 219, 55, 1);
    text-align: center;
    padding: 15px;
    position: relative;
    font-family: 'Libre Caslon Text', serif;
}

.winners-plaque-names {
    font-size: 28px;
    line-height: 48px;
}

.winners-plaque-year {
    font-size: 50px;
    line-height: 60px;
}

.winners-plaque-rivet {
    position: absolute;
    top: calc(50% - 5px);
    display: block;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, rgba(254, 219, 55, 1) 30%, rgb(180, 148, 72) 100%);
    border-radius: 5px;
}

.winners-plaque-rivet-left {
    left: 20px;
}

.winners-plaque-rivet-right {
    right: 20px;
}

/* Logistics Slide Styles */

.logistics {
    background: red;
    position: relative;
    overflow: hidden;
}

.logistics-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.logistics-block {
    font-size: 35px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    position: relative;
    line-height: 40px;
    text-align: center;
    width: 100%;
    margin: 0
}


.logistics-block-left {
    left: -100%;
}

@keyframes animate-in-logistics-block-left {
    0% {}

    100% {
        left: 0;
    }
}

.swiper-slide-fully-visible-or-transitioning-out .logistics-block-left {
    animation: 1s 0.5s animate-in-logistics-block-left forwards cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes animate-in-logistics-block-right {
    0% {}

    100% {
        right: 0;
    }
}

.logistics-block-right {
    right: -100%;
}

.swiper-slide-fully-visible-or-transitioning-out .logistics-block-right {
    animation: 1s 1s animate-in-logistics-block-right forwards cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes animate-in-logistics-img {
    0% {
        transform: rotate(-360deg) scale(0.0);
    }

    100% {
        transform: rotate(0deg) scale(1.0);
    }
}

.logistics-img-container {
    height: 140px;
}

.logistics-img {
    height: 100px;
    margin: 20px 0;
    transform: scale(0.0);
}

.swiper-slide-fully-visible-or-transitioning-out .logistics-img {
    animation: 1s 0s animate-in-logistics-img forwards cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Closing Slide */
