
/* --- Custom Animations and Effects Only (Tailwind handles layout, spacing, color, alignment) --- */

:root {
    --primary-glow: rgba(20, 184, 166, 0.3);
    --secondary-glow: rgba(168, 85, 247, 0.3);
    --accent-glow: rgba(34, 197, 94, 0.3);
}

/* Custom animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Apply animations to elements */
.stats {
    animation: slideInUp 0.8s ease-out;
}

.card {
    animation: fadeIn 1s ease-out;
}

.table tr {
    animation: slideInLeft 0.5s ease-out;
}

.table tr:nth-child(odd) {
    animation-delay: 0.1s;
}

.table tr:nth-child(even) {
    animation-delay: 0.2s;
}

/* Custom glow effects */
.glow-primary {
    box-shadow: 0 0 20px var(--primary-glow);
}

.glow-secondary {
    box-shadow: 0 0 20px var(--secondary-glow);
}

.glow-accent {
    box-shadow: 0 0 20px var(--accent-glow);
}

/* Hover effects */
.btn:hover {
    transform: translateY(-2px);
    transition: all 0.2s ease;
}

.avatar:hover {
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* Loading state */
.loading-skeleton {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .typing-animation {
        font-size: 1.5rem;
        animation: none !important;
        border-right: none !important;
        white-space: normal !important;
        overflow: visible !important;
    }
    .podium {
        flex-direction: column;
        align-items: center;
    }
    .table {
        font-size: 0.875rem;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: rgba(20, 184, 166, 0.6);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(20, 184, 166, 0.8);
}

/* Print styles */
@media print {
    .floating-particles,
    .btn,
    .dropdown,
    .pagination {
        display: none !important;
    }
    
    .cyber-grid {
        background: none !important;
    }
    
    .card,
    .stats {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
}
