/* Reset dasar untuk memastikan tampilan konsisten di semua browser */
* {
    margin: 0;
    padding: 0;
    box-box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

/* Container Utama: Menjaga konten di tengah (Step 5) */
.main-container {
    width: 100%;
    max-width: 500px; /* Batas lebar di PC agar tidak terlalu pinggir */
    padding: 20px;
    text-align: center;
}

/* Header */
.header-section {
    margin-bottom: 0;
}

.header-img {
    width: 100%;
    max-width: 400px; /* Ukuran gambar header */
    height: auto;
}

/* Language Switcher (Step 2) */
.language-switcher {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.flag-icon {
    border: 1px solid #cfcfcf;
    width: 35px;
    cursor: pointer;
    transition: transform 0.2s;
}

.flag-icon:hover {
    transform: scale(1.1);
}

.divider-line {
    width: 2px;
    height: 25px;
    background-color: #cfcfcf; /* Warna biru sesuai gambar */
}
.topline-margin {
    border: 0;
    border-top: 1px solid #cfcfcf;
    margin-bottom: 40px;
}
/* Tombol Utama (Next & Copy) */
.btn-main {
    background-color: #ff3b30; /* Merah sesuai tombol Next/Copy */
    color: white;
    border: none;
    padding: 12px 35px;
    font-size: 22px;
    font-weight: bold;
    border-radius: 12px;
    cursor: pointer;
    margin-bottom: 20px;
}

.btn-main:active {
    background-color: #d32f2f;
}

/* Group 2 Elements */
#unique-code {
    font-size: 60px;
    color: #333;
    font-weight: bold;
}

.telegram-link .tg-img {
    width: 100%;
    max-width: 300px;
}

/* Tips Section (Step 5) */
.tips-section {
    margin-top: 40px;
}

.text-left {
    text-align: left; /* Teks rata kiri sesuai permintaan */
}
.text-center {
    text-align: center; /* Teks rata kiri sesuai permintaan */
    }

.gray-line {
    border: 0;
    border-top: 1px solid #cfcfcf; /* Garis abu-abu di bawah tips */
    margin: 10px 0;
}

#tips-list {
    padding-left: 20px;
    line-height: 1.6;
    color: #000;
}

#tips-list li {
    margin-bottom: 8px;
}

/* Footer (Step 6) */
.footer-section {
    margin-top: 50px;
    color: #888;
    font-size: 14px;
}

/* Utility Class untuk menyembunyikan elemen (Step 3) */
.hidden {
    display: none;
}

/* Responsivitas HP */
@media (max-width: 600px) {
    .main-container {
        max-width: 100%;
        padding: 15px;
    }
    
    #unique-code {
        font-size: 50px;
    }
}
