.text-gradient {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-logout-minimal {
    color: var(--text-primary);
    opacity: 0.7;
    font-weight: 500;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-logout-minimal:hover {
    opacity: 1;
    color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.05);
    transform: translateY(-1px);
}

.btn-logout-minimal i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-logout-minimal:hover i {
    transform: translateX(3px);
}

.l-spacing-tight {
    letter-spacing: -0.03em;
}

.shadow-lg-primary {
    box-shadow: 0 10px 20px -5px rgba(79, 70, 229, 0.4);
}

.transition-transform:hover {
    transform: translateY(-2px);
}

.floating-device {
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.glow-effect {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--color-primary);
    filter: blur(100px);
    opacity: 0.1;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-20px);
    }

    100% {
        transform: translatey(0px);
    }
}

.min-vh-75 {
    min-height: 75vh;
}