
.game-info {
    background-color: transparent;
    padding-top: 0;
    padding-bottom: 0;
}

.game-info h1 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 2.2rem;
    color: #fff;

    margin-bottom: 4px;
}

.game-info .social-links {
    gap: 10px;
}

.game-info .social-links a {
    font-weight: 500;
    transition: 200ms;
}

.game-info .social-links a:hover {
    color: var(--main-color);
}

.about-game h3 {
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: -5px;
}
.about-game p:not(:last-child) {
    margin-bottom: 30px;
}

.tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tags div {
    background-color: #fff;
    color: #000;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4rem;
}


/* Video */
.video {
    overflow: hidden;
    position: relative;
    width:100%;
    z-index: 0;
    box-sizing: border-box;
    /* border: 3px solid #fff; */
    border-radius: var(--main-rounding);
}

.video::after {
    padding-top: 56.25%;
    display: block;
    content: '';
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* Carousel */
.carouselSlide {
    display: none;
    border-radius: var(--main-rounding);
}

.carouselSlide img {
    vertical-align: middle;
    border-radius: var(--main-rounding);
}

/* carousel container */
.carousel-container {
    overflow: hidden;
    z-index: 0;
    max-width: 1000px;
    position: relative;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 200ms ease-in-out;
    user-select: none;
    height: 100%;
    align-items: center;
}

.prev img, .next img {
    height: 100%;
}

.prev {
    top: 0;
    border-radius: 10px 0 0 10px;
}

/* Position the "next button" to the right */
.next {
    top: 0;
    right: 0;
    border-radius: 0 10px 10px 0;
}

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

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    /* border: 2px solid transparent;  */
    background-clip: padding-box;
    border-radius: 50%;
    margin: 0 2px;
    display: inline-block;
    transition: 200ms ease-in-out;
    vertical-align: middle;
    pointer-events: all;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

.active {
    background-color: white;
}

.dot-group-background {
  /* background-color: hsl(222, 14%, 28%); */
  /* box-shadow: 0 5px 25px rgba(0,0,0,0.2); */
  pointer-events: all;
  display: inline-block;
  padding: 5px;
  border-radius: 15px;
  line-height: 0;
}

.dot-group {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
    pointer-events: none;
    user-select: none;
}

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

@-webkit-keyframes fade {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}

@keyframes fade {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .prev,
    .next,
    .text {
        font-size: 11px;
    }
}

.call-to-action-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

@media (min-width: 685px) {
    .call-to-action-section {
        grid-template-columns: 1fr 1fr;
    }
}