/* Styles pour les pages d'erreur */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #ffffff;
}

.error-content {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.error-code {
    margin-bottom: 2rem;
    position: relative;
}

.error-code h1 {
    font-size: 8rem;
    margin: 0;
    line-height: 1;
    color: #ff4d4d;
    text-shadow: 0 0 20px rgba(255, 77, 77, 0.5);
}

.error-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.1);
    animation: pulse 2s infinite;
}

.error-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.error-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.error-actions .btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.error-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.error-suggestions,
.error-status,
.error-contact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.error-suggestions h3,
.error-status h3,
.error-contact p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.error-suggestions ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.error-suggestions li a {
    color: #4dabff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.error-suggestions li a:hover {
    color: #ffffff;
}

.server-status {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.status-indicator.online {
    background-color: #4CAF50;
    box-shadow: 0 0 10px #4CAF50;
}

.error-contact ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.error-contact li {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.error-contact a {
    color: #4dabff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.error-contact a:hover {
    color: #ffffff;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.2;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .error-code h1 {
        font-size: 6rem;
    }
    
    .error-animation {
        font-size: 3rem;
    }
    
    .error-content h2 {
        font-size: 2rem;
    }
    
    .error-actions {
        flex-direction: column;
    }
    
    .error-suggestions ul {
        flex-direction: column;
    }
} 