:root {
    --bg-purple: #7E22CE;
    --bg-blue: #3B82F6;
    --bg-green: #059669;
    --bg-yellow: #F59E0B;
    --bg-orange: #EA580C;
    --bg-red: #DC2626;
    --bg-pink: #DB2777;
    --bg-indigo: #4F46E5;
    --bg-teal: #0D9488;
    --bg-cyan: #0891B2;
}

/* =============================================
   FLOATING BLOBS BACKGROUND
   ============================================= */

.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background-color: #0F172A;
}

.blob {
    position: absolute;
    border-radius: 50%;
}

/* Blob 1 - Purple/Blue (Top Left) - LEBIH BESAR & TERANG */
.blob-1 {
    width: 700px;
    height: 700px;
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    filter: blur(60px);
    opacity: 0.6;
    top: -200px;
    left: -200px;
    animation: blob1 7s ease-in-out infinite;
}

/* Blob 2 - Cyan/Green (Bottom Right) */
.blob-2 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #06b6d4 0%, #10b981 100%);
    filter: blur(50px);
    opacity: 0.55;
    bottom: -150px;
    right: -150px;
    animation: blob2 8s ease-in-out infinite;
}

/* Blob 3 - Orange/Yellow (Center) */
.blob-3 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    filter: blur(55px);
    opacity: 0.5;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: blob3 6s ease-in-out infinite;
}

/* Blob 4 - Pink/Magenta (Top Right) */
.blob-4 {
    width: 550px;
    height: 550px;
    background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
    filter: blur(55px);
    opacity: 0.5;
    top: -50px;
    right: 10%;
    animation: blob4 9s ease-in-out infinite;
}

/* Blob 5 - Teal/Cyan (Bottom Left) */
.blob-5 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #14b8a6 0%, #22d3d1 100%);
    filter: blur(50px);
    opacity: 0.45;
    bottom: 5%;
    left: 5%;
    animation: blob5 10s ease-in-out infinite;
}

/* Blob 6 - NEW! Red/Orange (Middle Right) */
.blob-6 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
    filter: blur(50px);
    opacity: 0.45;
    top: 40%;
    right: -50px;
    animation: blob6 8s ease-in-out infinite;
}

/* ANIMATIONS - Lebih dramatis */
@keyframes blob1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(120px, 60px) scale(1.15); }
    50% { transform: translate(60px, 120px) scale(0.9); }
    75% { transform: translate(150px, 30px) scale(1.1); }
}

@keyframes blob2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-100px, -60px) scale(1.2); }
    50% { transform: translate(-150px, 40px) scale(0.85); }
    75% { transform: translate(-60px, -120px) scale(1.15); }
}

@keyframes blob3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
    33% { transform: translate(-35%, -65%) scale(1.3) rotate(120deg); }
    66% { transform: translate(-65%, -35%) scale(0.7) rotate(240deg); }
}

@keyframes blob4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-80px, 100px) scale(1.2); }
    66% { transform: translate(50px, 50px) scale(0.85); }
}

@keyframes blob5 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(100px, -60px) scale(1.2); }
}

@keyframes blob6 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-60px, -80px) scale(1.15); }
    75% { transform: translate(-40px, 60px) scale(0.9); }
}

body {
    background-color: transparent; /* Changed from #0F172A */
    color: white;
    font-family: 'Inter', sans-serif;
    padding: 25px 10px 0 10px;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}
.bento-container {
    width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Common Card Styles */
.bento-card {
    background: rgba(26, 26, 26, 0.7); /* Semi-transparent */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 20px;
    transition: all 0.3s ease;
}

.bento-card:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Top Section */
.top-section {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: nowrap;
}

.header-card {
	flex: 1.2;
    background: linear-gradient(135deg, rgba(244, 246, 248, 0.95) 0%, rgba(232, 236, 240, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Profile Section - Vertical Layout */
.profile-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.profile-photo {
    width: 70px;
    height: 70px;
    border-radius: 20%;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
	margin-bottom:5px;
}

.profile-section .greeting-text {
    font-size: 1rem;
    color: #4a4a4a;
    font-weight: 400;
}

.profile-name {
    font-weight: 800;
    font-size: 22px;
    color: #1a1a1a;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.greeting {
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 400;
}

#greetingName {
    font-weight: 800;
    font-size: 20px;
}

.greeting div {
    font-weight: 400;
    margin-top: 2px;
}

.datetime-container {
    display: flex;
    align-items: center;
    background: #1a1a1a;
    padding: 9px;
    border-radius: 12px;
    gap: 6px;
}

.aexo-logo {
    height: 35px;
    width: auto;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-actions i {
    font-size: 1.8rem;
    color: #2D3748;
}

.header-greeting {
    color: #4A5568;
    font-size: 1.1rem;
}

.digital-clock {
    font-family: 'DS-Digital', monospace;
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    background: #ffffff;
    padding: 4px 12px;
    border-radius: 8px;
    letter-spacing: 2px;
}

.current-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #1a1a1a;
    color: #ffffff;
    padding: 4px 12px;
    font-size: 0.9rem;
    line-height: 1.2;
}

.current-date .day-name {
    font-size: 0.85rem;
    opacity: 0.9;
}

.current-date .date {
    font-size: 1.4rem;
    font-weight: 600;
}

.current-date .month {
    font-size: 0.85rem;
    opacity: 0.9;
}

.header-card a {
    color: #1a1a1a;
}

.header-card p {
    color: #4a4a4a;
}

.header-card .fas {
    cursor: pointer;
    transition: all 0.3s ease;
}

.header-card .fas:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.profile-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Board Container - Now 6 cards */
.board-container {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 12px;
    min-width: 400px;
}

.board-card {
    height: 79px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    position: relative;
    cursor: pointer;
    padding: 10px;
    border-radius: 16px;
}

.board-card:hover {
    transform: scale(1.03);
    opacity: 0.9;
}

.board-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    opacity: 0.7;
    border-radius: inherit;
}

.board-card h2 {
    position: relative;
    z-index: 2;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    font-size: 0.85rem;
    line-height: 1.3;
    margin: 0;
    font-weight: 600;
}

.board-card-empty {
    opacity: 0.5;
    cursor: default;
}

.board-card-empty:hover {
    transform: none;
    opacity: 0.5;
}

.board-card-empty h2 {
    font-size: 1.5rem;
    opacity: 0.5;
}

/* Middle Section - Updated for 3 columns */
.middle-section {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex: 1;
    min-height: 300px;
    max-height: 380px;
}

/* Recent Files - with scroll */
.files-section {
    flex: 0.8;
    background-color: var(--bg-yellow);
    color: #1a1a1a;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.files-section::-webkit-scrollbar {
    width: 6px;
}

.files-section::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

.files-section::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
}

.files-section::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5);
}

