@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700;900&display=swap');

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #111;
    color: #fff;
    display: flex;
    justify-content: center;
}

.website-container {
    width: 100%;
    max-width: 500px; /* Lebar tipikal untuk tampilan mobile */
    background-color: #000;
    border: 1px solid #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-header {
    background-color: #000;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
	position: sticky;
    top: 0;
    z-index: 1000;
}

.register-btn-top {
    background-color: #af0a0a;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #ffc107;
}

.main-banner {
    position: relative;
    text-align: center;
    color: white;
}

.main-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.main-banner .banner-text {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px;
    border-radius: 5px;
}

.auth-buttons {
    display: flex;
}

.auth-buttons .btn {
    flex: 1;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    font-size: 1.2em;
}

.login-btn {
    background: linear-gradient(to bottom, #ffeb3b, #fbc02d); /* Gradien kuning */
}

.register-btn {
    background: linear-gradient(to bottom, #f44336, #c62828); /* Gradien merah */
    color: #fff;
}

.main-nav {
    display: flex;
    justify-content: space-around;
    background-color: #212121;
    padding: 10px 0;
    border-top: 1px solid #424242;
    border-bottom: 1px solid #424242;
}

.main-nav a, .footer-nav a {
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.8em;
}

.main-nav a i, .footer-nav a i {
    font-size: 1.5em;
    margin-bottom: 5px;
}

.jackpot-container {
    background-color: #000;
    border: 3px solid #ffc107; /* Border emas */
    margin: 15px;
    padding: 10px;
    text-align: center;
    border-radius: 8px;
}

.jackpot-title {
    color: #eee;
    font-size: 0.9em;
    letter-spacing: 2px;
}

.jackpot-amount {
    color: #ffeb3b; /* Kuning terang */
    font-size: 2em;
    font-weight: bold;
}

.content {
    padding: 0 15px 15px 15px;
    color: #ccc;
    line-height: 1.6;
}

.content a {
    text-decoration: none;
}

.content h1 {
    color: #ffc107;
    text-align: center;
}

.content h2 {
    color: #ffc107;
    font-size: 1em;
}

.content strong {
    color: #fff;
    font-weight: bold;
}

.content p {
    font-size: 0.9em;
    text-align: justify;
}

.spacer {
    flex-grow: 1;
}

.footer-nav {
    display: flex;
    justify-content: space-around;
    background-color: #1a1a1a;
    padding: 10px 0;
    position: sticky;
    bottom: 0;
    width: 100%;
    max-width: 500px;
    border-top: 2px solid #ffc107;
}

/* Styling untuk logo gambar (SUDAH DIPERBARUI) */
.logo img {
    height: 40px; /* Atur tinggi logo sesuai keinginan */
    width: auto; /* Lebar akan menyesuaikan secara otomatis */
    display: block; /* Menghilangkan spasi ekstra di bawah gambar */
}