/* W33DEV Manager Panel - Custom Styles */

/* Base Styles */
body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

/* Tab System */
.tab-button {
    color: #9ca3af;
    border-color: transparent;
}

.tab-button.active {
    color: #a855f7;
    border-color: #a855f7;
}

.tab-button:hover {
    color: #c084fc;
}

/* Card Animations */
.project-card, .tool-card, .devlog-card, .plugin-card {
    transition: all 0.3s ease;
    border: 1px solid #374151;
}

.project-card:hover, .tool-card:hover, .devlog-card:hover, .plugin-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: #6b7280;
}

/* Glow Effects */
.glow-purple {
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
}

.glow-blue {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.glow-green {
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.glow-orange {
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
}

/* Status Badges */
.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-featured {
    background-color: #fbbf24;
    color: #92400e;
}

.status-active {
    background-color: #10b981;
    color: #065f46;
}

.status-development {
    background-color: #3b82f6;
    color: #1e40af;
}

.status-archived {
    background-color: #6b7280;
    color: #374151;
}

/* Tags */
.tag {
    display: inline-block;
    background-color: #374151;
    color: #d1d5db;
    padding: 0.25rem 0.5rem;
    margin: 0.125rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    transition: background-color 0.2s ease;
}

.tag:hover {
    background-color: #4b5563;
    cursor: pointer;
}

/* Image Placeholders */
.image-placeholder {
    background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1f2937;
}

::-webkit-scrollbar-thumb {
    background: #4b5563;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6b7280;
}

/* Loading Animation */
.loading-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .5;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .grid-cols-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    
    .flex-wrap {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-mobile {
        display: none;
    }
}

/* Dark Mode Enhancements */
.bg-card {
    background-color: #1f2937;
    border: 1px solid #374151;
}

.bg-card:hover {
    background-color: #374151;
}

/* Button Enhancements */
.btn-primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    transform: translateY(-1px);
}

.btn-secondary {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
    transform: translateY(-1px);
}

/* Card Content Styling */
.card-title {
    color: #f9fafb;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-description {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.card-meta {
    color: #9ca3af;
    font-size: 0.75rem;
}

/* Special Effects */
.holographic {
    background: linear-gradient(135deg, 
        rgba(168, 85, 247, 0.1) 0%, 
        rgba(59, 130, 246, 0.1) 25%, 
        rgba(34, 197, 94, 0.1) 50%, 
        rgba(249, 115, 22, 0.1) 75%, 
        rgba(239, 68, 68, 0.1) 100%);
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.neon-text {
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.3s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.bounce-in {
    animation: bounceIn 0.6s ease-out;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
