@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500&family=Concert+One&display=swap');



/* Reset Margin dan Padding pada semua perangkat */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Untuk body memastikan tampilan mengambil seluruh tinggi layar */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.9);
    background-size: cover;
    background-position: center;
    color: white;
    filter: brightness(80%);
    min-height: 100vh; /* Pastikan body mengisi seluruh layar */
}

/* Header - Agar selalu berada di atas layar */
header {
    background-color: rgba(0, 0, 0, 0.7); /* Latar belakang transparan agar teks tetap terbaca */
    color: white;
    padding: 1em 0;
    position: fixed; /* Menggunakan fixed agar selalu berada di atas */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Agar header selalu di atas */
    text-align: center;
}

/* Container Header */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px; /* Batas lebar konten */
    margin: 0 auto; /* Pusatkan konten */
    padding: 0 20px; /* Jarak di sisi kiri dan kanan */
}

/* Gaya untuk <h1> */
.header-container h1 {
    font-size: 40px;
    margin: 0;
    color: white;
    font-family: "Concert One", serif;
    font-weight: 400;
    font-style: normal;
}

.header-buttons {
    display: flex;
    text-align: center;
}


/* Animasi Hamburger */
.hamburger {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 2000;
    transition: all 0.3s ease; /* Animasi halus */
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
    transition: transform 0.3s ease;
}

/* Menambahkan efek animasi saat menu dibuka */
.hamburger.open .line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open .line:nth-child(2) {
    opacity: 0;
}

.hamburger.open .line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Efek menu overlay */


#menu {
    display: none; /* Menyembunyikan menu saat pertama kali */
    position: fixed; /* Menjadikan menu tetap di layar */
    top: 0; /* Atur jarak dari atas */
    right: 0;
    background-color: rgba(0, 0, 0, 0.8); /* Background warna hitam transparan */
    width: 100%; /* Menjamin menu lebar 100% layar */
    height: 100%; /* Menjamin menu tinggi 100% layar */
    text-align: right; /* Meratakan teks ke kanan */
    padding: 10px; /* Jarak dalam menu */
    z-index: 1000; /* Pastikan menu tetap di atas konten lainnya */
    animation: slideFromTopBottom 0.6s ease-in-out; /* Animasi dari atas dan bawah */
    overflow: hidden; /* Menghindari scroll pada menu */
}

/* Animasi masuk dari atas dan bawah */
@keyframes slideFromTopBottom {
    from {
        top: -100%; /* Bagian atas keluar layar */
        bottom: 100%; /* Bagian bawah keluar layar */
        opacity: 0; /* Tidak terlihat */
    }
    to {
        top: 0; /* Menu mencapai posisi atas */
        bottom: 0; /* Menu mencapai posisi bawah */
        opacity: 1; /* Terlihat sepenuhnya */
    }
}


#menu ul {
    list-style: none;
    padding: 0;
    max-width: 300px; /* Tentukan lebar maksimal untuk menu */
    margin: 0; /* Hilangkan margin default */
    position: absolute; /* Pastikan menu tetap pada posisi yang diinginkan */
    top: 5px; /* Memberi jarak dari atas layar */
    right: 15px; /* Pusatkan menu secara horizontal */
    
}

#menu ul li {
    margin: 15px 0;
    background-color: rgb(24, 24, 24);
    width: 300px; /* Agar lebar mengikuti lebar menu */
    padding: 8px 10px; /* Memberikan sedikit padding di kiri dan kanan */
    border-radius: 5px; /* Membuat sudut lebih melengkung */
    max-width: 500px; /* Tentukan lebar maksimal */
    height: 1530px;

    opacity: 0; /* Awalnya tidak terlihat */
    transform: translateY(-20px); /* Geser sedikit ke atas */
    animation: fadeIn 0.6s ease-in-out forwards; /* Animasi fade-in */
    animation-delay: calc(0.1s * var(--index)); /* Jeda antar item */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    display: block; /* Agar link bisa memanfaatkan seluruh ruang */
    padding: 20px ; /* Memberikan ruang lebih pada link */
    border-bottom: 2px solid #3d3d3d; /* Garis bawah transparan, agar terlihat saat hover */
    border-radius: 5px; /* Membuat sudut latar belakang lebih melengkung */
    text-align: center;
    margin-bottom: 1em;
    transition: all 0.3s ease-in-out; /* Animasi smooth saat hover */
}

