/* BACKGROUND HALAMAN */
body{
    background: linear-gradient(180deg, #050505, #0f0f0f);
    font-family: "Poppins", Arial, sans-serif;
    color: white;
}

/* CONTAINER */
.game-detail{
    text-align: center;
    padding: 70px 20px;
    animation: fadeUp 0.8s ease;
}

/* JUDUL */
.game-title{
    font-size: 50px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.game-judul{
    font-size: 50px;
    font-weight: bold;
    color: #00ffcc;
    margin-bottom: 20px;
    letter-spacing: 3px;
    font-family: 'Cinzel Decorative', serif;
}

/* GAMBAR */
.game-banner img{
    max-width: 500px;
    width: 100%;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 15px 40px rgba(0,255,204,0.2);
    border: 3px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

.game-banner img:hover{
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(0,255,204,0.3);
}

/* MENU */
.game-menu{
    text-align: center;
    margin-bottom: 30px;
}

.menu-btn{
    padding: 12px 28px;
    margin: 8px;
    border: none;
    background: rgba(255,255,255,0.05);
    color: #fff;
    cursor: pointer;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s;
}

.menu-btn:hover{
    background: #00ffcc;
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0,255,204,0.4);
}

.menu-btn.active{
    background: #00ffcc;
    color: #000;
}

/* CONTENT */
.game-content{
    display: none;
    max-width: 800px;
    margin: auto;
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    color: #ccc;
    text-align: left;
    line-height: 1.8;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.game-content:hover{
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,255,204,0.15);
}

.game-content h2{
    color: #00ffcc;
    margin-bottom: 15px;
}

/* SECTION CONTENT */
.game-section{
    max-width: 1500px;
    margin: auto;
    background: rgba(255,255,255,0.05);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    color: #ddd;
    text-align: left;
    line-height: 1.8;
    margin-bottom: 35px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.game-section:hover{
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,255,204,0.15);
}

.game-section h2{
    color: #00ffcc;
    margin-bottom: 20px;
    text-align: center;
    font-size: 28px;
}

/* LIST ALAT */
.alat-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 25px;
    margin-top: 20px;
}

.alat-item{
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
    backdrop-filter: blur(10px);
}

.alat-item:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,255,204,0.2);
}

.alat-item img{
    width: 100%;
    height: 220px;
    object-fit: contain;
    object-position: center;
    background: rgba(0,0,0,0.4);
    border-radius: 15px;
    margin-bottom: 15px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

.alat-item h4{
    color: #00ffcc;
    margin-bottom: 10px;
    font-size: 18px;
}

.alat-item p{
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
}

/* ANIMASI */
@keyframes fadeUp{
    from{
        opacity: 0;
        transform: translateY(30px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}