    body {
        box-sizing: border-box;
        font-family: 'Plus Jakarta Sans', sans-serif;
        background-color: #F4F7FE;
        color: #2B3674;
    }

    * {
        box-sizing: border-box;
    }

    /* Modern Scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }

    ::-webkit-scrollbar-track {
        background: transparent;
    }

    ::-webkit-scrollbar-thumb {
        background: #E0E5F2;
        border-radius: 20px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #a3aed0;
    }

    .fade-in {
        animation: fadeIn 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px) scale(0.98);
        }

        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    /* Glassmorphism / Modern Card */
    .modern-card {
        background: white;
        border-radius: 20px;
        box-shadow: 0px 18px 40px rgba(112, 144, 176, 0.12);
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.5);
    }

    .modern-card:hover {
        box-shadow: 0px 22px 45px rgba(112, 144, 176, 0.18);
        transform: translateY(-2px);
    }

    .stat-card {
        transition: all 0.3s ease;
    }

    .stat-card:hover {
        transform: translateY(-5px);
    }

    .menu-item {
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
    }

    .menu-item.active::after {
        content: '';
        position: absolute;
        right: -16px;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 32px;
        background: #4318FF;
        border-radius: 10px;
    }

    .btn-loading {
        opacity: 0.6;
        pointer-events: none;
    }

    .toast {
        position: fixed;
        bottom: 24px;
        right: 24px;
        padding: 16px 24px;
        border-radius: 16px;
        font-weight: 500;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        animation: slideIn 0.3s cubic-bezier(0.23, 1, 0.32, 1);
        display: flex;
        align-items: center;
        gap: 12px;
    }

    @keyframes slideIn {
        from {
            transform: translateX(400px);
            opacity: 0;
        }

        to {
            transform: translateX(0);
            opacity: 1;
        }
    }

    .modal-backdrop {
        background: rgba(43, 54, 116, 0.2);
        backdrop-filter: blur(8px);
    }

    .badge {
        display: inline-block;
        padding: 4px 12px;
        border-radius: 8px;
        font-size: 12px;
        font-weight: 700;
    }

    .modern-input {
        background: #F4F7FE;
        border: 1px solid transparent;
        transition: all 0.2s;
    }

    .modern-input:focus {
        background: white;
        border-color: #4318FF;
        box-shadow: 0 0 0 4px rgba(67, 24, 255, 0.1);
    }

    /* Table Styling */
    th {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: #A3AED0;
        font-weight: 700 !important;
    }


    /* Rotating Globe Background */
    .globe-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 0;
        pointer-events: none;
    }

    .globe {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 150vw;
        height: 150vw;
        max-width: 1000px;
        max-height: 1000px;
        border-radius: 50%;
        background:
            radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 20%),
            repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 0, rgba(255, 255, 255, 0.15) 2px, transparent 2px, transparent 20px),
            repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 0, rgba(255, 255, 255, 0.15) 2px, transparent 2px, transparent 20px);
        box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.3);
        animation: rotateGlobe 60s linear infinite;
        opacity: 0.6;
    }

    .globe::after {
        content: '';
        position: absolute;
        top: 10%;
        left: 10%;
        right: 10%;
        bottom: 10%;
        border: 3px dashed rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        animation: rotateGlobeReverse 40s linear infinite;
    }

    @keyframes rotateGlobe {
        0% {
            transform: translate(-50%, -50%) rotate(0deg);
        }

        100% {
            transform: translate(-50%, -50%) rotate(360deg);
        }
    }

    @keyframes rotateGlobeReverse {
        0% {
            transform: rotate(360deg);
        }

        100% {
            transform: rotate(0deg);
        }
    }