            /* plus-jakarta-sans-300 - latin */
            @font-face {
              font-display: swap; 
              font-family: 'Plus Jakarta Sans';
              font-style: normal;
              font-weight: 300;
              src: url('../fonts/plus-jakarta-sans-v12-latin-300.woff2') format('woff2'); 
            }
            /* plus-jakarta-sans-regular - latin */
            @font-face {
              font-display: swap; 
              font-family: 'Plus Jakarta Sans';
              font-style: normal;
              font-weight: 400;
              src: url('../fonts/plus-jakarta-sans-v12-latin-regular.woff2') format('woff2'); 
            }
            /* plus-jakarta-sans-600 - latin */
            @font-face {
              font-display: swap; 
              font-family: 'Plus Jakarta Sans';
              font-style: normal;
              font-weight: 600;
              src: url('../fonts/plus-jakarta-sans-v12-latin-600.woff2') format('woff2'); 
            }
            /* plus-jakarta-sans-700 - latin */
            @font-face {
              font-display: swap; 
              font-family: 'Plus Jakarta Sans';
              font-style: normal;
              font-weight: 700;
              src: url('../fonts/plus-jakarta-sans-v12-latin-700.woff2') format('woff2'); 
            }
            /* plus-jakarta-sans-800 - latin */
            @font-face {
              font-display: swap; 
              font-family: 'Plus Jakarta Sans';
              font-style: normal;
              font-weight: 800;
              src: url('../fonts/plus-jakarta-sans-v12-latin-800.woff2') format('woff2'); 
        }
                :root {
            --primary: #6366f1;
            --secondary: #ec4899;
            --dark: #0f172a;
            --light: #f8fafc;
            --sidebar-width: 280px;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: var(--light);
            color: var(--dark);
            overflow-x: hidden;
        }

        /* --- SIDEBAR --- */
        .sidebar {
            width: var(--sidebar-width);
            height: 100vh;
            background: var(--dark);
            position: fixed;
            top: 0; left: 0;
            padding: 30px;
            color: white;
            z-index: 1000;
            transition: 0.3s;
        }
        
        /* 1. The Dark Overlay */
        .sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 23, 42, 0.6); /* Dark blue tint */
            backdrop-filter: blur(4px); /* Professional blur effect */
            z-index: 999; /* Below sidebar (1000) but above content */
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        /* Show overlay when active */
        .sidebar-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* 2. The Close (X) Button */
        .btn-close-sidebar {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: white;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s;
            z-index: 1002;
        }
        
        .btn-close-sidebar:hover {
            background: #ef4444; /* Red on hover */
            border-color: #ef4444;
            transform: rotate(90deg);
        }
        .brand-logo { 
            font-size: 1.5rem; font-weight: 800; color: white; margin-bottom: 50px; 
            display: flex; align-items: center;
        }
        .brand-logo span { color: var(--secondary); }

        .nav-link {
            display: flex; align-items: center;
            color: #94a3b8;
            padding: 12px 15px;
            border-radius: 12px;
            margin-bottom: 8px;
            text-decoration: none;
            font-weight: 500;
            transition: 0.3s;
        }
        .nav-link:hover { background: rgba(255,255,255,0.05); color: white; transform: translateX(5px); }
        .nav-link.active {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
        }
        .nav-link i { width: 25px; font-size: 1.1rem; }

        /* --- MAIN CONTENT --- */
        .main-content {
            margin-left: var(--sidebar-width);
            padding: 40px;
            min-height: 100vh;
            transition: 0.3s;
        }

        /* --- STATS & CARDS --- */
        .stat-card {
            background: white; border-radius: 16px; padding: 20px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.02);
            display: flex; align-items: center; justify-content: space-between;
        }
        .stat-icon {
            width: 45px; height: 45px; border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.2rem;
        }

        /* PLAN CARDS */
        .plan-card {
            background: white; border-radius: 20px; border: 1px solid #e2e8f0; padding: 30px;
            transition: 0.3s; position: relative; overflow: hidden; height: 100%;
            display: flex; flex-direction: column;
        }
        .plan-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); border-color: var(--primary); }
        
        .plan-icon {
            width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
            font-size: 1.8rem; margin-bottom: 20px;
        }
        .icon-single { background: #e0e7ff; color: var(--primary); }
        .icon-freelance { background: #f0fdf4; color: #16a34a; }
        .icon-studio { background: #fce7f3; color: var(--secondary); }

        .plan-price { font-size: 2rem; font-weight: 800; color: var(--dark); margin: 15px 0; }
        .plan-price small { font-size: 1rem; color: #94a3b8; font-weight: 500; }
        
        .plan-features li { margin-bottom: 10px; color: #64748b; font-size: 0.95rem; }
        .plan-features li i { color: #10b981; margin-right: 8px; }

        /* Album Card Styles */
        .album-card {
            background: white;
            border-radius: 20px;
            border: 1px solid rgba(0,0,0,0.03);
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            overflow: hidden;
            transition: 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .album-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.06);
        }

        .card-img-top {
            height: 180px;
            background-size: cover !important;
            background-position: center !important;
            position: relative;
            background-color: #f1f5f9;
        }
        .card-img-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
            opacity: 0; transition: 0.3s;
        }
        .album-card:hover .card-img-overlay { opacity: 1; }

        .card-body { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }

        .album-title { font-weight: 700; font-size: 1.1rem; color: var(--dark); margin-bottom: 5px; }
        .album-date { font-size: 0.8rem; color: #94a3b8; margin-bottom: 15px; }

        .info-badges { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
        .badge-custom {
            font-size: 0.75rem; padding: 8px 12px; border-radius: 8px; font-weight: 600;
            display: flex; align-items: center; 
            white-space: nowrap; 
        }
        .badge-id { background: #f1f5f9; color: #64748b; border: 1px solid #e2e8f0; }
        .badge-pin { background: #fff1f2; color: #fb7185; border: 1px solid #ffe4e6; }

        /* Action Buttons */
        .action-grid {
            display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 8px; margin-top: auto;
        }
        .btn-action {
            border: none; border-radius: 10px; padding: 10px;
            display: flex; align-items: center; justify-content: center;
            transition: 0.2s; cursor: pointer; color: white;
        }
        .btn-action:hover { transform: scale(1.05); }

        .btn-view { background: #e0e7ff; color: var(--primary); }
        .btn-view:hover { background: var(--primary); color: white; }
        
        .btn-edit { background: #fef3c7; color: #d97706; }
        .btn-edit:hover { background: #fbbf24; color: white; }

        .btn-qr { background: #dcfce7; color: #16a34a; }
        .btn-qr:hover { background: #22c55e; color: white; }

        .btn-del { background: #fee2e2; color: #ef4444; }
        .btn-del:hover { background: #ef4444; color: white; }

        /* Responsive */
        @media (max-width: 992px) {
            .sidebar { transform: translateX(-100%); }
            .sidebar.active { transform: translateX(0); box-shadow: 10px 0 30px rgba(0,0,0,0.1); }
            .main-content { margin-left: 0; padding: 20px; }
        }
