/* Error Page Styles for Tamburoteka */
.error-page-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f5f1 0%, #ede5d8 100%);
}

.error-content {
    display: flex;
    align-items: center;
    max-width: 800px;
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(134, 93, 54, 0.15);
    border: 1px solid rgba(172, 137, 104, 0.2);
}

.error-image-section {
    flex: 0 0 200px;
    text-align: center;
    position: relative;
    margin-right: 3rem;
}

.error-icon {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 16px;
    border: 3px solid #AC8968;
    box-shadow: 0 4px 12px rgba(134, 93, 54, 0.2);
}

.error-shake {
    animation: shake 0.8s ease-in-out infinite;
}

.error-musical-note {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #865D36;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    animation: bounce 2s infinite;
}

.error-text-section {
    flex: 1;
}

.error-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #865D36;
    margin-bottom: 0.5rem;
}

.error-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: #AC8968;
    margin-bottom: 1.5rem;
}

.error-description {
    font-size: 1.1rem;
    color: #5c4a3e;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.error-details {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f5f1;
    border-radius: 8px;
    border-left: 4px solid #AC8968;
}

.error-details summary {
    cursor: pointer;
    font-weight: 600;
    color: #865D36;
    margin-bottom: 0.5rem;
}

.error-message {
    font-family: monospace;
    color: #5c4a3e;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.error-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.error-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(134, 93, 54, 0.3);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
    20%, 40%, 60%, 80% { transform: translateX(2px); }
}

@media (max-width: 768px) {
    .error-content {
        flex-direction: column;
        padding: 2rem;
    }

    .error-image-section {
        margin-right: 0;
        margin-bottom: 2rem;
    }

    .error-title {
        font-size: 2rem;
    }

    .error-subtitle {
        font-size: 1.25rem;
    }

    .error-actions {
        justify-content: center;
    }
}