* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: #2a2f3a;
    background-image: 
        radial-gradient(ellipse at 30% 20%, rgba(16,185,129,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(59,130,246,0.07) 0%, transparent 50%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 16px;
    color: #e2e8f0;
}

/* Panel kaca utama */
.glass-panel {
    width: 100%;
    max-width: 980px;
    background: linear-gradient(160deg, rgba(255,255,255,0.13) 0%, rgba(255,255,255,0.05) 100%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 22px;
    box-shadow: 
        0 30px 60px rgba(0,0,0,0.45),
        inset 0 1px 0 rgba(255,255,255,0.15);
    padding: 30px 32px 24px;
    position: relative;
    overflow: hidden;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
}

.logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(145deg, #16a34a, #15803d);
    border: 2px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 12px;
    box-shadow: 0 0 14px rgba(22,163,74,0.4);
}

.header-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #f1f5f9;
}

.header-title span {
    color: #4ade80;
}

.header-title .divider {
    color: rgba(255,255,255,0.35);
    margin: 0 7px;
    font-weight: 400;
}

/* Hero */
.hero {
    text-align: center;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 25px;
    font-weight: 700;
    color: #f8fafc;
    letter-spacing: 1px;
    margin-bottom: 6px;
    text-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.hero p {
    font-size: 14px;
    color: #94a3b8;
}

/* Kartu aplikasi */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 26px;
}

.app-card {
    background: rgba(15, 23, 42, 0.55);
    border-radius: 16px;
    padding: 22px 18px 18px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    transition: 0.25s ease;
}

.app-card:hover {
    transform: translateY(-4px);
}

/* Warna glow sesuai contoh */
.app-card.orange {
    border-color: rgba(249, 115, 22, 0.45);
    box-shadow: 0 0 22px rgba(249, 115, 22, 0.18);
}

.app-card.blue {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 26px rgba(59, 130, 246, 0.25);
    background: rgba(30, 58, 138, 0.3);
}

.app-card.green {
    border-color: rgba(16, 185, 129, 0.45);
    box-shadow: 0 0 22px rgba(16, 185, 129, 0.18);
}

.app-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 8px;
}

.app-card .desc {
    font-size: 12.5px;
    color: #94a3b8;
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 14px;
}

.status {
    font-size: 12px;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.status::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.3);
}

.btn-akses {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: 0.2s;
}

.app-card.orange .btn-akses {
    background: linear-gradient(135deg, #f97316, #ea580c);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.35);
}

.app-card.blue .btn-akses {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.app-card.green .btn-akses {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
}

.btn-akses:hover {
    filter: brightness(1.1);
}

/* Tombol bawah */
.bottom-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    color: #e2e8f0;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}

.action-btn:hover {
    background: rgba(255,255,255,0.1);
}

/* Footer */
.footer {
    text-align: center;
    font-size: 12px;
    color: #64748b;
}

.footer a {
    color: #94a3b8;
    text-decoration: none;
    margin: 0 4px;
}

/* Responsive */
@media (max-width: 800px) {
    .apps-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero h1 {
        font-size: 20px;
    }
    
    .glass-panel {
        padding: 22px 18px;
    }
}

@media (max-width: 480px) {
    .bottom-actions {
        flex-direction: column;
    }
}