/* Reset dan Pengaturan Dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Background Warna-Warni Bergerak */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: #fff;
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

h1 {
    text-align: center;
    color: #fff;
    margin: 20px 0;
}

mark {
    background-color: rgba(255, 255, 0, 0.3);
    padding: 0.2em 0.4em;
    border-radius: 4px;
}

nav {
    text-align: center;
    margin-bottom: 20px;
}

nav a {
    text-decoration: none;
    color: #ffd700;
    margin: 0 10px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* Taskbar Hamburger Menu */
.hamburger {
    position: fixed;
    top: 20px;
    left: 20px;
    cursor: pointer;
    z-index: 200; /* Agar selalu di atas elemen lain */
}

.hamburger .material-icons {
    font-size: 36px;
    color: #fff;
}

.taskbar {
    display: none; /* Awalnya disembunyikan */
    position: fixed;
    top: 70px; /* Posisi di bawah hamburger */
    left: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 100; /* Tetap di atas konten lain */
}

.taskbar a {
    display: flex;
    align-items: center;
    margin: 10px 0;
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
}

.taskbar a img {
    width: 30px;
    height: auto;
    margin-right: 10px;
    transition: transform 0.3s;
}

.taskbar a img:hover {
    transform: scale(1.1);
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

ul li a {
    text-decoration: none;
    color: #ffd700;
    font-weight: bold;
}

ul li a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    margin-top: 20px;
    color: #ddd;
    padding: 10px 0;
}

.play-button {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #ffd700;
    color: #333;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.play-button:hover {
    background-color: #e0c200;
}