/*Lore, About, and Content Pages Styles-----------------------------------------------*/

.character-strip {
    background-color: #42437C;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emails-strip {
    background-color: #42437C;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container {
    position: relative;
    width: 940px;
    height: 460px;
    margin: 0 auto;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight-box ul.highlight-list {
    list-style: none;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.highlight-item {
    gap: 60px;
    display: flex;
    align-items: center;
}

.eventinfo-center2 {
    padding-top: 10px;
    color: #ffea63;
    margin: 0;
    font-size: 2cm;
}

.highlight-title {
    color: #ffea63;
    font-family: "Blogger", sans-serif;
    font-size: 2em;
    margin: 0 0 10px 0;
    text-align: center;
}

.highlight-description {
    color: white;
    font-family: "Blogger", sans-serif;
    font-size: 1.1em;
    margin: 0;
    width: 500px;
    text-align: center;
}

.highlight-image img {
    width: 400px;
    height: auto;
    border-radius: 5px;
}

.highlight-video iframe {
    width: 400px;
    height: 225px;
    border-radius: 5px;
}

.highlight-video video {
    width: 400px;
    height: 225px;
    border-radius: 5px;
}

.highlights-container.custom-highlight {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.custom-box {
    width: 500px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.custom-box-2 {
    width: 500px;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.custom-box-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.custom-box-4 {
    width: 500px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.custom-box-5 {
    width: 35vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.highlight-text {
    text-align: center;
    margin-bottom: 10px;
    flex-grow: 1;
}

.highlight-video video {
    width: 100%;
    max-width: 200px;
    max-height: 150px;
    object-fit: cover;
    margin: 0 auto;
    flex-shrink: 0;
}

.dropdown-button-faq {
    padding: 15px 100px;
    font-size: 1.2cm;
    font-family: 'WMCT_One', sans-serif;
    background-color: #42437C;
    color: #ffea63;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.5s ease, transform 0.5s ease;
    display: inline-block;
    max-width: 1100px;
}

@keyframes enlargeShrink {
    0% {
        transform: translateX(-50%) scale(0.8);
        opacity: 0;
    }

    50% {
        transform: translateX(-50%) scale(1.05);
        opacity: 1;
    }

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

@keyframes shrinkFadeOut {
    0% {
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translateX(-50%) scale(0.95);
        opacity: 0.5;
    }

    100% {
        transform: translateX(-50%) scale(0.8);
        opacity: 0;
    }
}

.dropdown-content {
    background-color: #42437C;
}

.dropdown-content p {
    color: #ffe84a;
    padding: 20px 30px;
    text-decoration: none;
    display: inline-block;
    font-size: 28px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 0;
}

.dropdown-content-gamepts {
    display: none;
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    background-color: #42437C;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 1000;
    max-height: 600px;
}

.dropdown-content-gamepts p {
    color: #ffe84a;
    padding: 20px 30px;
    text-decoration: none;
    display: inline-block;
    font-size: 28px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 0;
}

.dropdown-content-faq {
    margin: auto;
    margin-top: 20px;
}

.dropdown-content-faq p {
    margin: auto;
    text-align: center;
}

.dropdown-toggle-faq {
    display: none;
}

.dropdown-toggle-faq:checked+.dropdown-content-faq {
    display: block;
}

.faq-clicked {
    background-color: #6166ac;
}

.dropdown-content p:hover {
    background-color: #575b9b;
}

.dropdown-content-gamepts p:hover {
    background-color: #575b9b;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
    animation: enlargeShrink 0.5s ease;
}

.dropdown:hover .dropdown-content-gamepts {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
    animation: enlargeShrink 0.5s ease;
}