/* Atur ulang dasar dan font */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    /* Warna latar belakang utama (merah/pink gradasi) */
    background: linear-gradient(135deg, #ff6b6b, #fa4242);
    overflow: hidden; /* Penting agar shape tidak mengganggu scroll */
}

/* Container utama untuk tata letak */
.container {
    width: 100%;
    max-width: 1400px; /* Lebar maksimum area konten */
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Wrapper untuk menjaga konten utama tetap di tengah */
.content-wrapper {
    text-align: center;
    position: relative;
    z-index: 5; /* Pastikan konten di atas shapes latar belakang */
}

/* --- Area Ilustrasi Monitor --- */
.illustration-area {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 50px;
    position: relative;
    width: 100%;
    height: 350px; /* Tinggi untuk area ilustrasi */
}

.monitor-screen {
    width: 500px;
    height: 300px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 15px solid #e0e0e0; /* Border abu-abu untuk bingkai */
    border-bottom: 30px solid #e0e0e0;
}

.logo-box {
    text-align: center;
    padding: 20px;
}

/* Di file styles.css, tambahkan style ini */

.logo-icon-img {
    width: 200px; /* Atur lebar gambar logo */
    height: auto; /* Jaga rasio aspek */
    margin-bottom: 10px;
}
.logo-text {
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

/* --- Placeholder Ilustrasi Samping (Sangat Disederhanakan) --- */
.side-illustration {
    position: absolute;
    /* Ini adalah representasi sederhana untuk objek 3D kompleks */
}

.books-stack {
    width: 150px;
    height: 150px;
    left: 50%;
    top: 50%;
    transform: translate(calc(-100% - 200px), -30%); /* Posisikan di kiri monitor */
    /* Ganti dengan gambar ilustrasi 3D yang sebenarnya */
    background-color: #f7b44d; /* Warna tumpukan buku/dekorasi */
    border-radius: 5px;
    /* Kami hanya menggunakan warna solid sebagai placeholder */
}

.gadgets {
    width: 150px;
    height: 200px;
    right: 50%;
    top: 50%;
    transform: translate(calc(100% + 150px), -30%); /* Posisikan di kanan monitor */
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    color: #4a4a4a;
}
.gadget-item {
    padding: 5px 10px;
    border-radius: 5px;
    background-color: #e0f7fa;
    width: 80%;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.gadget-item.cbt {
    background-color: #90caf9;
    color: white;
}


/* --- Call to Action (CTA) --- */
.tagline {
    font-size: 18px;
    color: #0b0b8c; /* Warna biru gelap untuk teks */
    font-weight: 600;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.cta-button {
    padding: 15px 50px;
    font-size: 20px;
    font-weight: 600;
    color: #4a4a4a;
    background-color: #fce7e7; /* Warna tombol pink muda/beige */
    border: none;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: #ffe6e6;
    transform: translateY(-2px);
}

/* --- Latar Belakang Shapes (Bulatan/Blob) --- */
.background-shape {
    position: absolute;
    border-radius: 50%; /* Membuat bentuk lingkaran */
    opacity: 0.2; /* Transparansi untuk efek latar belakang */
    background-color: white;
    z-index: 0;
}

.shape-large-top {
    width: 250px;
    height: 250px;
    top: -50px;
    left: 10%;
    opacity: 0.3;
}

.shape-small-top {
    width: 100px;
    height: 100px;
    top: 50px;
    right: 25%;
}

.shape-large-bottom {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -100px;
    opacity: 0.15;
    
    /* Di file styles.css */
.cta-button {
    padding: 15px 50px;
    font-size: 20px;
    font-weight: 600;
    color: #4a4a4a;
    background-color: #fce7e7;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.3s;
    
    /* PROPERTI BARU UNTUK TAG <a> */
    text-decoration: none; /* Menghilangkan garis bawah default link */
    display: inline-block; /* Memastikan padding dan margin bekerja dengan baik */

/* Di file styles.css, tambahkan bagian ini di bawah semua style yang sudah ada */

@media (max-width: 768px) {
    /* Gaya untuk perangkat tablet dan di bawahnya */
    
    .illustration-area {
        /* Mengurangi tinggi area ilustrasi agar tidak terlalu makan tempat */
        height: 250px; 
        margin-bottom: 30px;
    }
    
    .monitor-screen {
        /* Mengurangi ukuran monitor */
        width: 300px;
        height: 180px;
        border: 10px solid #e0e0e0;
        border-bottom: 20px solid #e0e0e0;
    }
    
    .logo-icon-img {
        /* Mengurangi ukuran logo */
        width: 50px;
    }
    
    .logo-text {
        font-size: 14px;
    }
    
    /* Mengatur ulang posisi ilustrasi samping agar tidak tumpang tindih */
    .books-stack, .gadgets {
        display: none; /* Lebih baik sembunyikan ilustrasi samping di HP agar fokus ke CTA */
    }
    
    .tagline {
        font-size: 20px;
        padding: 0 20px;
    }
    
    .cta-button {
        padding: 12px 40px;
        font-size: 18px;
    }
    
}


@media (max-width: 480px) {
    /* Gaya spesifik untuk perangkat ponsel (portrait) */
    
    body {
        /* Hilangkan padding yang mungkin ada pada container */
        padding: 0;
    }

    .monitor-screen {
        width: 250px;
        height: 150px;
    }
    
    .tagline {
        font-size: 18px;
    }
}