* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #f9b870;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    background-color: rgb(255, 255, 255);
    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;
}

.sidebar {
    position: fixed;
    top: 60px;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: #fff;
    color: #444;
    padding: 20px;
    transition: left 0.3s;
    z-index: 1000;
}

.sidebar.active {
    left: 0;
}

.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;
}

.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%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.game-card{
    margin: .5rem 0;
}
.game-card img {
    width: 100%;
    border-radius: 10px;
}

.game-recommendations {
    margin: 20px 0;
}

.game-recommendation {
    background-color: #ffa33e;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    text-align: center;
    color: #fff;
}

.game-recommendation img {
    width: 100%;
    border-radius: 10px;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 60px;
    background-color: #fff;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: .5rem;
    text-align: center;
}
.img-container {
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    position: relative;
}

.img-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 2px 2px 5px #1e1e1e;
}

footer p{
    margin-bottom: 0;
}
footer a{
    color: #f9b870 !important;
}
.category{
    padding: .25rem;
    border-radius: 4px;
    position: relative;
    display: inline-block;
    font-size: .8rem;
    background-color: #72ed64;
    color: #fff;
    vertical-align:middle;
    margin: .5rem auto;
}
.play-btn{
    padding: .5rem 1rem;
    border-radius: 8px;
    border: 1px solid #fff;
    font-weight: bolder;
    box-shadow: 2px 2px 5px #979797;
}
.play-btn2{
    border: 2px solid #fff;
    padding: .75rem 1rem;
    margin-top: 1rem;
    text-align: center;
    border-radius: 8px;
    color: #fff;
    font-size: larger;
    font-family: fantasy;
    letter-spacing: 5px;
    box-shadow: 4px 4px 8px #e99232;
}
#game-detail{
    margin-bottom: 60px;
}
@media (max-width: 768px) {
    .content {
        margin-left: 20px;
        margin-right: 20px;
    }


    .sidebar {
        width: 200px;
    }

    .sidebar.active {
        left: 0;
    }
}
