* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #fefff9;
    background-size: cover;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(180deg, #ecef68 60%, #d3dd4b 100%);
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 1000;

}

.logo {
    font-size: 24px;
}

.hamburger-menu {
    font-size: 24px;
    cursor: pointer;
    color: #fff;
}

.sidebar {
    position: fixed;
    top: 60px;
    left: -250px;
    width: 250px;
    height: 100%;
    background: rgb(255 255 255 / 78%);
    color: #444;
    padding: 20px;
    transition: left 0.3s;
    z-index: 1000;
}

.sidebar.active {
    left: 0;
    background: rgb(255 255 255);
}

.sidebar a {
    color: #444;
    text-decoration: none;
    display: block;
    padding: 10px 0;
    font-weight: bold;
}

.sidebar a:hover {
    background-color: #555;
}

.content {
    padding: 20px;
    max-width: 1000px;
    margin: 60px auto !important;
/*     background: url(./bg.jpg) no-repeat center center fixed; */
/*     background: #ffe6e9; */
    background-size: cover;
}

.carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 100%;
    transition: opacity 0.5s ease;
}

.carousel-item:not(.active) {
    opacity: 0;
    pointer-events: none;
}

.carousel-inner img {
    width: 100%;
    height: 35vh;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.game-card {
    margin: .5rem 0;
}

.game-card img {
    width: 100%;
    border-radius: 10px;
}
.game-card2{
    margin: .5rem 0;
}
.game-card2 img{
    border-radius: 12px;
}
.game-recommendations {
    margin: 20px 0;
}
.logo-text{
    color: #f469fd;
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;

}
.game-detail-container{
    position: relative;
}
.game-recommendation {
    background: #efd368;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0);
    border-radius: 10px;
    text-align: center;
    color: #fff;
    background-size: cover;
    margin-bottom: 20px;
}

.game-recommendation img {
    width: 100%;
    border-radius: 10px;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 60px;
    background: #ecef68;
    background-position: left;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: .5rem;
    text-align: center;
}

.img-container img{
width: 80px;
height: 80px;
object-fit: cover;
}
.img-container1 {
    width: 100%;
    padding-top: 100%;
    position: relative;
/*     border: 2px solid #fff; */
    border-radius: 10px;
    text-align: center;
    color: #919191;
}
.img-container2 {
    width: 100%;
    position: relative;
/*     border: 2px solid #fff; */
    border-radius: 10px;
    text-align: center;
    color: #919191;
}
.img-container1 .img-6 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 4px 4px 4px #959595;
}
.img-container2 img{
    width: 100%;
}
footer p {
    margin-bottom: 0;
}

footer a {
    color: #fff !important;
}

.category {
    padding: .25rem .5rem;
    border-radius: 8px;
    position: absolute;
    font-size: 1rem;
    background-color: #ff4b4b;
    color: #fff;
    top: 10px;
    left: 10px;
    text-transform: uppercase;
    font-weight: bold;
}

.play-btn2 {
    border: 2px solid #737373;
    padding: .75rem 1rem;
    margin-top: 1rem;
    text-align: center;
    border-radius: 8px;
    color: #737373;
    font-size: larger;
    font-family: fantasy;
    letter-spacing: 5px;
}

#game-detail {
    margin-bottom: 60px;
}


.banner-p {
    margin: 1rem 0;
    font-size: 1.5rem;
    text-align: left;
    font-family: fantasy;
    border-bottom: 3px solid #ecef68;
    color: #ecef68;
    text-transform: uppercase;
    text-shadow: -2px -2px #959595;
}

h1 {
    text-align: center;
    margin-top: 10px;
    font-size: 2rem;
    font-weight: bold;
    color: #ecef68;
    text-shadow: -2px -2px #959595;
}

#game-cards2 {
    margin-bottom: 10px;
}

.carousel-control-prev, .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 1;
}

.carousel-control-prev {
    left: 10px;
    background: none;
}

.carousel-control-next {
    right: 10px;
    background: none;
}
#game-list{
 margin-bottom: 60px;
}
.moregame-list:last-child{
margin-bottom: 120px;
}

@media (max-width: 768px) {
    .content {
        margin-left: 20px;
        margin-right: 20px;
    }

    .sidebar {
        width: 200px;
    }

    .sidebar.active {
        left: 0;
    }
}
.game-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.game-title {
    flex-grow: 1;
    text-align: center;
    font-size: 1.2rem;
    color: #f469fd;
    font-weight: bold;
    text-shadow: 2px 2px white;
}

.play-btn-container {
    margin-left: 10px;
}

.play-btn {
    padding: .5rem .75rem;
    border-radius: 8px;
    border: 1px solid #fff;
    font-weight: bolder;
    box-shadow: 2px 2px 5px #979797;
    color: #fff;
    text-decoration: none;
    background-color: #69d3fd;
    font-size: .9rem;
}
.carousel-title{
    text-align: center;
    font-size: 1.5rem;
    margin-top: .25rem;
    font-family: fantasy;
    color: #ecef68;
    text-shadow: -2px -2px #919191;
}
.hot-tag {
    position: absolute;
    top: 5px;
    left: 5px;
    color: #fff;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    width: 30px !important;
    height: 30px !important;
}
/* @media (min-width: 767px) {
    body {
        background: url(./bg.jpg) no-repeat center center fixed;
        background-size: cover;
    }
}
 */