#menu ul li a:hover {
    color: #4a90e2; /* Warna hover */
    border-bottom: 2px solid #3d3d3d; /* Tampilkan garis bawah saat hover */
    border-radius: 5px; /* Membuat sudut latar belakang lebih melengkung */
}


/* Overlay modal yang sama untuk hamburger, Projects, dan Tutorial */
.overlay {
    display: none; /* Akan diubah melalui JavaScript saat tombol diklik */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw; /* Gunakan vw untuk memastikan skala penuh layar */
    height: 100vh; /* Gunakan vh agar tinggi layar penuh */
    background: rgba(0, 0, 0, 0.7); /* Latar belakang transparan */

    justify-content: center;
    align-items: center; /* Pastikan konten modal terpusat secara vertikal dan horizontal */
    z-index: 1000; /* Pastikan overlay berada di atas elemen lain */
    animation: ModalslideFromTopBottom 0.8s ease-in-out; /* Animasi dari atas dan bawah */
    overflow: hidden; /* Menghindari scroll pada menu */
}

/* Animasi masuk dari atas dan bawah */
@keyframes ModalslideFromTopBottom {
    from {
        top: -100%; /* Bagian atas keluar layar */
        bottom: 100%; /* Bagian bawah keluar layar */
        opacity: 0; /* Tidak terlihat */
    }
    to {
        top: 0; /* Menu mencapai posisi atas */
        bottom: 0; /* Menu mencapai posisi bawah */
        opacity: 1; /* Terlihat sepenuhnya */
    }

}




.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
    border: none;
    color: rgb(160, 160, 160);
    font-size: 24px;
    cursor: pointer;
}

/* Konten modal yang muncul di tengah overlay */
.modal-content {
    position: relative; /* Penting agar tombol close yang berposisi absolute, posisinya relatif terhadap modal-content */
    display: block;
    flex-direction: column;
    align-items: center;
    padding: 40px; /* Padding disesuaikan agar tampilannya lebih ramping */
    background-color: #222; /* Contoh latar belakang yang serupa dengan menu hamburger */
    border-radius: 8px;
    width: 50%;
    height: 80%;
    opacity: 0; /* Awalnya tidak terlihat */
    transform: translateY(-20px); /* Geser sedikit ke atas */
    animation: ModalfadeIn 1.5s ease-in-out forwards; /* Animasi fade-in */
    animation-delay: calc(0.1s * var(--index)); /* Jeda antar item */
}

@keyframes ModalfadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gaya tombol (link) di dalam modal */
.modal-content a {
    display: block;
    margin: 10px 0;
    text-decoration: none;
    font-size: 18px;
    color: #fff;

    padding: 10px 15px; /* Padding untuk memperbesar tombol */
    border-radius: 5px; /* Membuat sudut tombol lebih melengkung */
    border-bottom: 2px solid #474747; /* Garis bawah sebagai aksen */
    transition: background-color 0.3s ease;
}

.modal-content a:hover {
    color: #000;
    background-color: #3d3d3d;
    border-bottom: 2px solid #474747;
}


  
/* Efek Blur untuk Latar Belakang */
/* Modal default: tidak terlihat */
.ads-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Latar belakang transparan */
    backdrop-filter: blur(8px); /* Efek blur */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 6000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

/* Saat modal aktif (ditampilkan) */
.ads-modal.show {
    opacity: 1;
    visibility: visible;
}


/* Box Iklan */
.ads-modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 400px;
    text-align: center;
    animation: fadeInModal 0.3s ease-in-out;
    position: relative;
}
/* Tombol Close */
.ads-close {
    font-size: 24px;
    cursor: pointer;
    color: #333;
    position: absolute;
    top: 15px;
    right: 20px;
}