.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.section-title i {
    font-size: 1.2rem;
}

.file-item {
    display: flex;
    align-items: center;
    padding: 12px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.file-item:hover {
    background: rgba(0, 0, 0, 0.2);
}

.files-section .file-item {
    text-decoration: none;
    color: #1a1a1a;
}

.files-section .file-item:hover {
    color: #1a1a1a;
}

.file-icon {
    margin-right: 15px;
    color: #1a1a1a;
    width: 40px;
    text-align: center;
}

/* Calendar Section */
.calendar-section {
    flex: 1;
    background: linear-gradient(135deg, var(--bg-teal) 0%, var(--bg-cyan) 100%);
    padding: 20px;
    overflow-y: auto;
}

.calendar-section::-webkit-scrollbar {
    width: 6px;
}

.calendar-section::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.calendar-section::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.calendar-section::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.calendar-events {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.calendar-event {
    display: flex;
    align-items: flex-start;
    padding: 14px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    transition: all 0.3s ease;
    gap: 12px;
}

.calendar-event:hover {
    background: rgba(255, 255, 255, 0.25);
}

.calendar-event.event-now {
    background: rgba(255, 255, 255, 0.3);
    border-left: 4px solid #ffffff;
}

.calendar-event.empty-state,
.calendar-event.error-state {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding: 30px;
}

.event-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.event-time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.event-start {
    font-weight: 700;
    font-size: 1rem;
}

.event-end {
    font-size: 0.75rem;
    opacity: 0.8;
}

.event-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.event-title {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.3;
}

.event-location {
    font-size: 0.8rem;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-meet-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: white;
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 10px;
    border-radius: 6px;
    text-decoration: none;
    width: fit-content;
    margin-top: 4px;
    transition: all 0.2s ease;
}

.event-meet-link:hover {
    background: rgba(0, 0, 0, 0.5);
    color: white;
}

/* Quick Access Section - Single Column */
.quick-access-section {
    width: 80px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.quick-access-section:hover {
    transform: none;
}

.quick-app-item {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.quick-app-item:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.1);
    color: white;
}

.quick-app-item img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    border-radius: 6px;
}

.quick-app-item i {
    font-size: 1.4rem;
}

.quick-app-empty {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-align: center;
}

/* Bottom Section - Empty */
.bottom-section {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-pink);
    padding: 20px 30px;
    border-radius: 24px;
    margin-bottom: 15px;
    min-height: 60px;
    opacity: 0.5;
}

.bottom-section:empty::after {
    content: 'Quick Access Area';
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* App items (kept for future use) */
.app-item {
    width: 101px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    cursor: pointer;
}

.app-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.app-item-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.app-item-name {
    font-size: 0.9rem;
    text-align: center;
}

/* Category styles (kept for reference) */
.category-section {
    width: 50%;
    background-color: var(--bg-indigo);
    padding: 20px;
    overflow-y: auto;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.category-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.category-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.category-apps {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.app-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.app-icon:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
    color: white;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .top-section {
        flex-direction: column;
    }
    
    .header-card {
        min-width: 100%;
    }
    
    .board-container {
        min-width: 100%;
    }
    
    .middle-section {
        flex-direction: column;
        max-height: none;
    }
    
    .files-section,
    .calendar-section {
        width: 100%;
        max-height: 300px;
    }
    
    .quick-access-section {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        padding: 15px;
    }
    
    .quick-app-item {
        width: 50px;
        height: 50px;
    }
}