* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #1a1a2e;
    display: flex;
    justify-content: center;
    align-items: top;
    height: 580px;
    padding:20px 0 0 0;
    color: #fff;
}

/* Container Utama mirip HP */
.phone-container {
    width: 360px;
    height: 580px;
    background: linear-gradient(180deg, #2e2e4a 0%, #1a1a2e 100%);
    border-radius: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Supaya lekukan border-radius memotong konten */
  
}

/* Bagian Atas - Tetap (Fixed) */
.top-section {
    padding: 30px 25px 10px 25px;
    flex-shrink: 0; /* Mencegah bagian ini mengecil */
}

.status-bar {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 25px;
    opacity: 0.8;
}

.header-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.circle-icon-large {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: inset 0 0 10px rgba(255,255,255,0.1);
}

.header-text h3 { font-size: 14px; opacity: 0.6; }
.header-text p { font-size: 18px; font-weight: bold; }

.weather-icon {
    margin-left: auto;
    font-size: 30px;
    text-shadow: 0 0 15px rgba(255,255,255,0.5);
}

.grid-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
    text-align: center;
}

.icon-box {
    aspect-ratio: 1;
    background: rgba(255,255,255,0.03);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    transition: 0.3s;
}

.icon-box.active {
    background: #00d2ff;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.6);
}

.icon-label {
    font-size: 10px;
    opacity: 0.7;
    margin-top: -5px;
}

.control-row {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    font-size: 20px;
    opacity: 0.5;
}

/* Bagian Bawah - Bisa di-Scroll */
.scrollable-content {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(200,220,255,0.9) 100%);
    margin-top: 10px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    flex-grow: 1; /* Mengambil sisa ruang yang ada */
    overflow-y: auto; /* Aktifkan scroll vertikal */
    padding: 30px 25px;
    color: #334;
}

/* Menghilangkan scrollbar tapi tetap bisa scroll (opsional) */
.scrollable-content::-webkit-scrollbar {
    width: 0px;
}

.list-item {
    color: black;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.item-icon {
    width: 45px;
    height: 45px;
    background: #334;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.item-info h4 { font-size: 16px; margin-bottom: 2px; }
.item-info p { font-size: 12px; opacity: 0.6; }

.item-toggle {
    margin-left: auto;
    background: #334;
    color: white;
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 12px;
}