body {
  margin: 0;
  font-family: Arial;
  background: #000;
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.logo {
  font-family: 'Rekusentrial', sans-serif;
}
header{
  background:#4c5cff;
  padding:12px 15px;
  position:sticky;
  top:0;
  z-index:1000;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.top-menu{
  display:flex;
  align-items:center;
  margin-left:auto;
}

.search-btn{
  width:26px;
  height:26px;
  cursor:pointer;
  margin-right:24px;
}

.search-btn svg{
  width:100%;
  height:100%;
  stroke:white;
  stroke-width:2;
  fill:none;
}

.menu-btn{
  width:28px;
  height:22px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  cursor:pointer;
}

.menu-btn span{
  width:100%;
  height:3px;
  background:white;
  border-radius:10px;
  display:block;
}
.logo{
  color:white;
  text-decoration:none; 
}

.logo:active{
  opacity:0.7;
}.genre-text{
  margin-top:10px;
  margin-bottom:10px;
  text-align:center;
  font-size:14px;
  color:#e0e0e0;
  line-height:1.5;
  font-weight:500;
}

/* ===== BERANDA ===== */
.card {
position: relative;
margin-bottom: 15px;
border-radius: 10px; /* bulat dikit cuma di beranda */
overflow: hidden;
cursor: pointer;
}
.card img {
width: 100%;
aspect-ratio: 16 / 9;
object-fit: cover;
display: block;
background: #222;
}


/* JUDUL DI DALAM GAMBAR */
.card .title {
position: absolute;
bottom: 8px;
left: 10px;
right: 10px;
font-size: 18px;
font-weight: bold;
color: white;
text-shadow: 0 0 6px black;
}

/* ===== DETAIL ===== */
.cover {
  width: 100%;
  height: auto;
  aspect-ratio: unset;
  object-fit: contain;
  border-radius: 0;
  display: block;
}

.box {
background: #1f1f1f;
margin-top: 15px;
padding: 20px;
border-radius: 20px;
text-align: center;
font-size: 18px;
line-height: 1.8;
}
.desc {
margin-top: 20px;
font-size: 18px;
text-align: center;
}

.ss {
width: 100%;
height: auto;
margin-top: 10px;
border-radius: 0; /* HAPUS BULAT */
object-fit: contain;
}

.genre-text {
  margin-top: 15px;
  text-align: center;
}

.genre-tag {
  display: inline-block;
  background: #4c5cff;
  color: white;
  padding: 6px 12px;
  margin: 4px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}

/* BUTTON */
button {
width: 100%;
padding: 15px;
margin-top: 15px;
border: none;
border-radius: 15px;
background: #5a6cff;
color: white;
font-weight: bold;
}
.download-btn {
display: flex;
gap: 10px;
margin-top: 15px;
}

.download-btn button {
flex: 1;
padding: 15px;
border: none;
border-radius: 15px;
background: #5a6cff;
color: white;
font-weight: bold;
font-size: 16px;
}
footer{
margin-top:40px;
padding:30px 20px;
text-align:center;
border-top:1px solid #333;
font-family:'Orbitron', sans-serif;
}

.footer-links{
font-size:14px;
letter-spacing:1px;
}

.footer-links a{
text-decoration:none;
color:#bbb;
transition:0.3s;
}

.footer-links a:hover{
color:white;
text-shadow:0 0 6px rgba(255,255,255,0.4);
}

.dot{
margin:0 8px;
color:#666;
}

.community{
margin-top:8px;
font-size:12px;
color:#777;
letter-spacing:2px;
}

.copy{
margin-top:10px;
font-size:12px;
color:#555;
}
@media (max-width:600px){

.footer-links{
font-size:10px;
letter-spacing:0.5px;
white-space:nowrap;
}

.dot{
margin:0 4px;
}

}
.container{
  padding: 15px;
  margin-top: 10px;
  flex: 1;
}

body{
  overflow-x: hidden;
}

.card{
  transform: translateZ(0);
}
#genreList{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:10px;
}

.genre-box{
  background:#1f1f1f;
  padding:12px;
  border-radius:12px;
  cursor:pointer;

  font-family: 'Rekusentrial', Arial, sans-serif;
  font-size:14px;
  font-weight:600;
  color:#fff;

  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.judul-genre {
  font-size: 20px;
  margin-bottom: 10px;
  text-align: left;
  font-weight: bold;
}
@media (max-width:600px){
  .judul-genre{
    margin-top: -8px;
  }
}