/* Gaya dasar */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #121212;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

/* Menu */
.menu {
    background-color: #1e1e1e;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.menu-btn {
    color: #00f5d4;
    text-decoration: none;
    font-size: 1.2em;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.menu-btn:hover {
    background-color: #2e2e2e;
}

/* Container */
.container {
    max-width: 1000px;
    margin: 80px auto 20px auto;
    background: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

h2, h3 {
    text-align: center;
    color: #00f5d4;
    font-size: 2em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Tabel */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #1f1f1f;
    border-radius: 6px;
    overflow: hidden;
}

th, td {
    border: 1px solid #333;
    text-align: center;
    padding: 12px;
    word-wrap: break-word;
}

th {
    background-color: #00f5d4;
    color: #000;
    font-weight: bold;
}

td {
    background-color: #181818;
    color: #ddd;
}

tr:hover td {
    background-color: #2c2c2c;
}

/* Tombol live streaming */
.actions a,
.stream-btn {
    background: linear-gradient(145deg, #bb86fc, #d57aff);
    color: #121212;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 3px;
}

.stream-btn:hover {
    background-color: #e64a19;
    transform: scale(1.05);
    color: white;
}

/* Tombol back to top */
.back-to-top-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #00f5d4;
    color: #121212;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
}

.back-to-top-btn:hover {
    background-color: #00e0b5;
    transform: scale(1.05);
}
