    @import url('https://fonts.googleapis.com/css2?family=Yeseva+One&display=swap');
        
    :root {
        --primary-color: #8b5cf6;
        --secondary-color: #06b6d4;
        --accent-color: #f59e0b;
        --success-color: #10b981;
        --warning-color: #ef4444;
        --dark-color: #1f2937;
    }
    
    body { 
        font-family: "Yeseva One", serif !important;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }
    
    .animate-fade-in { 
        animation: fadeIn 0.5s ease-in-out; 
    }
    .animate-slide-down { 
        animation: slideDown 0.3s ease-out; 
    }
    .animate-bounce-in { 
        animation: bounceIn 0.4s ease-out; 
    }
    .animate-pulse-gentle { 
        animation: pulseGentle 2s infinite; 
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    @keyframes slideDown {
        from { transform: translateY(-100%); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }
    
    @keyframes bounceIn {
        0% { transform: scale(0.3); opacity: 0; }
        50% { transform: scale(1.05); }
        70% { transform: scale(0.9); }
        100% { transform: scale(1); opacity: 1; }
    }
    
    @keyframes pulseGentle {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.8; }
    }
    
    .header-bar {
        background: #0D5EA6;
        height: 50px;
    }
    
    .search-container {
        position: relative;
    }
    
    .search-box {
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border-radius: 50px;
        display: flex;
        align-items: center;
        overflow: hidden;
        width: 40px;
        transition: all 0.3s ease-in-out;
    }
    
    .search-box.expanded {
        width: 400px;
    }
    
    .search-btn {
        background: none;
        border: none;
        color: white;
        padding: 8px;
        border-radius: 50px;
        transition: all 0.3s ease;
    }
    
    .search-btn:hover {
        background: rgba(255, 255, 255, 0.2);
    }
    
    .search-input {
        flex: 1;
        background: transparent;
        border: none;
        color: white;
        padding: 8px 12px;
        outline: none;
        opacity: 0;
        width: 0;
        transition: all 0.3s ease;
    }
    
    .search-input.visible {
        opacity: 1;
        width: auto;
    }
    
    .search-input::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .logo-container {
        width: 64px;
        height: 64px;
        background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease;
        position: relative;
    }
    
    .logo-container:hover {
        transform: scale(1.1);
    }
    
    .logo-text {
        position: absolute;
        bottom: -20px;
        left: 4px;
        font-size: 10px;
        color: white;
    }
    
    .main-title {
        background: #000000;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-family: "Yeseva One", serif !important;
        font-size: 35px;
    }
    
    .nav-link-custom {
        font-weight: 600;
        transition: all 0.3s ease;
        text-decoration: none;
    }
    
    .nav-link-custom:hover {
        transform: scale(1.05);
    }
    
    .nav-link-accent {
        color: var(--accent-color);
    }
    
    .nav-link-accent:hover {
        color: var(--warning-color);
    }
    
    .nav-link-dark {
        color: var(--dark-color);
    }
    
    .nav-link-dark:hover {
        color: var(--warning-color);
    }
    
    /* Hide desktop menu on mobile */
    @media (max-width: 992px) {
        .desktop-menu-item {
            display: none !important;
        }
    }

    @media (max-width: 768px) {
        .d-flex.gap-4 {
            gap: 0.5rem !important;  /* smaller gap */
            flex-wrap: nowrap !important; /* keep on one line */
            justify-content: center !important;
            margin-top: 10px;
        }

        .d-flex.gap-4 a {
            line-height: 1.4;
            margin-top: 5px;
            font-size: 12px !important;  /* smaller font */
            white-space: nowrap;         /* prevent wrapping of each link */
        }
    }


    /* Mobile menu styles */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: -260px;
        width: 260px;
        height: 100%;
        background-color: #222;
        color: white;
        transition: left 0.3s ease;
        z-index: 1050;
        overflow-y: auto;
        padding: 1rem 0;
    }

    .mobile-menu.open {
        left: 0;
    }

    .mobile-menu-header {
        display: flex;
        justify-content: flex-end;
        padding: 0.5rem 1rem;
        background-color: #8b5cf6;
    }

    .mobile-menu-content {
        display: flex;
        flex-direction: column;
    }

    .mobile-menu-content .menu-item {
        padding: 0.75rem 1rem;
        color: white;
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-content .menu-item:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    /* Overlay */
    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 1040;
    }

    .overlay.show {
        display: block;
    }

    
    .sidebar-header {
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        color: white;
        padding: 1rem;
        font-weight: bold;
        font-size: 1.1rem;
    }
    
    .menu-item {
        display: block;
        padding: 12px 16px;
        color: var(--secondary-color);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        border-radius: 8px;
        margin: 4px 0;
    }
    
    .menu-item:hover {
        background: rgba(6, 182, 212, 0.1);
        color: var(--primary-color);
        transform: scale(1.05);
    }
    
    .menu-item.active {
        color: var(--success-color);
        background: rgba(16, 185, 129, 0.1);
        border-left: 4px solid var(--success-color);
    }
    
    .menu-item.active:hover {
        background: rgba(16, 185, 129, 0.2);
    }
    
    .content-card {
        background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
        border-radius: 12px;
        border: 1px solid #e9ecef;
        min-height: 400px;
    }
    
    .welcome-icon {
        width: 96px;
        height: 96px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 24px;
    }
    
    .btn-gradient {
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        border: none;
        color: white;
        padding: 12px 24px;
        border-radius: 8px;
        transition: transform 0.3s ease;
    }
    
    .btn-gradient:hover {
        transform: scale(1.05);
        color: white;
    }
    
    .btn-outline-gradient {
        background: white;
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
        padding: 12px 24px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .btn-outline-gradient:hover {
        background: var(--primary-color);
        color: white;
    }
    
    .taskbar {
        background: linear-gradient(90deg, var(--dark-color), #374151);
        height: 48px;
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 1030;
    }
    
    .taskbar-btn {
        background: none;
        border: none;
        color: white;
        padding: 8px;
        border-radius: 4px;
        transition: all 0.3s ease;
    }
    
    .taskbar-btn:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: scale(1.1);
    }
    
    .taskbar-search {
        background: #6b7280;
        border-radius: 20px;
        padding: 4px 12px;
        color: #d1d5db;
        transition: background 0.3s ease;
    }
    
    .taskbar-search:hover {
        background: #6b7280;
    }
    
    .taskbar-icon {
        width: 32px;
        height: 32px;
        border-radius: 4px;
        transition: transform 0.3s ease;
        cursor: pointer;
    }
    
    .taskbar-icon:hover {
        transform: scale(1.1);
    }
    
    .notification-badge {
        position: absolute;
        top: -4px;
        right: -4px;
        background: var(--warning-color);
        color: white;
        font-size: 10px;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        animation: pulse 2s infinite;
    }
    
    .overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        z-index: 1035;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    
    .overlay.show {
        opacity: 1;
        pointer-events: auto;
    }
    
    @media (max-width: 768px) {
        .search-box.expanded {
            width: 300px;
        }
        
        .main-title {
            font-size: 1.8rem;
        }
        
    }

    .loader {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.7);
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
        font-weight: bold;
    }

    .content {
        display: none;
    }
