body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #e9b590;
    color: #e0e0e0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #0f3460;
}

.logo {
    height: 50px;
}

.nav-buttons .btn {
    margin-left: 10px;
}

.container {
    display: flex;
    margin-top: 20px;
    padding: 20px;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05); 
    backdrop-filter: blur(10px);    
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4); 
}

.main-heading {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #f9f7f7;
    margin-top: 30px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.main-menu {
    background: linear-gradient(#2600ff, #92fe9d);
    padding: 10px 0;
    text-align: center;
  }
  
  .menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 25px;
  }
  
  .menu-list li a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-weight: bold;
    border-right: 1px dotted rgb(32, 12, 113);
    padding: 0 10px;
  }
  
  .menu-list li:last-child a {
    border-right: none;
  }
  
  .menu-list li a:hover {
    color: #695454;
  }
  
.left-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
}

.girl-img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}

.action-buttons {
    width: 80%;
    margin-left: 150px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.right-panel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
    justify-items: center;
    align-items: center;
}

.game-item {
    text-align: center;
    background: #0f3460;
    border-radius: 15px;
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-img {
    width: 120px;
    height: 100px;
    object-fit: contain;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px #00fff5, 0 0 20px #ff6ec7, 0 0 30px #00fff5;
}

.game-title {
    margin-top: 8px;
    color: #e0e0e0;
    font-size: 12px;
    font-weight: bold;
    word-break: break-word;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
}

.daftar {
    background: linear-gradient(to right, #3a0ca3, #7209b7);
    color: #f9f7f7;
    border: 1px solid #ffffff22;
    padding: 8px 16px;
    border-radius: 6px;
    transition: 0.3s;
}
.daftar:hover {
    background: linear-gradient(to right, #7209b7, #3a0ca3);
}

.login {
    background: linear-gradient(to right, #ff6ec7, #ffc93c);
    color: #e9b590;
    padding: 8px 16px;
    border-radius: 6px;
    transition: 0.3s;
}
.login:hover {
    background: linear-gradient(to right, #ffc93c, #ff6ec7);
}

.rtp {
    background: linear-gradient(to right, #2600ff, #92fe9d);
    color: #e9b590;
    text-align: center;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    transition: 0.3s;
    font-size: 20px;
}
.rtp:hover {
    background: linear-gradient(to right, #92fe9d, #00fff5);
}

footer {
    background-color: #0b132b;
    color: #f9f7f7;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {

    .navbar {
      flex-direction: column;
      align-items: flex-start;
      padding: 10px 20px;
    }
  
    .nav-buttons {
      display: none;
    }
  
    .container {
      flex-direction: column;
      align-items: center;
      padding: 15px;
      gap: 15px;
    }
  
    .main-heading {
      font-size: 24px;
      margin: 20px 0 15px;
    }
  
    .main-menu {
      padding: 8px 0;
      display: none;
    }
  
    .left-panel {
      margin-top: 30px;
      width: 100%;
      align-items: center;
    }
  
    .girl-img {
      max-width: 90%;
    }
  
    .action-buttons {
      margin-left: 0;
      width: 100%;
      align-items: center;
    }
  
    .right-panel {
      grid-template-columns: repeat(3, 1fr);
      padding: 10px;
      gap: 10px;
    }
  
    .game-img {
      width: 80px;
      height: 80px;
    }
  
    .game-title {
      font-size: 10px;
    }
  
    .btn {
      font-size: 14px;
      padding: 8px 16px;
      width: 300px;
    }
  
    footer {
      font-size: 12px;
      padding: 10px;
    }
  }
  