/* Animasi muncul */
@keyframes fadeInModal {
    from {
      transform: translateY(-20px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }





/* Tombol Home dengan latar belakang transparan */
.home-button {
    background-color: transparent;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
    padding: 10px 20px;
    position: relative;
    overflow: hidden; /* Untuk efek hover garis bawah */
}

/* Efek hover tombol Home */
.home-button::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

.home-button:hover::after {
    width: 100%; /* Memperluas garis bawah hingga penuh */
}






/* Main Content */
main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 120px 20px 20px; /* Mengatasi konten tertutup header */
    margin: 0;
    width: 100%;
}

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin: 50px auto;
    padding: 40px;
    max-width: 1200px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.main-container h1 {
    text-decoration: underline; 
    text-underline-offset: 10px; 
}

.project-intro {
    border: 1px solid #ccc;
    padding: 20px; /* Memberikan jarak antara border dan konten di dalamnya */
}
.project-intro h3 {
    margin-bottom: 1em;
}

.project-intro p {
    text-align: left; /* Pastikan teks rata kiri */
    margin-bottom: 1.5em; /* Tambahkan jarak antar paragraf seperti sebelumnya */
}


/* Box yang ada di dalam main */
/* Box utama agar tidak lebih besar dari gambar & tombol */
.box {
    display: inline-block; /* Agar ukurannya mengikuti isi */
    max-width: 420px; /* Batasi agar tidak lebih besar dari gambar/tombol */
    border: 2px solid #ccc;
    border-radius: 8px;
    padding: 15px; /* Kurangi padding agar lebih compact */
    background-color: #2c2c2c;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: white;
    text-align: center;
    margin: auto; /* Pusatkan di tengah */
}
.box h2 {
    color: #5a9ff2;
}

.box a {
    color: #5a9ff2;
    text-decoration: none;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #ccc; /* Tambahkan garis bawah (opsional) */
}

.box a:hover {
    color: #357ab7;
}

/* Project Section */
.tutorial-section {
    width: 100%;
    text-align: left;
}

.tutorial-section img {
    width: 350px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.tutorial-section p {
    flex-shrink: 0;
    height: auto;
    width: 350px;
    margin-bottom: 1.5em;
    
}

.tutorial-section h2 {
    color: #5a9ff2;
    text-align: center; /* Memusatkan teks secara horizontal */
    height: 50px;
    text-decoration: underline solid #fff;
    text-underline-offset: 10px; 
}

.tutorial-section h3 {
    font-size: 15px;
}




/* Download Section */
.download-section {
    display: flex;
    flex-wrap: wrap; /* Membuat box menyesuaikan pada perangkat kecil */
    justify-content: space-between;
    gap: 20px;
    flex-direction: row;
}

.download-section .box {
    flex: 1;
    width: 100%;
    max-width: 320px; /* Lebar maksimal */
    background-color: #2c2c2c;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: white;
}


.box p, h2{
    margin-bottom: 1.5em;
}

.box h3 {
    margin-bottom: 1.5em;
    border: 2px solid #ccc;
    font-size: 12px;
    
}


#download-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

/* Styling untuk file-box */
/* Pastikan box gambar dan tombol download berada di tengah */
.file-box {
    display: flex;
    flex-direction: column;
    align-items: center;  /* Tengahkan gambar dan tombol */
    justify-content: center;
    text-align: center;
    background-color: #2c2c2c;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: white;
    max-width: 320px; /* Agar tidak terlalu lebar di layar besar */
    margin: auto; /* Pusatkan di tengah */
}

.file-box a {
    color: white;
}

.file-box a {
    color: white; 
    text-decoration: none;
    font-weight: bold;
}

.file-box a:hover {
    color: #ffcc00;
}



/* Gambar preview */
.preview-image {
    width: 100%;
    max-width: 250px; /* Menyesuaikan ukuran */
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

.download-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #007bff;
    color: white;
    padding: 14px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    gap: 8px;
    transition: background 0.3s;
    white-space: nowrap;
    flex-wrap: nowrap;
    min-width: 270px; /* Lebar tombol lebih besar */
    max-width: 100%;
    text-align: center;
    font-size: 15px;
}

.download-button:hover {
    background-color: #0056b3;
}

.download-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}



.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.pagination button {
    padding: 6px 12px;
    cursor: pointer;
    border: none;
    background-color: #4a90e2;
    color: white;
    border-radius: 5px;
    font-size: 15px;
}

.pagination button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.pagination button:hover:not(:disabled) {
    background-color: #0056b3;
}



.running-box {
    width: 420px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: white;
    position: relative;
    overflow: hidden;
    border: 5px solid;
    border-radius: 10px;
    text-align: center;
    white-space: nowrap;
}
.running-text {
    position: absolute;
    animation: runningText 8s linear infinite;
}
@keyframes runningText {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}


.running-box2 {
    width: 420px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: white;
    position: relative;
    overflow: hidden;
    border: 5px solid;
    border-radius: 10px;
    text-align: center;
    white-space: nowrap;
}
.running-text2 {
    position: absolute;
    animation: runningText2 8s linear infinite;
}
@keyframes runningText2 {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

.running-box3 {
    width: 900px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: white;
    position: relative;
    overflow: hidden;
    border: 5px solid;
    border-radius: 10px;
    text-align: center;
    white-space: nowrap;
}
.running-text3 {
    position: absolute;
    animation: runningText3 8s linear infinite;
}
@keyframes runningText3 {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}


.running-box4 {
    width: 900PX;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: white;
    position: relative;
    overflow: hidden;
    border: 5px solid;
    border-radius: 10px;
    text-align: center;
    white-space: nowrap;
}
.running-text4 {
    position: absolute;
    animation: runningText4 8s linear infinite;
}
@keyframes runningText4 {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

.youtube {
    background-color: #940000; /* Warna latar merah seperti logo YouTube */
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 8px;
    font-size: 16px;
    margin-top: 10px; /* Tambahan jarak di atas tombol */
    transition: all 0.3s ease; /* Animasi untuk hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Bayangan tombol */
}

.youtube:hover {
    background-color: #cc0000;
    transform: translateY(-2px); /* Sedikit mengangkat tombol */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Tambahkan bayangan saat hover */
}

.youtube-icon {
    width: 25px;  /* Atur ukuran logo */
    height: auto;
    margin-right: 8px; /* Beri jarak antara logo dan teks */
    vertical-align: middle;
}

/* Efek fokus untuk aksesibilitas */
.youtube:focus {
    outline: 2px solid #b73535; /* Lingkaran fokus */
    outline-offset: 4px; /* Jarak lingkaran fokus dari tombol */
}




.social-icons {
    margin-top: 10px;
    text-align: center;
}

.social-icons a {
    font-size: 24px;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s;
}

/* Warna default ikon */
.social-icons a {
    color: #333; /* Warna awal ikon */
}

/* Warna saat hover */
.social-icons a[href*="instagram.com"]:hover {
    color: #E1306C; /* Instagram (Pink Tua) */
}

.social-icons a[href*="youtube.com"]:hover {
    color: #FF0000; /* YouTube (Merah) */
}

.social-icons a[href*="facebook.com"]:hover {
    color: #1877F2; /* Facebook (Biru Muda) */
}

.social-icons a[href*="twitter.com"]:hover {
    color: #ffffff; /* X (Putih) */
}

.social-icons a[href*="tiktok.com"]:hover {
    color: #25F4EE; /* TikTok (Biru Neon) */
}


/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    position: relative; /* Menjamin footer tetap di bawah */
}


.footer-links {
    margin-top: 10px;
}
.footer-button {
    margin: 0 10px;
    color: #8d8d8d;
    text-decoration: none;
    
}
.footer-button:hover {
    text-decoration: underline;
}



/* Aturan untuk perangkat smartphone dengan lebar maksimum 768px */
@media (max-width: 768px) {
    /* Header */
    header {
        padding: 0.5em 0;
    }

    .header-container {
        flex-direction: column;
        text-align: center;
        gap: 10px; /* Tambahkan jarak antar elemen di header */
    }

    .header-container h1 {
        font-size: 30px; /* Ukuran font lebih kecil */
    }

    .hamburger {
        top: 15px;
        right: 15px;
    }

    #menu {
        width: 100%; /* Menu menyesuaikan lebar layar */
        left: 0;
    }

    #menu ul li a {
        font-size: 14px; /* Ukuran font lebih kecil di menu */
    }

    /* Main Content */
    main {
        padding: 80px 10px 10px; /* Kurangi padding */
        width: 100%;
    }

    .main-container {
        padding: 10px; /* Kurangi padding container utama */
        gap: 20px; /* Kurangi jarak antar elemen */
        margin: 90px auto;
        
    }

    .main-container h1 {
        font-size: 25px;
        text-align: center;
    }

    .main-container h2 {
        font-size: 20px;
    }

    .main-container p,
    .main-container ul {
        font-size: 15px;
    }

    .project-intro h3 {
        font-size: 18px;
    }

    .project-intro p {
        font-size: 15px;
    }

    /* Box */
    .box {
        width: 100%; /* Pastikan box menggunakan lebar penuh */
        padding: 15px;
    }

    /* Tutorial Section */
    .tutorial-section img {
        width: 100%;
        max-width: 300px;
    }

    .tutorial-section p {
        width: 100%;
    }

    .tutorial-section h3 {
        font-size: 14px !important;
    }

    .tutorial-section h2 {
        font-size: 15px !important; /* Gunakan !important jika masih tidak berubah */
    }
    

    /* Download Section */
    .download-section {
        flex-direction: column;
        align-items: center;
    }

    .download-section .box {
        max-width: 100%;
        padding: 15px;
    }

    


    .file-box {
        width: 90%;
        max-width: 300px;
    }
    
    .download-button {
        min-width: 200px;
        padding: 12px 20px;
    }
    
    .running-box, .running-box2, .running-box3, .running-box4 {
        width: 100%;
        font-size: 20px;
    }

    /* Footer */
    footer {
        font-size: 15px; /* Kurangi ukuran teks */
    }

    .footer-links {
        text-align: center; /* Pusatkan link */
    }

    .footer-button {
        margin: 5px; /* Kurangi jarak antar tombol */
    }
}



