body {
    font-family: Arial, sans-serif;
    margin: 0%;
    background-color: black;
}


header {
    background-color: #333;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.burger {
    cursor: pointer;
    font-size: 24px;
}

.nav-hidden {
    display: none; /* Menyembunyikan menu secara default */
}

.nav-visible {
    display: block; /* Menampilkan menu saat kelas ini ditambahkan */
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    margin: 5px 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

.mode-buttons {
    display: flex;
    background-color: #000000;
    border-radius: 15px;
}

.mode-buttons button {
    margin-left: 10px;
    background-color: #FCF259;
}

.content {
    display: flex;
    flex-wrap: wrap; /* Membuat konten membungkus ke baris berikutnya */
    justify-content: center; /* Mengatur konten agar berada di tengah */
    padding: 20px; /* Memberikan padding di sekitar konten */
}

.image-article {
    border-radius: 15px;
    border: 1px solid #333;
    margin: 20px;
    text-align: center;
    flex: 1 1 300px; /* Membuat gambar dan artikel fleksibel dengan lebar minimum 300px */
    max-width: 300px; /* Membatasi lebar maksimum */
}

.responsive-image {
    width: 100%; /* Membuat gambar responsif */
    height: auto; /* Memastikan tinggi gambar otomatis */
    margin: 10px 0; /* Memberikan margin di atas dan bawah gambar */
    cursor: pointer;
    transition: transform 0.2s;
}

.responsive-image:hover {
    transform: scale(1.1); /* Membesarkan gambar saat dihover */
}

.article {
    margin-top: 10px;
}

.article-content {
    display: none; /* Menyembunyikan konten artikel secara default */
}

.hidden {
    display: none; /* Kelas untuk menyembunyikan elemen */
}

@media (max-width: 768px) {
    .mode-buttons {
        display: none; /* Menyembunyikan tombol mode di perangkat mobile */
    }

    .responsive-image {
        max-width: 100%; /* Membuat gambar maksimum 100% lebar di perangkat mobile */
    }
}
.image-article {
    width: 23%; /* 4 images in a row for PC */
    margin: 1%;
}

/* Styles for mobile mode */
.mobile .content {
    display: block; /* Stack images vertically */
}

.mobile .image-article {
    width: 100%; /* 1 image in a row for mobile */
    margin: 10px 0; /* Add margin for spacing */
}
h2 {
    color: gold;
    background-color: rgb(13, 27, 88);
}
h3 {
    text-align: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    box-shadow: 0 0 5px #FCF259;
    border-radius: 7px;
    border-bottom-style:solid;
    border-color: #FCF259;
    color: aqua;
}
.article-content hidden p{
    color: aliceblue;
}
.rounded-start {
    border-top-left-radius: 10px; /* Rounded top left corner */
    border-bottom-left-radius: 10px; /* Rounded bottom left corner */
}

.img-post {
    width: 100%; /* Ensure the image takes the full width of its container */
    height: auto; /* Maintain aspect ratio */
}
.article p{
    color: aliceblue;
    border: 1px solid #054077;
    box-shadow:  0 0 7px #054077;
    background-color: black;
}
.image-article  {
    width: 100vh;
    background-color: #273F4F;
}
.cucok {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FCF259;
    border: 1px solid #273F4F;
}
/* Modal styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.8); /* Black background with opacity */
}

.modal-content {
    margin: auto;
    display: block;
    width: 100%; /* Full width for the enlarged image */
    height: auto; /* Maintain aspect ratio */
    max-height: 100%; /* Prevent overflow */
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
.logo {
    border-bottom:  1px solid #FCF259;
    border-bottom-right-radius: 15px;
}
..jackpot-footer {
    background-color: #282c34; /* Warna latar belakang gelap */
    color: white; /* Warna teks putih */
    padding: 20px;
    text-align: center;
}

.jackpot-container {
    max-width: 600px; /* Lebar maksimum kontainer */
    margin: 0 auto; /* Pusatkan kontainer */
}

.jackpot-image {
    width: 100%; /* Gambar responsif */
    height: auto; /* Mempertahankan rasio aspek */
    border-radius: 10px; /* Sudut melengkung */
    margin: 15px 0; /* Jarak atas dan bawah */
}

.claim-button {
    background-color: #ffcc00; /* Warna tombol */
    color: #282c34; /* Warna teks tombol */
    border: none; /* Tanpa border */
    padding: 10px 20px; /* Jarak dalam tombol */
    font-size: 16px; /* Ukuran font */
    border-radius: 5px; /* Sudut melengkung tombol */
    cursor: pointer; /* Kursor tangan saat hover */
    transition: background-color 0.3s; /* Transisi warna */
}

.claim-button:hover {
    background-color: #e6b800; /* Warna tombol saat hover */
}