.container h1 {
    text-align: center;
    font-size: 60px;
    font-weight: 700;
    padding-top: 5%;
    margin-bottom: 60px;
}

/* Separated Game Sections */
.game-container {
    max-width: 972.3px;
    margin: 80px auto;
    padding: 40px 20px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-container h2 {
    display: block;
    margin-bottom: 30px;
    text-align: center;
    font-size: 36px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.slide-container {
    position: relative;
}

.mySlides {
    display: none;
    width: 100%;
}

.mySlides img {
    width: 100%;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Slide dot */
.dot-container {
    display: flex;
    justify-content: center;
}

.dot {
    border-radius: 50%;
    background-color: white;
    height: 15px;
    width: 15px;
    display: inline-block;
    margin: 0 5px;
    align-items: center;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}

/* Game Description */
.decription {
    color: white;
    font-size: 18px;
    margin-top: 20px;
}

/* Video Section — style applied to each video-group */
.video-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1400px;
}

.video-group {
    width: 100%;
    padding: 40px 20px;
    border-radius: 10px;
    margin-bottom: 80px;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-group h2 {
    display: block;
    margin-bottom: 30px;
    text-align: center;
    font-size: 36px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.video {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.light-link {
    color: rgb(96, 180, 235);
    text-decoration: none;
}

.light-link:hover {
    text-decoration: underline;
}

.list {
    text-indent: 4em;
}