/* Aturan untuk perangkat smartphone dengan lebar maksimum 768px */
@media (max-width: 1215px) {
    /* Header */
    header {
        padding: 0.5em 0;
    }

    .header-container {
        flex-direction: column;
        text-align: center;
        gap: 10px; /* Tambahkan jarak antar elemen di header */
    }

    .header-container h1 {
        font-size: 30px; /* Ukuran font lebih kecil */
    }

    .hamburger {
        top: 15px;
        right: 15px;
    }

    #menu {
        width: 100%; /* Menu menyesuaikan lebar layar */
        left: 0;
    }

    #menu ul li a {
        font-size: 14px; /* Ukuran font lebih kecil di menu */
    }

    /* Main Content */
    main {
        padding: 80px 10px 10px; /* Kurangi padding */
        width: 100%;
    }

    .main-container {
        padding: 10px; /* Kurangi padding container utama */
        gap: 20px; /* Kurangi jarak antar elemen */
        margin: 90px auto;
        
    }

    .main-container h1 {
        font-size: 25px;
        text-align: center;
    }

    .main-container h2 {
        font-size: 20px;
    }

    .main-container p,
    .main-container ul {
        font-size: 15px;
    }

    .project-intro h3 {
        font-size: 18px;
    }

    .project-intro p {
        font-size: 15px;
    }

    /* Box */
    .box {
        width: 100%; /* Pastikan box menggunakan lebar penuh */
        padding: 15px;
    }

    /* Tutorial Section */
    .tutorial-section img {
        width: 100%;
        max-width: 300px;
    }

    .tutorial-section p {
        width: 100%;
    }

    .tutorial-section h3 {
        font-size: 18px;
    }


    /* Download Section */
    .download-section {
        flex-direction: column;
        align-items: center;
    }

    .download-section .box {
        max-width: 100%;
        padding: 15px;
    }

    /* Footer */
    footer {
        font-size: 15px; /* Kurangi ukuran teks */
    }

    .footer-links {
        text-align: center; /* Pusatkan link */
    }

    .footer-button {
        margin: 5px; /* Kurangi jarak antar tombol */
    }
}
