body {
    font-family: 'Inter', sans-serif;
    background-image: radial-gradient(circle at 50% 0%, rgba(13, 14, 17, 0.7) 0%, transparent 70%),
        radial-gradient(circle at 0% 100%, rgba(26, 28, 34, 0.5) 0%, transparent 60%);
    background-attachment: fixed;
}

[x-cloak] {
    display: none !important;
}

.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(16px);
    z-index: 50;
    max-width: calc(100% - 48px);
    width: 380px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-success {
    background-color: #0f172a;
    border-left: 4px solid #16a34a;
}

.toast-error {
    background-color: #0f172a;
    border-left: 4px solid #ef4444;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(26, 28, 34, 0.5);
    border-radius: 8px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(91, 100, 120, 0.5);
    border-radius: 8px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(115, 125, 150, 0.5);
}

.custom-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: rgba(91, 100, 120, 0.5) rgba(26, 28, 34, 0.5);
}

.text-gradient-primary {
    background: linear-gradient(135deg, #12bbeb 0%, #6be5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.text-gradient-accent {
    background: linear-gradient(135deg, #5160e5 0%, #8da0f5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.glass-card {
    background: rgba(26, 28, 34, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(60, 64, 76, 0.3);
}

::selection {
    background: rgba(93, 96, 229, 0.3);
    color: #ffffff;
}

.input-focus-effect {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input-focus-effect:focus {
    border-color: #5160e5;
    box-shadow: 0 0 0 1px rgba(81, 96, 229, 0.2), 0 0 0 4px rgba(81, 96, 229, 0.1);
}

.btn-effect {
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

.btn-effect:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-effect:hover:before {
    transform: translateX(100%);
}

.bento-card {
    border: 1px solid rgba(60, 64, 76, 0.25);
    background: rgba(26, 28, 34, 0.7);
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
}

.icon-glow:hover {
    filter: drop-shadow(0 0 4px rgba(93, 96, 229, 0.6));
}

@keyframes shimmer {
    0% {
        background-position: -468px 0
    }

    100% {
        background-position: 468px 0
    }
}

.shimmer {
    background: linear-gradient(to right, #1a1c22 8%, #2b2e37 18%, #1a1c22 33%);
    background-size: 800px 104px;
    animation: shimmer 1.5s infinite linear;
}