body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, #590a0a 0%, #2a0404 40%, #120101 100%);
    color: white;
    min-height: 100vh;
}

.hide-scroll-bar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.hide-scroll-bar::-webkit-scrollbar {
    display: none;
}

.app-container {
    max-width: 414px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow-x: hidden;
    min-height: 100vh;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* PERBAIKAN: Center alignment untuk Navigasi Bawah */
.bottom-nav-curved {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 414px;
    background: #1a0404;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    z-index: 50;
    /* Ini memaksa bar bawah untuk selalu di tengah layar, sama seperti layarnya */
    left: 50%;
    transform: translateX(-50%);
}

/* PERBAIKAN: Center alignment untuk FAB */
/* PERBAIKAN: Posisi tombol plus (FAB) agar di tengah sempurna */
.fab-button {
    position: absolute;
    top: -25px;
    left: 50%;
    margin-left: -30px; /* Menarik tombol ke tengah sejauh setengah lebarnya */
    width: 60px;
    height: 60px;
    background: #dc2626; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
    border: 4px solid #1a0404;
    z-index: 51;
    transition: transform 0.3s ease; /* Menyiapkan animasi membesar */
}

/* Memindahkan efek membesar (hover) sepenuhnya ke CSS */
.fab-button:hover {
    transform: scale(1.1);
}

/* Animasi untuk event yang baru dimuat */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}