body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: #3b0a1a;
    color: #f8fafc;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    padding: 20px;
    box-sizing: border-box;
}

/* Aura Background */
.aura-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(135deg, #3b0a1a 0%, #1a0307 100%);
}

#parallax-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.2s ease-out;
}

.blob {
    position: absolute;
    background: radial-gradient(circle, rgba(210, 15, 57, 0.2) 0%, transparent 80%);
    filter: blur(100px);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: floating 25s infinite alternate ease-in-out;
    opacity: 0.6;
    pointer-events: none;
}

.blob:nth-child(1) {
    top: 10%;
    left: 10%;
    width: 450px;
    height: 450px;
    animation-duration: 22s;
}

.blob:nth-child(2) {
    top: 50%;
    right: 10%;
    width: 550px;
    height: 550px;
    animation-duration: 35s;
    animation-delay: -5s;
    opacity: 0.5;
}

.blob:nth-child(3) {
    bottom: 10%;
    left: 20%;
    width: 400px;
    height: 400px;
    animation-duration: 28s;
    animation-delay: -10s;
}

.blob:nth-child(4) {
    top: 30%;
    left: 40%;
    width: 350px;
    height: 350px;
    animation-duration: 40s;
    opacity: 0.4;
}

.blob:nth-child(5) {
    top: 5%;
    right: 20%;
    width: 320px;
    height: 320px;
    animation-duration: 20s;
    animation-delay: -15s;
}

.blob:nth-child(6) {
    bottom: 30%;
    right: 30%;
    width: 380px;
    height: 380px;
    animation-duration: 30s;
    opacity: 0.5;
}

@keyframes floating {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1.0);
    }

    50% {
        transform: translate(10vw, 15vh) rotate(180deg) scale(1.2);
    }

    100% {
        transform: translate(0, 0) rotate(360deg) scale(1.0);
    }
}

#sparkle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

@keyframes move {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(15vw, 15vh) scale(1.1);
    }

    66% {
        transform: translate(-10vw, 20vh) scale(0.9);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

main {
    width: 90%;
    max-width: 900px;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#dashboard-header {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.profile-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.profile-logo {
    width: 180px;
    height: auto;
}

h1 {
    font-size: 1.6rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: white;
}

.tagline {
    font-size: 0.9rem;
    margin-top: 4px;
    color: #94a3b8;
    max-width: 280px;
}

#app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 740px;
}

.app-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 24px;
    text-decoration: none;
    color: #f1f5f9;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.app-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.app-item-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.app-item:hover .app-item-icon {
    transform: scale(1.1);
}

.app-item-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.app-item-name {
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    color: white;
}

.app-item-desc {
    font-size: 0.75rem;
    color: #94a3b8;
    margin: 6px 0 0;
    text-align: center;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}



footer {
    margin-top: 60px;
    padding: 20px 0;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

footer p {
    font-size: 0.85rem;
    color: #64748b;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Responsivitas Mobile */
@media (max-width: 600px) {
    main {
        padding: 50px 15px;
    }

    #dashboard-header {
        margin-bottom: 40px;
    }

    #app-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .app-item:first-child {
        grid-column: span 2;
        padding: 20px 20px;
    }

    .app-item:first-child .app-item-icon {
        width: 48px;
        height: 48px;
    }

    .app-item:first-child .app-item-name {
        font-size: 1.1rem;
    }

    .app-item {
        padding: 20px 12px;
        border-radius: 20px;
    }

    .app-item-icon {
        width: 34px;
        height: 34px;
        margin-bottom: 10px;
    }

    .app-item-name {
        font-size: 0.85rem;
    }
}