/* Content Dashboard Styles */
:root {
    --glass-bg: rgba(24, 24, 27, 0.6);
    --glass-border: rgba(255, 255, 255, 0.05);
    --accent-glow: rgba(217, 70, 239, 0.2);
    /* Fuchsia glow */
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(24, 24, 27, 0.8);
    border-color: rgba(217, 70, 239, 0.3);
    box-shadow: 0 0 20px var(--accent-glow);
}

.platform-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Loaders & Animations */
.loader {
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-top: 2px solid #d946ef;
    /* Fuchsia-500 */
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 1s linear infinite;
    display: inline-block;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Custom Form Elements */
.custom-input {
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid var(--glass-border) !important;
    color: white !important;
    transition: all 0.2s;
}

.custom-input:focus {
    border-color: #d946ef !important;
    box-shadow: 0 0 0 2px rgba(217, 70, 239, 0.1) !important;
    outline: none;
}

/* Button Gradients */
.btn-gradient {
    background: linear-gradient(135deg, #a21caf 0%, #d946ef 100%);
    box-shadow: 0 4px 15px rgba(217, 70, 239, 0.3);
    transition: all 0.2s;
}

.btn-gradient:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(217, 70, 239, 0.4);
}

.btn-gradient:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #3f3f46;
    box-shadow: none;
}

/* Phase 5: Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
}

.delay-100 {
    animation-delay: 100ms;
}

.delay-200 {
    animation-delay: 200ms;
}

.delay-300 {
    animation-delay: 300ms;
}