/* ========================================================
   STYLE HEADER ESTETIS (SERAGAM)
   ======================================================== */
.page-header-premium {
    padding-top: 6rem;
    padding-bottom: 3rem;
    position: relative;
}

.main-title-aesthetic {
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(2rem, 6vw, 4.5rem) !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    line-height: 1.1 !important;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7) !important;
    margin-bottom: 0.5rem !important;
}

.sub-title-aesthetic {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    color: #ffffff !important; 
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

/* Garis Dekoratif (Divider) */
.premium-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
.premium-divider .line {
    height: 1px;
    width: 80px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
}
.premium-divider .dot {
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 50%;
    margin: 0 10px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* ========================================================
   STYLE CARD & GLASSMORPHISM
   ======================================================== */
.glass-card { 
    background: rgba(255, 255, 255, 0.9); 
    backdrop-filter: blur(10px); 
    border: 1px solid rgba(111, 66, 193, 0.1); 
    border-radius: 20px; 
    box-shadow: 0 8px 32px rgba(111, 66, 193, 0.05); 
}

.saldo-card-glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

.saldo-card-glass:hover { transform: translateY(-5px); }

/* ========================================================
   STYLE NAVIGASI TAB (PERBAIKAN TULISAN PUTIH)
   ======================================================== */
.tab-publik { 
    color: #ffffff !important; /* Tulisan putih */
    background: rgba(255, 255, 255, 0.1) !important; 
    font-weight: 600; 
    transition: .3s; 
}
.tab-publik:hover { background: rgba(255, 255, 255, 0.2) !important; }
.tab-publik.active { 
    background: #6f42c1 !important; 
    color: #ffffff !important; 
    box-shadow: 0 4px 12px rgba(111, 66, 193, 0.4); 
}

/* ========================================================
   STYLE TOMBOL TUTUP AKSES
   ======================================================== */
.btn-outline-white {
    border: 2px solid #ffffff !important;
    color: #ffffff !important;
    background: transparent !important;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
}
.btn-outline-white:hover {
    background: #ffffff !important;
    color: #6f42c1 !important;
}

/* ========================================================
   STYLE TABEL GLASSMORPHISM
   ======================================================== */
.table-glass-container {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.table-custom thead th {
    background-color: rgba(111, 66, 193, 0.08);
    color: #0f172a;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.table-custom tbody tr:hover td { background-color: rgba(255, 255, 255, 0.9) !important; }

/* ========================================================
   MEDIA QUERIES MOBILE
   ======================================================== */
@media (max-width: 767.98px) {
    .page-header-premium { padding-top: 4rem; padding-bottom: 2rem; }
    .table-glass-container { padding: 1rem !important; }
    .main-title-aesthetic { font-size: 1.8rem !important; }
}