/* Custom styles for Arasaka Doc */

/* Base dark theme customization */
body {
    background-color: #111827;
    color: #e5e7eb;
    font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Custom scrollbar for dark theme */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #1f2937;
}

::-webkit-scrollbar-thumb {
    background: #374151;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4b5563;
}

/* Add glow effects to buttons */
.bg-blue-600, .bg-blue-700 {
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.3);
}

/* Custom card hover effect */
.bg-gray-700:hover {
    transform: translateY(-2px);
    transition: transform 0.2s ease-in-out;
}

/* Custom animation for alerts */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

[role="alert"] {
    animation: fadeIn 0.3s ease-in-out;
}

/* Particle animation */
@keyframes float {
    0% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-10px) translateX(5px); }
    100% { transform: translateY(0px) translateX(0px); }
}

.particle {
    position: absolute;
    opacity: 0.3;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.6), transparent);
    animation: float 8s ease-in-out infinite;
}

.particle:nth-child(2n) {
    animation-duration: 12s;
    animation-delay: 1s;
}

.particle:nth-child(3n) {
    animation-duration: 10s;
    animation-delay: 2s;
}

/* Footer styling */
footer {
    margin-top: 2rem;
    border-top: 1px solid #374151;
}

/* Form input focus effect */
input:focus, textarea:focus, select:focus {
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.5);
}

/* Add some space to icons in buttons */
button svg, a svg {
    margin-right: 0.25rem;
}

/* Line clamp utilities for description truncation */
.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Text shadow for headlines */
.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Title animation removed per user request */
/* Staggered animation for cards removed per user request */